You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "An OpenCode plugin that turns the built-in `build` agent into a PDCA orchestrator — call sign `sarge`. On every request it states an explicit SELF/DELEGATE verdict: trivial work it handles itself; real work (code, docs, config changes) it hands to a hidden `grunt` subagent and routes through a `drill` reviewer for the Deming check-act cycle, with up to 3 retry iterations before escalating. Read-only investigations skip the reviewer entirely. It routes by model capability (with per-model grunts), owns the outcome of what it delegates, and a live context-usage signal feeds the routing decision so a heavy task is not burned into an already-full context window.",
"installation": "Add one line to `~/.config/opencode/opencode.json`:\n\n```json\n{\n \"plugin\": [\"opencode-squad@git+https://github.com/GFN-CIS/opencode-squad.git\"]\n}\n```\n\nThat is all. On next start, OpenCode registers everything automatically.\n\n**Optional: override subagent models**\n\nThe default model for both subagents is `anthropic/claude-sonnet-4-6`. To use a different model:\n\n```json\n{\n \"plugin\": [\"opencode-squad@git+https://github.com/GFN-CIS/opencode-squad.git\"],\n \"agent\": {\n \"grunt\": { \"model\": \"anthropic/claude-sonnet-4-6\" },\n \"drill\": { \"model\": \"anthropic/claude-haiku-4-5\" }\n }\n}\n```"