Posts

Clawing Now to Speed Up Later

Image
OpenClaw OpenClaw  has captured people's imagination in a big way in the last few weeks. The ability to turn an idea into something concrete like an app has always been aspiration for a business user or a technology developer. OpenClaw simply removes the barriers for anyone to be able to build an app or an AI agent . Taking it for a spin My last post was a geeky take on using Gemini CLI as an Investment Advisor . That was perhaps best appreciated by a developer and not a non-tech person. I am taking the same use case from financial industry and turning it into a tool that anyone could use with OpenClaw. OpenClaw The Builder I built 2 skills for stock trading. The first one is an investment council which studies the market and serves as a stock screener. The second is a detailed stock analyzer.  Investment Council This is a skill that contains a series of python scripts to perform the above capabilities. In total, it is about 15,000 lines of python code, all written by AI. Key ...

Gemini CLI - Your Personal AI Investment Advisor

Image
Unlocking Financial Insights with Gemini CLI and MCP Servers The world of finance is complex, volatile, and often intimidating. From deciphering market trends to evaluating individual stocks, making informed investment decisions can feel like a full-time job. What if you could have a tireless, intelligent assistant by your side, sifting through data, analyzing performance, and even offering strategic insights? Good news: Google recently launched the  Gemini CLI  open source agent. There is a generous usage tier available for free - "60 model requests per minute and 1,000 requests per day at no charge". With the power of Google's Gemini CLI and a custom setup of Model Context Protocol (MCP) servers, that future is not only possible, it's within your reach right now. Forget expensive subscriptions or black-box algorithms – we're talking about building your own sophisticated AI investment advisor. The Brains Behind the Brawn: Gemini CLI Meets MCP At the heart of thi...

Vibe coding your way to Agentic AI

Image
If someone told me that “vibe coding” would be a thing someday, I would have laughed it away. But, here we are. Agentic AI is already starting to change the way we interact with AI. One can think of vibe coding as an “agentic” way of developing software. Let’s see how one can “vibe code” an Agentic AI application. Tools of the Trade No pun intended, here are the developer tools one could use. The Cloud Editor in Google Cloud Shell. This editor is similar in look and feel to VS Code. So, the application development can now happen entirely in the cloud, without installing anything on the laptop. Install the Roo Code extension  in the Cloud Shell Editor and configure it to use Gemini 2.0 Flash. You will have to create an API Key and set it up, as shown below. Lastly, we will use Google Agent Development Kit  (ADK) framework to create an agentic application. Once the Roo extension is installed, developer can use it in different modes such as - Architect, Code, Ask, Debug etc. Fo...