3.0 KiB
3.0 KiB
Opencode Config Sync
Cross-machine synchronization for opencode AI configuration.
One-Click Install
Windows (PowerShell)
iwr -useb https://git.nomsg.cn/chaos/opencode-config/raw/branch/master/install.ps1 | iex
Or manually:
git clone https://git.nomsg.cn/chaos/opencode-config.git $env:USERPROFILE\opencode-config
cd $env:USERPROFILE\opencode-config
.\install.ps1
macOS / Linux
curl -fsSL https://git.nomsg.cn/chaos/opencode-config/raw/branch/master/install.sh | bash
Or manually:
git clone https://git.nomsg.cn/chaos/opencode-config.git ~/.config/opencode-config
cd ~/.config/opencode-config
chmod +x install.sh
./install.sh
Prerequisites
- Node.js & npm
- Python 3 (for git MCP)
- Git
- opencode CLI installed
Environment Variables
Set these before running install, or the script will prompt you:
| Variable | Description | Required |
|---|---|---|
OPENCODE_API_KEY |
Your AI provider API key | Yes |
BRAVE_API_KEY |
Brave Search API key | No (brave-search MCP will be disabled if not set) |
PROJECTS_PATH |
Path to your projects directory | No (defaults: Windows=D:\Projects, Unix=~/projects) |
Setting Env Vars (Windows)
[Environment]::SetEnvironmentVariable("OPENCODE_API_KEY", "sk-...", "User")
[Environment]::SetEnvironmentVariable("BRAVE_API_KEY", "BSA...", "User")
Setting Env Vars (Unix)
echo 'export OPENCODE_API_KEY=sk-...' >> ~/.bashrc
echo 'export BRAVE_API_KEY=BSA...' >> ~/.bashrc
What's Synced
- 32 Skills - Coding standards, frontend/backend patterns, security review, etc.
- 3 Agents - explorer, reviewer, docs-researcher
- 11 MCP Servers - codegraph, brave-search, playwright, github, etc.
- Model Config - Kimi K2.6 + 7 other models via OpenAI-compatible API
Updating
cd ~/opencode-config
git pull
# Re-run install if templates changed
./install.ps1 # or ./install.sh
Security Notes
- API keys are never committed to git
opencode.jsonis generated locally from template- Use a private GitHub repository
Troubleshooting
MCP not loading?
- Restart opencode after install
- Check
opencode.jsonsyntax withpython -m json.tool ~/.config/opencode/opencode.json
CodeGraph not working?
- Run
npm install -g @colbymchenry/codegraphon new machine - Run
codegraph initin your project directory
Git MCP fails?
- Install Python package:
pip install mcp-server-git
Structure
opencode-config/
├── opencode.json.template # Config template with placeholders
├── agents/ # Agent definitions
│ ├── explorer.md
│ ├── reviewer.md
│ └── docs-researcher.md
├── skills/ # 32 reusable skills
│ ├── coding-standards/
│ ├── frontend-patterns/
│ └── ...
├── install.ps1 # Windows installer
├── install.sh # macOS/Linux installer
└── README.md