Stats
Links
Categories
Delegate tasks to opencode CLI from Claude Code
npx claudepluginhub bill-park/cc-opencodeDelegate tasks to opencode CLI via /opencode skill
A Claude Code plugin that delegates tasks to the opencode CLI via the /opencode slash command.
PATHAdd the following to your ~/.claude/settings.json:
{
"enabledPlugins": {
"cc-opencode@cc-opencode": true
},
"extraKnownMarketplaces": {
"cc-opencode": {
"source": {
"source": "github",
"repo": "Bill-Park/cc-opencode"
}
}
}
}
Then restart Claude Code.
/cc-opencode:opencode <task description>
/cc-opencode:opencode --continue "follow up on previous task"
/cc-opencode:opencode --session abc123 --fork "try an alternative approach"
/cc-opencode:opencode --file ./src/main.ts "review this file"
| Flag | Short | Description |
|---|---|---|
--model | -m | Model override (e.g. openai/gpt-4o) |
--continue | -c | Continue the latest opencode session |
--session | -s | Continue a specific session ID |
--fork | Fork from the continued session | |
--file | -f | Attach one or more files |
--dir | Working directory override | |
--thinking | Enable thinking block output |
Plugin structure inspired by oh-my-claudecode, licensed under MIT License. Copyright (c) 2025 Yeachan Heo.
MIT