opencode (SST)

RawGraph

Last reviewed

Sources

30 citations

Review status

Source-backed

Revision

v3 · 4,498 words

opencode is an open-source AI coding agent built for the terminal. Developed by Anomaly Innovations, formerly known as the SST (Serverless Stack) team, it provides a terminal user interface (TUI) through which developers can interact with large language models to read, write, and edit code, run shell commands, and navigate complex codebases.[1] Released in June 2025, opencode reached 150,000 GitHub stars and 6.5 million monthly active developers by mid-2026, making it one of the fastest-growing open-source developer tools in recent memory.[18] The project is licensed under the MIT License and is hosted at github.com/sst/opencode.[2]

Background

SST and Anomaly Innovations

The team behind opencode traces its roots to SST (Serverless Stack), an open-source framework for building full-stack applications on AWS serverless infrastructure.[16] Jay V (CEO) and Frank Wang (CTO) met during their first week at the University of Waterloo in Canada and co-founded their first company together, Anomaly Innovations, carrying the same executive division across all their ventures.[16] Jay and Frank put SST through Y Combinator in 2021 and secured $1 million post-demo day from prominent Silicon Valley investors including founders of PayPal, LinkedIn, Yelp, and YouTube.[16] SST grew to 25,000 GitHub stars and turned profitable by 2025.[16]

Dax Raad, a software engineer known for his work in serverless infrastructure, became an early SST user in 2021 and eventually joined as a co-founder.[17] Adam Elmore, another engineer on the team, rounded out the small founding group. Together, this team later pivoted its attention toward AI-native developer tooling, which led to the creation of opencode.

The company operates under the name Anomaly (anomalyco on GitHub), which consolidates its portfolio of open-source projects including SST, OpenNext (Next.js on AWS), OpenAuth, OpenTUI, and opencode.[30] The founder Jay V has stated the team's long-standing conviction that developers care deeply about tooling they can trust, modify, and truly own, a philosophy that shaped opencode's design from the beginning.[16]

Launch and Early Growth

opencode launched publicly on June 19, 2025.[16] Unlike most AI coding tools that debuted as proprietary products, opencode required no account, no email address, and no credit card. Users could download and run it immediately using their own API keys from any supported model provider.[1]

The project gained substantial momentum in late 2025 and early 2026. A two-week surge in January 2026 brought 18,000 new GitHub stars, driven partly by community frustration over access restrictions from proprietary coding agents.[19] By April 2026, the repository held 147,000 stars and served 6.5 million monthly developers, a growth rate approximately 4.5 times faster than Claude Code over the same period.[18] Enterprise adoption followed, with companies including Cloudflare among early customers.[16] Within five months of launch the project was generating several million dollars in annualized revenue through its hosted model service, OpenCode Zen.[16]

Architecture

Client-Server Design

opencode uses a client-server architecture in which the core agent logic runs as a local server process while user interfaces connect to it as clients.[3] The primary client is the TUI, but the same server can be driven from a desktop application (in beta), IDE extensions, GitHub Actions runners, or GitLab CI pipelines. This architecture means the terminal interface is one of several possible frontends rather than an inseparable part of the system, enabling headless automation and future remote-control scenarios.

The repository is primarily TypeScript, with the CLI entrypoint bootstrapping the server and connecting to the TUI.[2] The interface layer was originally built on the Bubble Tea framework for Go, following the Elm architecture (model-update-view cycle).[29] As the project matured the team developed OpenTUI, an in-house TypeScript-based TUI framework with Zig bindings for efficient rendering, which replaced the earlier Bubble Tea implementation in version 1.0.[30] OpenTUI supports React, SolidJS, and Vue component patterns and is used by the opencode interface.

Terminal User Interface

The TUI provides a rich interactive environment in the terminal. The main layout shows a conversation pane alongside a file-tree or diff panel, allowing developers to read AI responses and see code changes side by side.[13] Key interaction patterns include:

  • Typing messages and receiving streaming responses
  • Using the @ symbol to reference specific files in the conversation context
  • Toggling between Plan mode (read-only, analysis and exploration) and Build mode (full execution with file edits and shell commands)
  • Running slash commands such as /init, /theme, /undo, /redo, /share, and /connect
  • Configuring keybindings through tui.json, with Ctrl+X as the default leader key for multi-key shortcuts

Theme selection is handled via the /theme slash command or the tui.json configuration file, which supports a flexible JSON-based theme system. Users can choose built-in themes or define a custom theme by providing color definitions in a customTheme map.[14]

The project maintains separate configuration files for the server layer (opencode.json) and the TUI layer (tui.json), stored by default under ~/.config/opencode/.[13]

Tool System

opencode exposes a set of built-in tools that the LLM can invoke during a session.[6] These tools form the agent's hands: they allow the model to read and write files, execute shell commands, search the codebase, and retrieve information from the web. Each tool can be configured with a permission mode of allow (runs without confirmation), ask (requires user approval), or deny (blocked entirely). Permissions are set in opencode.json under the permission key and support wildcard patterns.[6]

The core built-in tools are:

ToolFunction
bashExecutes shell commands in the project environment
editModifies existing files via exact string replacement
writeCreates new files or overwrites existing ones
readReads file contents with optional line range support
grepSearches file contents with regular expressions (uses ripgrep, respects .gitignore)
globFinds files by pattern matching (e.g., **/*.ts)
lspCode intelligence including definitions, references, and hover info (experimental)
apply_patchApplies patch files to the codebase
skillLoads a SKILL.md file for agent specialization
todowriteManages todo lists during long coding sessions
webfetchRetrieves and reads web pages
websearchWeb search via Exa AI (requires OPENCODE_ENABLE_EXA=1)
questionAsks the user a clarifying question during execution

LSP Integration

opencode integrates with Language Server Protocol (LSP) servers to enhance the LLM's understanding of code.[7] When LSP is enabled and the agent opens a file, opencode checks the file extension against configured LSP servers and starts the appropriate server if it is not already running. The agent then receives language-server diagnostics (errors, warnings, type information) which are fed back into the model's context.

LSP is configured in the lsp field of opencode.json. Setting "lsp": true enables all 25+ built-in servers with automatic installation for popular language servers.[7] Individual servers can be configured with custom commands, environment variables, or disabled selectively. Supported languages out of the box include Python, Rust, JavaScript, TypeScript, Go, PHP, and many others.[7]

Example configuration enabling Go and TypeScript LSP:

{
  "lsp": {
    "go": {
      "command": ["gopls"]
    },
    "typescript": {
      "command": ["typescript-language-server", "--stdio"]
    }
  }
}

Multi-LLM Support and models.dev

A defining design choice for opencode is provider agnosticism. The tool does not lock users into any single AI provider. Support for more than 75 LLM providers is achieved through integration with the Vercel AI SDK and models.dev, a public database of AI models maintained by the Anomaly team.[5]

models.dev

models.dev functions as an open catalog of AI models from dozens of providers.[15] opencode's provider system fetches model definitions from the models.dev API (https://models.dev/api.json) and caches them locally.[15] This means new models from supported providers often become available in opencode without requiring a software update. The ModelsDev namespace in the codebase handles fetching, caching, and exposing these definitions to the rest of the system.

Supported Providers

The most popular providers are preloaded in opencode. Additional providers can be added using the /connect slash command at runtime.[5] Major supported providers include:

  • Anthropic (Claude Opus, Sonnet, Haiku families)
  • OpenAI (GPT-5 family and earlier)
  • Google (Gemini family)
  • Amazon Bedrock
  • Azure OpenAI
  • Groq
  • OpenRouter
  • GitHub Copilot (available to Copilot subscribers since January 2026)
  • ChatGPT Plus/Pro account access
  • Local models via Ollama
  • LLM Gateway (210+ models from 60+ providers)
  • SAP AI Core
  • Vercel AI Gateway

Models from Chinese providers such as Qwen, Kimi, GLM, and MiniMax are also available through the OpenCode Zen service.[10]

Model Configuration

The active model is set in opencode.json using the format provider_id/model_id:[5]

{
  "model": "anthropic/claude-sonnet-4-5"
}

A small_model key selects a lighter model for auxiliary tasks such as title generation.[5] Provider-specific options such as reasoning effort (for OpenAI models), thinking budgets (for Anthropic extended thinking), and Bedrock region configuration are set under the provider key. opencode also supports custom variants, allowing users to override model defaults without duplicating entire model definitions.

Model selection priority at startup: command-line --model flag > config file model value > last used model > first model by internal priority.[5]

Local Model Support

For environments with strict data governance requirements opencode supports fully local execution. Using Ollama or LM Studio to host an open-weight model, users can run opencode without any network calls to cloud services.[5] Ollama exposes an OpenAI-compatible API that opencode consumes as a standard provider. This capability is marketed as Air-gapped Mode and targets developers in regulated industries such as defense, healthcare, and financial services.

Custom Agents

Built-in Agents

opencode ships with four standard agents:[4]

  • Build: The default primary agent with all tools enabled for full development work
  • Plan: A primary agent with file edits and bash commands set to ask by default, intended for read-only analysis and planning
  • General: A subagent with full tool access for multi-step tasks and parallel work delegation
  • Explore: A read-only subagent for codebase exploration without modification risk

Three additional system agents run automatically in the background: Compaction (manages context window pruning), Title (generates conversation titles), and Summary (creates session summaries).[4]

Custom Agent Definitions

opencode supports user-defined agents written as Markdown files with YAML frontmatter.[4] Project-specific agents are placed in .opencode/agents/ inside the repository; global agents are stored in ~/.config/opencode/agents/. The filename without extension becomes the agent identifier.

A custom agent file consists of a frontmatter block followed by the system prompt:

---
description: A specialized agent for reviewing API contracts
mode: primary
model: anthropic/claude-opus-4-5
temperature: 0.3
permission:
  bash: deny
  edit: ask
---
You are a specialist in API design. Review each endpoint for...

Frontmatter fields include:[4]

  • description (required): Explains what the agent does, shown in autocomplete menus
  • mode: primary, subagent, or all
  • model: Optional model override for this agent
  • temperature: Controls response randomness (0.0 to 1.0)
  • permission: Granular access control for individual tools
  • steps: Maximum agentic iterations before falling back to text-only responses
  • hidden: When set to true, hides subagents from autocomplete menus

Agents can also be defined in opencode.json using a structured JSON format with the same properties. Custom agents integrate fully with the tool system, meaning they can use any combination of built-in tools subject to the permission constraints defined in their configuration.

Rules and Context

AGENTS.md

opencode uses a file named AGENTS.md as its primary mechanism for injecting persistent instructions into the model context.[8] Placing an AGENTS.md in the project root creates project-specific rules that apply whenever opencode runs in that directory or its subdirectories. A global ~/.config/opencode/AGENTS.md applies across all sessions on the machine and is appropriate for personal workflow preferences.[8]

The /init slash command analyzes the repository and creates or updates AGENTS.md with project-specific guidance.[8] It captures build, lint, and test commands; repository architecture and conventions; and any setup details the codebase itself does not make obvious. The command may ask targeted questions when automated analysis is insufficient.

Best practice is to commit the project AGENTS.md to version control so that all team members and CI runners benefit from consistent instructions.

opencode also supports CLAUDE.md as a fallback for compatibility with Claude Code conventions. If no AGENTS.md exists, opencode will read CLAUDE.md at the project root and ~/.claude/CLAUDE.md globally. This compatibility can be disabled with the OPENCODE_DISABLE_CLAUDE_CODE=1 environment variable.[8]

The instructions field in opencode.json extends rules loading to external files and glob patterns:[8]

{
  "instructions": ["docs/guidelines.md", "packages/*/AGENTS.md"]
}

Remote URLs are also supported with a five-second timeout.

Configuration System

opencode.json uses JSON or JSONC (JSON with Comments) format with schema validation.[9] Configurations are layered and merged from multiple sources in the following order of precedence:[9]

  1. Remote config from .well-known/opencode
  2. Global config at ~/.config/opencode/opencode.json
  3. Custom path via OPENCODE_CONFIG environment variable
  4. Project config at opencode.json
  5. .opencode directories
  6. Inline config via OPENCODE_CONFIG_CONTENT
  7. Managed files (system-level)
  8. macOS MDM managed preferences

Variable substitution within configuration values is supported via {env:VARIABLE_NAME} for environment variables and {file:path/to/file} for file content injection.[9] The configuration schema is published at https://opencode.ai/config.json and supports IDE autocompletion.[9]

Key top-level configuration sections include model, small_model, provider, lsp, mcp, plugin, agent, tools, permission, instructions, formatter, shell, server, share, snapshot, and autoupdate.[9]

MCP and Plugins

Model Context Protocol

opencode supports the Model Context Protocol (MCP), a standardized interface developed by Anthropic and donated to the Linux Foundation in December 2025 for connecting AI agents to external tools and services. MCP servers are configured in the mcp section of opencode.json. Both local (stdio-based) and remote (HTTP-based) MCP servers are supported.[9]

The MCP ecosystem available to opencode users includes over 1,200 servers. Common integrations include Sentry for error monitoring, Context7 for documentation search, and Vercel's Grep server for searching open-source GitHub repositories. MCP tools become available to the LLM alongside built-in tools and can be granted per-tool permission settings using wildcard patterns (e.g., "sentry_*": "ask").

Plugins

Plugins extend opencode with custom tools, hooks, and integrations. They can be placed in .opencode/plugins/ (project-specific) or ~/.config/opencode/plugins/ (global), or loaded from npm through the plugin configuration key. Plugins can bundle their own MCP servers, reducing manual configuration overhead.

CI/CD and GitHub Integration

opencode integrates with GitHub and GitLab, allowing developers to trigger the agent directly from pull request and issue comments.

GitHub

Mentioning /opencode or /oc in a comment on a GitHub issue or pull request causes the configured GitHub Actions workflow to execute the task.[11] The workflow runs on the repository's Actions runners, meaning the agent operates with the repository's own compute and credentials. Setup is handled through the opencode github install command, which installs the necessary workflow YAML file and GitHub App.[11] Required API keys are stored as repository secrets.

GitLab

The GitLab integration works analogously: mentioning @opencode in a GitLab comment triggers execution in the GitLab CI pipeline.[12] A community-maintained CI component (nagyv/gitlab-opencode) provides minimal setup for common use cases. opencode also supports GitLab Duo as a backend.[12]

OpenCode Zen

OpenCode Zen is a managed AI model gateway operated by the Anomaly team.[10] Rather than requiring users to maintain API keys across multiple providers, Zen provides a curated selection of more than 40 verified models through a single billing relationship.[10] Models are tested and vetted by the opencode team before inclusion.

The service operates on a pay-as-you-go basis with pricing at or near provider list prices, plus a processing fee of 4.4% plus $0.30.[10] Automatic account reload triggers when the balance falls below $5, replenishing by $20 by default. A hybrid approach allows users to bring their own OpenAI or Anthropic API keys while using Zen for access to other providers, particularly Chinese frontier models not otherwise easily accessible.

A lower-cost subscription tier, OpenCode Go, priced at $10 per month, provides access to open-weight models such as GLM, Kimi, and MiniMax variants with defined usage limits. A premium tier, OpenCode Black, offered at $200 per month and initially sold out on launch, provides access to frontier models from both OpenAI and Anthropic plus open-weight options.

Zen constitutes the project's primary revenue stream, generating several million dollars in annualized revenue within five months of the product's launch.[16]

Comparison with Other AI Coding Agents

opencode occupies the same category as Claude Code, Aider, Cline, Codex (OpenAI), and Gemini CLI. The following table summarizes key differences as of mid-2026:

FeatureopencodeClaude CodeAiderCline
LicenseMIT (open source)ProprietaryApache 2.0 (open source)MIT (open source)
Primary interfaceTerminal TUI + desktop appTerminalTerminal / CLIVS Code extension
Model support75+ providersAnthropic only75+ providers75+ providers
LSP integrationYes (25+ built-in servers)LimitedNoVia VS Code
Git workflowManualAutomatic commits optionalGit-first, auto-commitsManual
Local model supportYes (Ollama, LM Studio)NoYesYes
Custom agentsYes (Markdown + JSON)Yes (Claude.md hooks)LimitedLimited
MCP supportYesYesLimitedYes
CI/CD integrationGitHub Actions, GitLab CILimitedLimitedNo
Base costFree (API costs apply)Requires $20/month planFree (API costs apply)Free (API costs apply)
Stars (mid-2026)~150,000~33,000~39,000~75,000

vs. Claude Code

Claude Code is Anthropic's official terminal coding agent and opencode's most frequently cited point of comparison.[21] Claude Code achieves top benchmark scores on SWE-Bench Verified with Claude Opus 4.6, benefits from deep integration with Anthropic's model infrastructure, and is broadly regarded as more polished with superior automatic context compaction and planning behavior.[26] However, it is locked to Anthropic's model ecosystem, requires a paid subscription, and transmits all code to Anthropic's servers.[28]

opencode offers comparable agentic capability with greater flexibility: users can freely switch models, run entirely locally, and inspect every line of the agent's behavior.[28] The trade-off is that opencode requires more configuration and occasionally needs more user oversight on complex multi-file tasks. Critics have observed that Claude Code still handles edge cases more gracefully and plans more cleanly on the most difficult tasks.[21]

vs. Aider

Aider is a mature Python-based CLI tool that has been developed since 2023 and logged 4.1 million installations.[22] Its defining characteristic is a git-first philosophy: every AI edit becomes a labeled git commit that can be reviewed, reverted, or cherry-picked.[22] Aider maps entire repositories to understand structure and excels at systematic refactoring across many files. It has more than 100 language maps and is considered extremely reliable, though its terminal interface is minimal compared to opencode's TUI.[22]

opencode offers LSP-powered type-aware edits, a richer interactive experience, parallel multi-session agent support, and session sharing.[27] Aider lacks LSP integration and native parallelism. Many developers in 2026 use both tools for different workflows, with Aider preferred for systematic refactoring and opencode preferred for interactive development.[27]

vs. Cline

Cline is a VS Code extension that brings AI coding agent functionality into the IDE. It is stable in controlled workflows, particularly with its structured approval system. opencode operates outside the IDE, which means it integrates into any terminal workflow regardless of editor, but users who prefer to stay within VS Code often find Cline more convenient. Cline does not offer the same degree of model agnosticism or CI/CD pipeline integration.

vs. Codex and Gemini CLI

Codex (OpenAI) and Gemini CLI are provider-specific tools from OpenAI and Google respectively. Both lock users into their respective model ecosystems. Notably, following the Anthropic-opencode dispute in early 2026 (described below), OpenAI officially partnered with opencode to allow Codex and ChatGPT subscribers to use their subscriptions inside opencode.[23]

Use Cases

opencode is used across a wide range of software development scenarios:

Interactive development: Developers keep a terminal split open with opencode running alongside their editor. They describe changes in natural language, review diffs, and apply or reject edits. The Plan/Build mode toggle allows safe exploration before committing to changes.

Codebase exploration: The Explore subagent and Plan mode allow asking questions about unfamiliar codebases without risk of modification. LSP integration provides accurate symbol resolution and type information.

Automated pull request review: GitHub and GitLab integrations allow teams to trigger opencode on every PR. The agent reviews code quality, identifies potential bugs, and posts a structured report as a comment.

Regulated environments: Air-gapped mode with Ollama allows teams in defense, healthcare, and financial services to use AI coding assistance without transmitting source code off-premises.

Cost optimization: Teams use opencode to mix expensive frontier models for complex tasks with cheaper or free models for routine work such as test generation, documentation, and boilerplate. The small_model configuration key directs lightweight tasks to cheaper alternatives automatically.

Parallel agent workflows: The multi-session architecture supports running several opencode instances simultaneously on different parts of a large codebase, with results reviewed and merged manually.

Reception

Community Praise

opencode's launch attracted immediate attention from developers frustrated with proprietary AI coding tools. The zero-friction onboarding (no account required) and model agnosticism were widely cited as differentiators.[20] The TUI was praised as genuinely well-designed, with reviewers describing the interface as clean and responsive. The team's open-source credentials from SST gave early adopters confidence in the project's long-term commitment to openness.

The project was covered on Hacker News, where discussions noted both its potential as a serious Claude Code alternative and its rapid feature development.[20] On Product Hunt the tool received consistently positive reviews, particularly from developers who valued the ability to bring their own models. The growth from launch to 150,000 GitHub stars over approximately eleven months was noted as exceptional even by the standards of the 2025-2026 AI tooling boom.[18]

Enterprise adoption provided additional validation: Cloudflare's use of opencode for internal development was publicly noted.[16]

Criticism and Concerns

opencode has not been without criticism. The most persistent technical complaint on Hacker News and developer forums concerned release velocity and quality: the team shipped updates at a pace that sometimes outran testing, leading to regressions and instability.[20] The application was noted to consume significant system resources, with RAM usage reported at 1 GB or more for a terminal interface, drawing unfavorable comparisons to leaner alternatives.

Security researchers flagged several issues in early releases, including configuration pulled from remote URLs by default and potential for remote code execution in authentication flows. One significant controversy involved early versions of opencode using hidden cloud model calls (reportedly using an xAI model) for session title generation even when users configured fully local models, violating user expectations about data residency.

The OpenCode Go subscription tier received negative feedback from subscribers who found the combination of aggressively quantized models and strict rate limits to be poor value, with user complaints achieving a 94% upvote ratio on public forums.

The Anthropic Dispute

In January 2026, Anthropic deployed server-side restrictions preventing third-party tools from using Claude Pro and Max OAuth tokens.[23] Early versions of opencode had been spoofing the claude-code-20250219 beta HTTP header, causing Anthropic's servers to treat requests as originating from the official Claude Code CLI.[25] When Anthropic activated checks on January 9, 2026, users of opencode who relied on their Claude subscription for access received errors.[25]

On February 19, 2026, Anthropic formalized the restriction in updated service terms, explicitly prohibiting OAuth token use with third-party tools or the Agent SDK.[24] A subsequent legal communication caused the opencode team to remove all Claude OAuth code, the spoofed header, and Anthropic-specific authentication on February 19, followed by a final cleanup commit in March 2026.[24]

The incident generated substantial developer backlash directed at Anthropic.[23] DHH (David Heinemeier Hansson, creator of Ruby on Rails) posted publicly that the policy was objectionable for a company whose models were trained on open-source code.[24] OpenAI responded by formally partnering with opencode to allow Codex and ChatGPT subscribers to use their subscriptions natively within opencode, a move widely interpreted as a competitive signal.[23]

The dispute crystallized a broader industry debate about the boundary between AI providers' commercial interests and the open-source developer ecosystem that sustains their model training data.

Limitations

opencode has documented limitations that users should consider:

  • Windows support: Windows support remains rough in comparison to macOS and Linux. Installation works through Scoop and Chocolatey, but users report more frequent bugs and missing functionality.
  • Resource consumption: The application uses significantly more memory than comparable CLI tools, with reports of 1 GB or more in active sessions.
  • Context and compaction: Automatic context management, while improving, does not match the polish of Claude Code's built-in compaction system on very long or complex sessions.
  • Large codebase navigation: On very large monorepos, codebase understanding degrades without careful AGENTS.md guidance and LSP tuning.
  • Local model quality: The quality of local model suggestions through Ollama varies significantly with hardware and model selection. The gap relative to hosted frontier models is substantial for complex reasoning tasks.
  • Model availability drift: Because models are pulled from models.dev dynamically, model deprecations by providers can affect users unexpectedly between opencode releases.
  • Setup complexity: While the zero-friction onboarding applies to trying the tool, serious use requires configuring API keys, LSP servers, AGENTS.md, and permissions, which takes meaningful time compared to Claude Code's near-instant setup.

See Also

References

  1. opencode official website. https://opencode.ai/
  2. opencode GitHub repository (sst/opencode). https://github.com/sst/opencode
  3. opencode documentation. https://opencode.ai/docs/
  4. opencode agents documentation. https://opencode.ai/docs/agents/
  5. opencode models documentation. https://opencode.ai/docs/models/
  6. opencode tools documentation. https://opencode.ai/docs/tools/
  7. opencode LSP documentation. https://opencode.ai/docs/lsp/
  8. opencode rules documentation. https://opencode.ai/docs/rules/
  9. opencode config documentation. https://opencode.ai/docs/config/
  10. opencode Zen documentation. https://opencode.ai/docs/zen/
  11. opencode GitHub integration. https://opencode.ai/docs/github/
  12. opencode GitLab integration. https://opencode.ai/docs/gitlab/
  13. opencode TUI documentation. https://opencode.ai/docs/tui/
  14. opencode themes documentation. https://opencode.ai/docs/themes/
  15. models.dev. https://models.dev/
  16. TechFundingNews. "OpenCode: The background story on the most popular open source coding agent in the world." https://techfundingnews.com/opencode-the-background-story-on-the-most-popular-open-source-coding-agent-in-the-world/
  17. Baseten Blog. "Building AI agents, open code, and open source: A conversation with Dax." https://www.baseten.co/blog/building-ai-agents-open-code-and-open-source-a-conversation-with-dax/
  18. Medium (AI @ Sulat.com). "How OpenCode went from zero to titan in eight months." https://ai.sulat.com/how-opencode-went-from-zero-to-titan-in-eight-months-dcdcd8ff5572
  19. Medium. "OpenCode's January surge: What sparked 18,000 new GitHub stars in two weeks." https://medium.com/@milesk_33/opencodes-january-surge-what-sparked-18-000-new-github-stars-in-two-weeks-7d904cd26844
  20. Hacker News. "OpenCode - Open source AI coding agent." https://news.ycombinator.com/item?id=47460525
  21. DataCamp Blog. "OpenCode vs Claude Code: Which Agentic Tool Should You Use in 2026?" https://www.datacamp.com/blog/opencode-vs-claude-code
  22. NxCode. "Aider vs OpenCode: Best Open-Source AI Coding CLI in 2026." https://www.nxcode.io/resources/news/aider-vs-opencode-ai-coding-cli-2026
  23. VentureBeat. "Anthropic cracks down on unauthorized Claude usage by third-party harnesses and rivals." https://venturebeat.com/technology/anthropic-cracks-down-on-unauthorized-claude-usage-by-third-party-harnesses
  24. The Register. "Anthropic clarifies ban on third-party tool access to Claude." https://www.theregister.com/2026/02/20/anthropic_clarifies_ban_third_party_claude_access/
  25. Hacker News. "Anthropic Explicitly Blocking OpenCode." https://news.ycombinator.com/item?id=46625918
  26. Artificial Analysis. "Coding Agents Comparison." https://artificialanalysis.ai/agents/coding
  27. sanj.dev. "Aider vs OpenCode vs Claude Code: 2026 CLI AI Coding Assistants Showdown." https://sanj.dev/post/comparing-ai-cli-coding-assistants
  28. MorphLLM. "OpenCode vs Claude Code: Open Source Freedom vs Anthropic Polish." https://www.morphllm.com/comparisons/opencode-vs-claude-code
  29. pkg.go.dev. opencode Go package. https://pkg.go.dev/github.com/sst/opencode
  30. Anomaly Innovations. https://anoma.ly/

Improve this article

Add missing citations, update stale details, or suggest a clearer explanation.

Suggest edit