An AI coding agent — fork of OpenCode.
Note: SevenCode is a fork of OpenCode maintained by Digital Learning GmbH. We track upstream changes and add our own customizations on top. Full credit to the OpenCode team for the original project.
# Quick install
curl -fsSL https://sevencode.app/install | bash
# From source
git clone https://github.com/digital-learning-gmbh/sevencode.git
cd sevencode
bun install
bun run buildSevenCode is also available as a desktop application. Download directly from the releases page.
| Platform | Download |
|---|---|
| macOS (Apple Silicon) | opencode-desktop-darwin-aarch64.dmg |
| macOS (Intel) | opencode-desktop-darwin-x64.dmg |
| Windows | opencode-desktop-windows-x64.exe |
| Linux | .deb, .rpm, or AppImage |
The install script respects the following priority order for the installation path:
$OPENCODE_INSTALL_DIR- Custom installation directory$XDG_BIN_DIR- XDG Base Directory Specification compliant path$HOME/bin- Standard user binary directory (if it exists or can be created)$HOME/.opencode/bin- Default fallback
# Examples
OPENCODE_INSTALL_DIR=/usr/local/bin curl -fsSL https://sevencode.app/install | bash
XDG_BIN_DIR=$HOME/.local/bin curl -fsSL https://sevencode.app/install | bashSevenCode includes two built-in agents you can switch between with the Tab key.
- build - Default, full-access agent for development work
- plan - Read-only agent for analysis and code exploration
- Denies file edits by default
- Asks permission before running bash commands
- Ideal for exploring unfamiliar codebases or planning changes
Also included is a general subagent for complex searches and multistep tasks.
This is used internally and can be invoked using @general in messages.
Learn more about agents.
For more info on how to configure SevenCode, head over to the docs.
This project is a fork of OpenCode. We regularly merge upstream changes. If you find a bug that also exists in upstream, consider reporting it there as well.
If you're interested in contributing to SevenCode, please read our contributing docs before submitting a pull request.
Same license as the upstream OpenCode project. See LICENSE for details.