AI • Tech • Future
The State of AI Agents in 2025
Moving beyond simple chatbots to autonomous agents that plan, execute, and verify. A look at the architectures defining the next wave of AI.
From Chat to Action
The 'chat' paradigm is shifting. In 2024, we asked LLMs to write code. In 2025, we act agents to 'deploy this feature'. The difference is agency: the ability to break down a high-level goal into a graph of dependent tasks, execute them against real tools (terminal, browser, IDE), and self-correct when errors occur.
I'm currently experimenting with multi-agent systems where a 'Planner' agent delegates to a 'Coder' and a 'Reviewer'. The friction is no longer intelligence; it's context window management and the reliability of the tools we give them.
The Tool Usage Protocol
Standardizing how agents interface with software is critical. The 'Model Context Protocol' (MCP) is emerging as a strong contender, allowing any developer to expose their API as a tool for an LLM without writing custom glue code. It's effectively 'Swagger for AI'.
Challenges: Infinite Loops & Cost
Agents can get stuck in reasoning loops. 'Heuristics-based termination' is a fancy way of saying we need kill-switches. I implement strict budget caps (both financial and token-based) on every autonomous rum run.
Latest articles
View blog
Feb 10, 2025
React Compiler: Goodbye useMemo?
React 19's optimizing compiler promises to automate memoization. I tested it on a large codebase to see if manual optimization is truly dead.

Feb 5, 2025
Next.js Middleware Mastery
Advanced patterns for using Edge Middleware to handle authentication, geolocation, and AB testing before the request hits your layout.

Feb 1, 2025
Expo Router: The Future of Mobile Navigation
Bringing file-system routing to React Native. How Expo Router v3 unifies the development model for web and mobile.