All checks were successful
Update Nix Packages with nix-update / nix-update (push) Successful in 14m5s
- Fix broken beads reference in pkgs/default.nix - Convert opencode.md to deprecation notice with llm-agents.nix link - Convert beads.md to removal notice - Remove beads, opencode, openspec from README.md packages table - Remove beads, opencode from docs/README.md packages list
38 lines
1.2 KiB
Markdown
38 lines
1.2 KiB
Markdown
# opencode (Deprecated)
|
|
|
|
> **Note**: The `opencode` package has been removed from this repository.
|
|
|
|
## Why was it removed?
|
|
|
|
OpenCode (CLI version) has been removed because there is now a well-maintained upstream repository for AI coding tools:
|
|
|
|
**[numtide/llm-agents.nix](https://github.com/numtide/llm-agents.nix)**
|
|
|
|
This repository provides Nix packages for various AI coding agents, including OpenCode and others, with active maintenance and updates.
|
|
|
|
## What should I use instead?
|
|
|
|
Use the [llm-agents.nix](https://github.com/numtide/llm-agents.nix) flake directly:
|
|
|
|
```nix
|
|
{
|
|
inputs = {
|
|
llm-agents.url = "github:numtide/llm-agents.nix";
|
|
};
|
|
|
|
outputs = { inputs, ... }: {
|
|
# Access packages via inputs.llm-agents.packages.${system}
|
|
};
|
|
}
|
|
```
|
|
|
|
Or run directly:
|
|
|
|
```bash
|
|
nix run github:numtide/llm-agents.nix#opencode
|
|
```
|
|
|
|
## What about opencode-desktop?
|
|
|
|
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.
|