News

Posts in 2026
  • 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 …

    Read more

  • 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 …

    Read more

  • 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 …

    Read more

  • 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 …

    Read more

  • 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 …

    Read more

  • 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 …

    Read more

  • 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 …

    Read more

  • 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 …

    Read more

  • Durable Workflows

    Wednesday, June 17, 2026 in News

    A workflow that calls real services is rarely instant and rarely side-effect-free. It reserves inventory at step one, charges a card at step two, sends a confirmation at step three. Each of those changes the world. So when the process dies between …

    Read more

  • Go Micro is Becoming a Framework for Agentic Development

    Wednesday, June 17, 2026 in News

    When Anthropic began sponsoring Go Micro, we committed to building in the open and reporting progress as it happened. It has been three months. Each post so far covered one change; this one is about what they add up to. Go Micro is becoming a …

    Read more