Blog
What's New in Go Micro: v6.6.0
Saturday, July 11, 2026 in Releases
Go Micro v6.6.0 is a harness reliability release. The theme is the same services → agents → workflows lifecycle, but with more of the first-agent path covered by local checks and more recovery paths made deterministic when agents resume, retry, …
What's New in Go Micro: v6.3.15
Sunday, July 05, 2026 in Releases
Go Micro v6.3.15 is a small but useful harness release: less friction for the first agent, better streaming provider coverage, and more reliable execution when models and delegates do not behave perfectly. Anthropic now streams The Anthropic provider …
The Loop, Shipped: Introducing micro loop
Thursday, July 02, 2026 in News
A few weeks ago we wrote How Go Micro Builds Itself: a loop of two AI agents — Codex writing scoped increments, Claude Code orchestrating and reviewing, a human setting direction — kept honest by CI. It was our own thesis, an agent operating a …
An Agent Is a Service: Where Agent Frameworks Are Going
Tuesday, June 30, 2026 in News
There are now a lot of ways to build an agent. LangChain and LangGraph, LlamaIndex, CrewAI, Microsoft’s AutoGen, Google’s ADK, the model labs’ own SDKs, and — most recently in our own backyard — tRPC-Agent-Go from Tencent. They are …
How Go Micro Builds Itself
Thursday, June 25, 2026 in News
Go Micro is an agent harness. The most honest test of that claim is to use agents to build it — so increasingly, we do. A scheduled loop of two AI agents now opens issues, writes increments, and merges its own pull requests against this repo, on a …
Go Micro is an Agent Harness
Wednesday, June 24, 2026 in News
The first wave of agent frameworks solved one problem: put a model in a loop with some tools. That’s the easy part now. The harder problem — the one that decides whether an agent makes it past a demo — is operating that loop. Operating a loop …
Go Micro Joins OpenAI's Codex for Open Source
Tuesday, June 23, 2026 in News
Go Micro has been accepted into OpenAI’s Codex for Open Source program. OpenAI is covering six months of ChatGPT Pro — and with it, access to Codex — to support the day-to-day work of maintaining the project. What the grant is Codex for Open …
Building a Support Agent in Go
Friday, June 19, 2026 in News
Most agent demos are a chat box wired to one tool. Real systems aren’t that — they’re a handful of services, an agent that operates them, something that triggers the agent without a human typing, and a gate on the actions you don’t …
Bringing an Open Source Project Back from the Dead
Thursday, June 18, 2026 in News
I open sourced Go Micro in January 2015. Eleven years later we just tagged v6. What a crazy and surreal experience that is. the project was basically dead or sitting stale for quite some time after VC funding dried up, I shutdown the business and …
Agents Across Frameworks: A2A
Thursday, June 18, 2026 in News
Inside a Go Micro system, agents already talk to each other. An agent is a service with an Agent.Chat endpoint, so delegate just calls another agent over RPC. That works as long as everyone is on Go Micro. The moment an agent is built on a different …