Kilo CLI — The Terminal-Based Agentic Coding Tool You Need in 2026
What is Kilo CLI? If you spend a significant portion of your day living in the terminal, Kilo CLI might be the most important tool you add to your workflow this year. It is an open-source, terminal-based agentic coding platform built on OpenCode (MIT-licensed), designed...
FastAPI + LLM
The previous post covered why FastAPI fits GenAI applications well in principle. This one is the practical follow-through: a closer, more complete look at actually wiring an LLM into a FastAPI application — from a single endpoint to a more realistic setup with conversation...
FastAPI for GenAI Applications
Once a generative AI script grows from a personal experiment into something other people or systems need to call, it needs an actual API — a defined, reliable interface other code can talk to. FastAPI has become one of the most popular choices for building that layer in...
Running LLMs Locally with llama.cpp
Understanding what llama.cpp is, as covered in the previous post, is one thing — actually getting a model running on your own machine is the practical next step. The process has gotten dramatically simpler over the past couple of years, to the point where running a genuinely...
What is llama.cpp?
Running a large language model has traditionally meant renting access to a data-center GPU, either through a cloud provider or an API. llama.cpp exists to challenge that assumption — a lightweight, highly optimized C/C++ inference engine that lets capable open-weight LLMs run...
AI Email Automation
Email remains one of the most universal, formal communication channels — and one of the most tedious to manage manually at any real volume. AI email automation applies the same core patterns covered throughout this series — prompt engineering, structured output, agentic tool...
AI WhatsApp Assistant
For a huge portion of the world, WhatsApp isn't a secondary communication channel — it's the primary one. Building an AI assistant on top of it means meeting users exactly where they already are, rather than asking them to adopt a new app or interface. That convenience comes...
Vercel Deployment for AI Applications
Building an AI-powered application is one thing; getting it in front of real users reliably is another. Vercel has become a popular deployment platform specifically for AI applications, largely because its serverless, edge-first architecture maps well onto how modern...
AI Social Media Automation
Consistent, high-quality social media presence is one of those tasks that's simple in concept and relentless in practice — a steady stream of captions, replies, and scheduling that never really stops. AI social media automation applies the agent and LLM patterns covered...
Lessons Learned While Learning AgentScope
Closing out this series' look at AgentScope, it's worth stepping back from the individual architectural pieces — messages, memory, tools, multi-agent coordination — and pulling together the broader lessons that tend to matter most when actually learning and applying the...
AgentScope for Production Agents
A research prototype and a production agent system have very different requirements. The prototype needs to demonstrate an idea works; production needs to keep working reliably, safely, and observably under real, unpredictable usage — echoing the reliability themes covered...
Building a Multi-Agent Application with AgentScope
Everything covered so far in this series' AgentScope posts — the unified message system, the ReAct-based agent abstraction, memory, tools, and model integration — comes together most concretely when building an actual multi-agent application. This post walks through what that...
AgentScope Agent Memory
An agent that forgets what it just tried is doomed to repeat its own mistakes. As covered in the general agent memory architecture post earlier in this series, managing what an agent remembers — and how much of it stays in active context — is one of the harder practical problems in …
AgentScope Model Integration
The best model for a given task today may not be the best choice in six months — pricing changes, new models launch, and capabilities shift. A framework that locks an agent's logic to one specific provider makes that evolution expensive to keep up with. AgentScope was built...
Playlist Curator MCP Server
Building My Playlist Curator MCP Server with YouTube Music & Claude AI When I first thought about music discovery, I was tired of switching tabs, searching manually, and letting algorithms decide what I wanted to hear. I wanted something simpler — just describe my mood and...
Single Agent vs Multi-Agent Architecture
Not every agentic task benefits from more agents. Adding coordination, communication overhead, and additional points of failure is a real cost — one that's only worth paying when a task genuinely benefits from specialization or parallel work that a single agent handles...
AgentScope Agent Communication
The moment a system has more than one agent, a new problem appears that single-agent design doesn't have to deal with: how do agents actually talk to each other, in a way that stays coherent, traceable, and debuggable? AgentScope addresses this by extending the same core...
What is AgentScope?
Among the growing field of frameworks for building AI agents — LangChain, CrewAI, AutoGen, and others — AgentScope has carved out a distinct identity around one core principle: transparency. Developed by Alibaba's research team, it's an open-source Python framework built...
Agent Memory Architecture
An agent working through a long, multi-step task needs to remember what it's already tried, what it's learned, and what still needs doing — but an LLM's context window, as covered in the tokens post earlier in this series, is finite. Agent memory architecture is the set of...
Building an AI CRM Agent
A sales or support team's CRM holds a huge amount of valuable, structured information — contacts, deal stages, communication history, ticket status — but keeping it accurate and acting on it consistently is a constant manual burden. An AI CRM agent applies the agent pattern...