Skip to content

Instantly share code, notes, and snippets.

@butaji
Created March 18, 2026 23:56
Show Gist options
  • Select an option

  • Save butaji/8910c11f1be26dd0129d30bc3a8bd134 to your computer and use it in GitHub Desktop.

Select an option

Save butaji/8910c11f1be26dd0129d30bc3a8bd134 to your computer and use it in GitHub Desktop.
{
"$schema": "https://opencode.ai/config.json",
"model": "openai/gpt-5.2-codex",
"default_agent": "build",
"agent": {
"plan": {
"model": "openai/gpt-5.4",
"permission": { "edit": "deny", "bash": "deny" }
},
"review": {
"model": "openai/gpt-5.1-codex",
"permission": { "edit": "deny" }
},
"fast": {
"model": "minimax/MiniMax-M2.5"
},
"builder": {
"description": "Implements scoped tasks in code. Make changes directly.",
"mode": "subagent",
"model": "openai/gpt-5.2-codex"
}
},
"command": {
"plan-implement": {
"description": "Plan the scope, then delegate implementation to @builder subagents",
"agent": "plan",
"subtask": true,
"template": "Plan the scope for: $ARGUMENTS\n\nBreak the work into concrete steps. Then delegate implementation of each step to @builder subagents. After they finish, summarize what changed and any risks."
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment