5.3 KiB
OpenCode
Use this guide as the starting point for work involving OpenCode itself. It covers the core concepts needed to configure and customize OpenCode, extend it with plugins, and build integrations with the OpenCode SDK, clients, and API.
Full documentation is available at https://v2.opencode.ai/. Consult it when this overview does not contain enough detail for the task.
Configuration
OpenCode configuration uses JSON or JSONC. Include the published schema so the user's editor can validate fields and provide autocomplete:
{
"$schema": "https://opencode.ai/config.json"
}
Global configuration lives at ~/.config/opencode/opencode.json(c) and applies
to every project for that user. Project configuration can live in any directory
as opencode.json(c) or .opencode/opencode.json(c), including nested packages
in a monorepo.
When OpenCode starts, it searches upward from the current directory for project configuration and merges the files it finds with the global configuration.
Common configuration fields include model, default_agent, permissions,
agents, commands, plugins, providers, mcp, skills, instructions,
references, formatter, and lsp.
Do not guess field names or shapes. Use https://opencode.ai/config.json as the source of truth and preserve unrelated settings when editing an existing file.
See the full configuration guide for every field, examples, config locations, and links to dedicated feature guides.
V1 to V2 migration
For any request to migrate OpenCode configuration, agents, commands, skills,
plugins, integrations, or other behavior from V1 to V2, read the full
migration guide before acting. In
the repository, its source is packages/docs/migrate-v1.mdx.
V1 config files and .opencode/ definitions are intended to remain compatible.
The only intentional breaking changes are the server API and plugin API. Native
V2 config uses more ergonomic shapes, but conversion is optional. When the user
requests conversion, inspect the complete configuration, preserve behavior and
unrelated settings, and apply only the relevant migrations from the guide. If
the request includes a V1 plugin, explain that its API is not finalized and do
not attempt migration yet. Once the V2 plugin API is finalized, OpenCode should
be able to migrate most plugins. If non-API V1 functionality fails in V2, use
the report skill to file it as a compatibility bug.
Service
OpenCode uses a client-server architecture. Interfaces such as the TUI connect to a background OpenCode service, which owns sessions, configuration, plugins, permissions, and tool execution.
Configuration and related files are typically watched and reloaded while the service is running. If a change does not appear, restart the service:
opencode2 service restart
Check its status after restarting:
opencode2 service status
API
OpenCode exposes an HTTP API from its server. The API is described by an
OpenAPI document available from the running server at /openapi.json.
Use OpenCode's built-in api command for local requests. It discovers the same
background server used by the TUI, starts it when necessary, and applies the
server's authentication headers automatically.
Call an endpoint with an HTTP method and path:
opencode2 api get /api/health
Pass a request body with --data or -d, and additional headers with
--header or -H:
opencode2 api post /api/example --data '{"key":"value"}'
opencode2 api get /api/example --header 'X-Example:value'
Request bodies default to Content-Type: application/json. When OpenCode is
connected to an explicit server instead of its managed background service, use
the same configured server and authentication context rather than constructing
an unauthenticated request separately.
See the full API reference for available endpoints, parameters, request bodies, and response schemas. The raw OpenAPI specification is also available for code generation and other tooling.
Troubleshooting
OpenCode runs a client and a background server. Start by determining whether a problem belongs to the client, the shared server, or one project.
- Check the service with
opencode2 service statusand verify the API withopencode2 api get /api/health. - Inspect
~/.local/share/opencode/log/opencode.log. Filterrole=clifor client startup androle=serverfor sessions, providers, plugins, permissions, and tools. - Run one reproduction with
OPENCODE_LOG_LEVEL=DEBUGwhen normal logs are not sufficient. - Do not delete or edit the database, service registration, or service config while diagnosing a problem. Back up persistent data before inspecting it with external tools.
- Redact API keys, authorization headers, prompts, file contents, and other sensitive data before sharing diagnostics.
See the full troubleshooting guide for service lifecycle commands, API inspection, log locations, explicit server connections, issue-reporting details, and local development paths.