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
1.2 KiB
1.2 KiB
opencode (Deprecated)
Note
: The
opencodepackage 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:
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 flake directly:
{
inputs = {
llm-agents.url = "github:numtide/llm-agents.nix";
};
outputs = { inputs, ... }: {
# Access packages via inputs.llm-agents.packages.${system}
};
}
Or run directly:
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. Once this issue is resolved upstream, opencode-desktop may also be removed in favor of the llm-agents.nix repository.