I learned agentic AI concepts in Python - agent loops, tool calling, multi-agent coordination, production patterns. I even built my own Python assistant - MiuBot - with 10 chat channels, Temporal workflows, and multi-tenant workspaces. Python works well for most of these cases. But while building MiuBot, I kept hitting the same question: what happens when you need to serve many users concurrently over WebSocket with streaming responses? That’s when I discovered GoClaw from the NextLevelBuilder team, and it changed how I think about the problem.
Building MiuBot - A Personal AI Assistant From Nanobot to Production
After months of studying agentic AI patterns in theory - agent loops, tool calling, multi-agent coordination - I wanted to build something real. Not another tutorial project, but an AI assistant I could actually use daily, connected to the chat platforms I already live on. That’s how MiuBot started - forked from Nanobot, then reshaped into something quite different.
Applied Agentic AI in Finance: A Complete Guide
This post brings together everything we’ve learned about applying agentic AI to financial services. From role-based prompting through multi-agent coordination, we’ve covered the complete spectrum of techniques for building intelligent financial systems. Here’s the comprehensive overview with production patterns.
Coordinated Trading Systems
When multiple agents operate simultaneously on trading operations, they must share a consistent understanding of the world state. This post explores the coordination patterns that make multi-agent trading systems reliable: persistent state management, conflict resolution, and multi-agent RAG for comprehensive analysis.
Multi-Agent Architecture for Trading
When building an AI hedge fund, the most critical element is understanding the flow of agent-to-agent communication. Does one agent need to work after another? Can agents work in parallel? What is the specific purpose of each agent? Multi-agent architecture answers these questions by defining specialized agents, shared state communication, orchestration patterns, and routing strategies that together create reliable, intelligent trading systems.
Summary: Google's Introduction to Agents
As part of our journey exploring agentic AI systems, Google’s November 2025 whitepaper “Introduction to Agents” offers valuable industry perspective on production-grade agent architecture. This post summarizes the key concepts: core architecture, Agent Ops, security patterns, and self-evolving systems. It complements what we’ve covered in our Agentic AI series.
Source: Introduction to Agents (PDF) by Google
Orchestrating Financial Operations
When financial workflows become too complex for simple parallel processing or chaining, the orchestrator-worker pattern provides dynamic coordination. Unlike fixed workflows, an orchestrator analyzes problems at runtime, breaks them into subtasks, and delegates work to specialized agents. This is the pattern that ties together everything we’ve learned - bringing intelligent coordination to financial operations.
Modeling Agentic Workflows for Finance
Moving from individual prompts to production systems requires thinking architecturally. Financial workflows aren’t just chains of prompts - they’re coordinated systems where multiple specialized agents work together. Understanding how to model these workflows is essential for building reliable, maintainable financial AI systems.