2026-03-07 10:46:06 +01:00
# opencode (Deprecated)
2026-01-13 21:09:02 +01:00
2026-03-07 10:46:06 +01:00
> **Note**: The `opencode` package has been removed from this repository.
2026-01-13 21:09:02 +01:00
2026-03-07 10:46:06 +01:00
## Why was it removed?
2026-01-13 21:09:02 +01:00
2026-03-07 10:46:06 +01:00
OpenCode (CLI version) has been removed because there is now a well-maintained upstream repository for AI coding tools:
2026-01-13 21:09:02 +01:00
2026-03-07 10:46:06 +01:00
**[numtide/llm-agents.nix ](https://github.com/numtide/llm-agents.nix )**
2026-01-13 21:09:02 +01:00
2026-03-07 10:46:06 +01:00
This repository provides Nix packages for various AI coding agents, including OpenCode and others, with active maintenance and updates.
2026-01-13 21:09:02 +01:00
2026-03-07 10:46:06 +01:00
## What should I use instead?
2026-01-13 21:09:02 +01:00
2026-03-07 10:46:06 +01:00
Use the [llm-agents.nix ](https://github.com/numtide/llm-agents.nix ) flake directly:
2026-01-13 21:09:02 +01:00
```nix
{
2026-03-07 10:46:06 +01:00
inputs = {
llm-agents.url = "github:numtide/llm-agents.nix";
};
outputs = { inputs, ... }: {
# Access packages via inputs.llm-agents.packages.${system}
};
2026-01-13 21:09:02 +01:00
}
```
2026-03-07 10:46:06 +01:00
Or run directly:
2026-01-13 21:09:02 +01:00
```bash
2026-03-07 10:46:06 +01:00
nix run github:numtide/llm-agents.nix#opencode
2026-01-13 21:09:02 +01:00
```
2026-03-07 10:46:06 +01:00
## What about opencode-desktop?
2026-01-13 21:09:02 +01:00
2026-03-07 10:46:06 +01:00
The `opencode-desktop` package remains available in this repository as it includes a Wayland support workaround for [upstream issue #11755 ](https://github.com/opencode-ai/opencode/issues/11755 ). Once this issue is resolved upstream, `opencode-desktop` may also be removed in favor of the llm-agents.nix repository.