Created
March 18, 2026 23:56
-
-
Save butaji/8910c11f1be26dd0129d30bc3a8bd134 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$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