Skip to content
AI Article

opencode proved the harness is worth more than the model

Anthropic spent 2026 locking third-party agents out of Claude subscriptions, and the most-starred open agent grew anyway.

Priya Nair
Priya Nair
AI & Developer Experience Writer · Sep 4, 2026 · 4 min read
opencode proved the harness is worth more than the model

Anthropic spent the first half of 2026 prying third-party coding agents off its subscription plans. On January 9, its servers started rejecting OAuth tokens from tools that weren't Claude Code. In February, it rewrote the consumer terms to make the policy explicit. On April 4, it cut Claude Pro and Max access for third-party agentic tools entirely.

The most prominent tool on the receiving end was opencode, and the block did not slow it down. The repo now sits just above 200,000 GitHub stars, the highest of any coding agent, open or closed. Its CEO spent the year talking about 20x growth over six months and millions of monthly users. Those usage numbers come from the company itself, so apply salt, but the star curve and contributor activity are public and they point the same direction.

My read: the lockout was the strongest endorsement opencode ever got. Anthropic doesn't build server-side checks to stop a tool nobody uses.

A fork with a grudge

opencode's origin story explains a lot about its design. The original project was a Go terminal agent built by Kujtim Hoxha in 2024. Dax Raad and collaborators from the SST team drove much of its interface work and early popularity. Then Charm, the terminal-UI company, hired Hoxha and pulled the repo into its org. The SST side objected to a community project landing inside a VC-backed company, the dispute went public and got ugly, and the projects split. Charm's continuation became Crush. The SST team kept the opencode name and rebuilt it from scratch in TypeScript.

In January 2026 the SST team rebranded as Anomaly, which is why the repo lives at anomalyco/opencode today. So the people running the most popular open agent have already fought one ownership battle over their tool. Model-agnosticism is the lesson they took from it.

The harness is the product

Strip the branding off any terminal coding agent and you find the same machine: a loop that assembles context, calls a model, executes tool calls under a permission policy, and feeds results back in. That loop, the harness, is where almost all the engineering lives. opencode's bet is that the harness and the model are separable, and that developers will pick each on its own merits.

The implementation backs the bet. It's a client/server system rather than a single binary, which is how one core drives the terminal UI, a desktop app in beta, and IDE extensions. It speaks to 75-plus providers through the Models.dev catalog, including local models over Ollama or any OpenAI-compatible endpoint, and you can switch models mid-session. Two built-in agents ship by default, a full-access build agent and a read-only plan agent, toggled with Tab. Project rules live in AGENTS.md, the same convention Claude Code and Codex now read, so a team can keep one rules file across tools. Provider config, MCP servers, and permissions go in opencode.json. All of it ships under MIT.

If you've used Claude Code, the day-one experience is close enough that the switch costs an afternoon, not a week. That's deliberate.

What Anthropic was actually defending

The block wasn't spite. Flat-rate subscriptions like Max are subsidized compute: heavy agent users burn far more in inference than they pay, and Anthropic wears the difference on the assumption that its own client is efficient about caching and context. Third-party harnesses were grabbing consumer OAuth tokens and spoofing Claude Code's headers to ride that subsidy, and by Anthropic's account they often bypassed the cache optimizations that make the subsidy survivable. Metered API keys still work fine with opencode. The subsidy was the thing being defended, and the subsidy is the real lock-in.

That's also the honest caveat for anyone planning a switch. If you hammer Claude models all day on a $100 or $200 Max plan, you're buying compute below list price, and replicating that workload through opencode with an Anthropic API key will usually cost more. opencode's own answer is Zen, a pay-as-you-go gateway with curated models and per-token pricing the company says carries no markup, plus a $10/month Go plan with usage caps. Cheaper entry, but nobody is subsidizing your marathon sessions anymore. You're trading a discount for independence, and you should price that trade honestly before you make it.

Who should move, and who shouldn't

The strong cases for opencode are concrete. Teams that can't ship code to a vendor they didn't choose get on-prem inference through local models. Shops that got burned in April get a harness no vendor can revoke. Cost-sensitive workflows get model mixing: a cheap model for mechanical refactors and test scaffolding, a frontier model for the parts that are actually hard. And anyone extending their agent gets a plugin API, an SDK, and source code instead of a black box.

The weak case is chasing feature parity for its own sake. Anthropic tunes Claude Code and Claude models together, and that co-tuning shows. A model-agnostic harness meets every model at arm's length, so opencode is rarely the absolute best client for any single frontier model, and with weaker open models you feel the gap in tool-calling reliability. Its plugin and skill catalog is also thinner than what has grown up around Claude Code. If you're happy on a Max plan and never hit the walls, staying put is defensible math.

But the direction of travel seems clear to me. Coding agents are commoditizing into interchangeable harnesses over metered models, the same way editors commoditized over LSP. Vendors whose margins depend on bundling will keep pulling levers like the April block, and every pull makes the unbundled option look better. opencode is what the unbundled option looks like when it's executed well: 200,000 stars, an MIT license, and no OAuth token anyone can revoke.

Sources & further reading

  1. anomalyco/opencode — github.com
  2. OpenCode: The Open Source Coding Agent That Doesn't Lock You In — dev.to
  3. opencode documentation — opencode.ai
  4. opencode Zen — opencode.ai
  5. Anthropic clarifies ban on third-party tool access to Claude — theregister.com
  6. Anthropic cracks down on unauthorized Claude usage by third-party harnesses — venturebeat.com
  7. opencode CEO: Getting Blocked, 20X Growth in 6 Months, Building the Open Harness — ycombinator.com
Priya Nair
Written by
Priya Nair · AI & Developer Experience Writer

Priya covers AI frameworks, developer productivity tooling, and the startup ecosystem across South and Southeast Asia, bringing a researcher's rigour and a practitioner's empathy to every story. She is deeply sceptical of benchmarks and asks hard questions so her readers don't have to.

Discussion 0

Join the discussion

Sign in or create an account to comment and vote.

No comments yet

Be the first to weigh in.

Related Reading