Council
Use this skill for /octo:council and council-style requests.
EXECUTION CONTRACT: MANDATORY
/octo:council is a runner-backed workflow. Execute the real shell runner by default:
"${CLAUDE_PLUGIN_ROOT:-$HOME/.claude-octopus/plugin}/scripts/orchestrate.sh" council <user arguments>
Do not simulate a council, role-play all members inside the current model, or answer directly in place of the runner. A single-model simulation must be explicitly requested with --simulate or --single-model; when used, label the output as single-model simulation and keep the generated summary.json path visible. Otherwise, missing provider quorum is a partial/failed council, not permission to silently downgrade.
Phase 0A: Interactive Clarification
If the user invokes /octo:council with an ambiguous task, missing goal/depth intent, uncertain implementation permission, or unclear research/corpus expectations, use AskUserQuestion before running the council runner. If the prompt already includes clear flags and a clear task, skip this phase and execute immediately.
Use 2-4 mutually exclusive choices per question, put the recommended option first, and map the answers to runner flags before execution. Do not end with a free-form question or a set of questions; present the choice interaction and wait for the answer.
Default council clarification:
AskUserQuestion({
questions: [
{
question: "How should the council handle this request?",
header: "Council Goal",
multiSelect: false,
options: [
{label: "Advice (Recommended)", description: "Return a structured recommendation without implementation"},
{label: "Decision", description: "Optimize for choosing between specific options"},
{label: "Implementation plan", description: "Produce a plan but do not edit files"},
{label: "Review", description: "Critique existing code, docs, or strategy"}
]
},
{
question: "How deep should the council go?",
header: "Depth",
multiSelect: false,
options: [
{label: "Standard (Recommended)", description: "Balanced cost and coverage"},
{label: "Quick", description: "Faster, lower-cost pass"},
{label: "Deep", description: "More critique and revision, higher cost"}
]
},
{
question: "Should the council use project research or corpus storage?",
header: "Context",
multiSelect: false,
options: [
{label: "No corpus (Recommended)", description: "Run with the provided prompt and write normal run artifacts"},
{label: "Research first", description: "Add --research-first before provider fanout"},
{label: "Append corpus", description: "Use --corpus-mode append for durable project notes"},
{label: "Require corpus", description: "Use --corpus-mode require and stop if no corpus workspace exists"}
]
}
]
})
Translate answers as follows:
- Advice, Decision, Implementation plan, or Review ->
--goal advice|decision|plan|review
- Quick, Standard, or Deep ->
--depth quick|standard|deep
- Research first ->
--research-first
- Append corpus or Require corpus ->
--corpus-mode append|require
Phase 0: Preflight
Collect or infer:
- goal:
advice, decision, plan, implement, or review
- domain:
auto, architecture, product, security, business, research, or docs
- style:
balanced, adversarial, implementation, executive, or red-team
- depth:
quick, standard, or deep
- members:
auto, 3, 5, or 7
- budget cap in USD
- providers and provider availability
- pinned personas
- implementation permission and worktree isolation
- whether research must happen before council fanout (
--research-first)
- whether findings, research, synthesis, and plans must be appended to the project corpus (
--corpus-mode append|require)
Show the selected council, provider availability, benchmark freshness, quorum requirement, and cost estimate before provider fanout. Re-check the budget before critique, revision, synthesis, and implementation planning so the run stops before the next phase would exceed --max-cost. If the run is a dry run, stop after this preflight and write summary.json.
If --research-first is set, gather local corpus evidence first, then current external sources when allowed. Store concise findings as run artifacts before provider fanout. If --corpus-mode append or --corpus-mode require is set, append the research notes, findings, synthesis, and implementation plan to the project's durable corpus conventions before claiming completion; require must stop when no corpus workspace is available.
Quorum
- quick requires at least one non-chair response plus a synthesis-capable chair
- standard and deep require at least two non-chair responses plus a synthesis-capable chair
- if the chair fails, retry once with the highest-scoring synthesis-capable fallback
- if quorum is lost, stop by default and present partial artifacts instead of pretending consensus exists
Council Procedure
- Independent advice: ask each selected persona for recommendation, assumptions, risks, implementation notes, and confidence.
- Cross-critique: for standard/deep runs, semi-anonymize responses and ask members to critique gaps, assumptions, and risks.
- Revision: for deep runs or high disagreement, let members revise their positions after critique.
- Chair synthesis: produce agreement, disagreement, minority reports, risk register, implementation path, confidence, and conditions that would change the recommendation.
- Ratify / veto: verifier, red-team, security, legal, finance, and medical roles can veto implementation for critical risks.
Implementation Gates
- Gate A: user accepts the council synthesis or asks for revision.
- Gate B: user accepts the concrete implementation plan generated from the synthesis.
- Gate C: execution proceeds through existing Octopus implementation safety behavior. This is a one-shot authorization for the accepted plan, not per-file approval, unless existing safety hooks detect destructive or risky actions.
Never implement from council output without explicit approval. Preserve disagreement, summarize risks, and keep vetoes visible in the final answer and artifacts.
Interactive Choice Handling
When the user needs to clarify scope, select a depth/provider/corpus option, approve a gate, or decide between follow-up actions, use AskUserQuestion with 2-4 mutually exclusive choices. Put the recommended choice first. Do not end with a free-form question or a set of questions; present the choice interaction and wait for the answer.
Source: hashgraph-online/awesome-codex-plugins → plugins/nyldn/claude-octopus/skills/skill-council/SKILL.md
1---2name: skill-council3description: Run a configurable multi-LLM council with personas, budget caps, synthesis, veto gates, and optional implementation handoff.4---567# Council89Use this skill for `/octo:council` and council-style requests.1011## EXECUTION CONTRACT: MANDATORY1213`/octo:council` is a runner-backed workflow. Execute the real shell runner by default:1415```bash16"${CLAUDE_PLUGIN_ROOT:-$HOME/.claude-octopus/plugin}/scripts/orchestrate.sh" council <user arguments>17```1819Do not simulate a council, role-play all members inside the current model, or answer directly in place of the runner. A single-model simulation must be explicitly requested with `--simulate` or `--single-model`; when used, label the output as `single-model simulation` and keep the generated `summary.json` path visible. Otherwise, missing provider quorum is a partial/failed council, not permission to silently downgrade.2021## Phase 0A: Interactive Clarification2223If the user invokes `/octo:council` with an ambiguous task, missing goal/depth intent, uncertain implementation permission, or unclear research/corpus expectations, use `AskUserQuestion` before running the council runner. If the prompt already includes clear flags and a clear task, skip this phase and execute immediately.2425Use 2-4 mutually exclusive choices per question, put the recommended option first, and map the answers to runner flags before execution. Do not end with a free-form question or a set of questions; present the choice interaction and wait for the answer.2627Default council clarification:2829```javascript30AskUserQuestion({31 questions: [32 {33 question: "How should the council handle this request?",34 header: "Council Goal",35 multiSelect: false,36 options: [37 {label: "Advice (Recommended)", description: "Return a structured recommendation without implementation"},38 {label: "Decision", description: "Optimize for choosing between specific options"},39 {label: "Implementation plan", description: "Produce a plan but do not edit files"},40 {label: "Review", description: "Critique existing code, docs, or strategy"}41 ]42 },43 {44 question: "How deep should the council go?",45 header: "Depth",46 multiSelect: false,47 options: [48 {label: "Standard (Recommended)", description: "Balanced cost and coverage"},49 {label: "Quick", description: "Faster, lower-cost pass"},50 {label: "Deep", description: "More critique and revision, higher cost"}51 ]52 },53 {54 question: "Should the council use project research or corpus storage?",55 header: "Context",56 multiSelect: false,57 options: [58 {label: "No corpus (Recommended)", description: "Run with the provided prompt and write normal run artifacts"},59 {label: "Research first", description: "Add --research-first before provider fanout"},60 {label: "Append corpus", description: "Use --corpus-mode append for durable project notes"},61 {label: "Require corpus", description: "Use --corpus-mode require and stop if no corpus workspace exists"}62 ]63 }64 ]65})66```6768Translate answers as follows:6970- Advice, Decision, Implementation plan, or Review -> `--goal advice|decision|plan|review`71- Quick, Standard, or Deep -> `--depth quick|standard|deep`72- Research first -> `--research-first`73- Append corpus or Require corpus -> `--corpus-mode append|require`7475## Phase 0: Preflight7677Collect or infer:7879- goal: `advice`, `decision`, `plan`, `implement`, or `review`80- domain: `auto`, `architecture`, `product`, `security`, `business`, `research`, or `docs`81- style: `balanced`, `adversarial`, `implementation`, `executive`, or `red-team`82- depth: `quick`, `standard`, or `deep`83- members: `auto`, `3`, `5`, or `7`84- budget cap in USD85- providers and provider availability86- pinned personas87- implementation permission and worktree isolation88- whether research must happen before council fanout (`--research-first`)89- whether findings, research, synthesis, and plans must be appended to the project corpus (`--corpus-mode append|require`)9091Show the selected council, provider availability, benchmark freshness, quorum requirement, and cost estimate before provider fanout. Re-check the budget before critique, revision, synthesis, and implementation planning so the run stops before the next phase would exceed `--max-cost`. If the run is a dry run, stop after this preflight and write `summary.json`.9293If `--research-first` is set, gather local corpus evidence first, then current external sources when allowed. Store concise findings as run artifacts before provider fanout. If `--corpus-mode append` or `--corpus-mode require` is set, append the research notes, findings, synthesis, and implementation plan to the project's durable corpus conventions before claiming completion; `require` must stop when no corpus workspace is available.9495## Quorum9697- quick requires at least one non-chair response plus a synthesis-capable chair98- standard and deep require at least two non-chair responses plus a synthesis-capable chair99- if the chair fails, retry once with the highest-scoring synthesis-capable fallback100- if quorum is lost, stop by default and present partial artifacts instead of pretending consensus exists101102## Council Procedure1031041. **Independent advice:** ask each selected persona for recommendation, assumptions, risks, implementation notes, and confidence.1052. **Cross-critique:** for standard/deep runs, semi-anonymize responses and ask members to critique gaps, assumptions, and risks.1063. **Revision:** for deep runs or high disagreement, let members revise their positions after critique.1074. **Chair synthesis:** produce agreement, disagreement, minority reports, risk register, implementation path, confidence, and conditions that would change the recommendation.1085. **Ratify / veto:** verifier, red-team, security, legal, finance, and medical roles can veto implementation for critical risks.109110## Implementation Gates111112- **Gate A:** user accepts the council synthesis or asks for revision.113- **Gate B:** user accepts the concrete implementation plan generated from the synthesis.114- **Gate C:** execution proceeds through existing Octopus implementation safety behavior. This is a one-shot authorization for the accepted plan, not per-file approval, unless existing safety hooks detect destructive or risky actions.115116Never implement from council output without explicit approval. Preserve disagreement, summarize risks, and keep vetoes visible in the final answer and artifacts.117118## Interactive Choice Handling119120When the user needs to clarify scope, select a depth/provider/corpus option, approve a gate, or decide between follow-up actions, use `AskUserQuestion` with 2-4 mutually exclusive choices. Put the recommended choice first. Do not end with a free-form question or a set of questions; present the choice interaction and wait for the answer.121122---123124**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/nyldn/claude-octopus/skills/skill-council/SKILL.md`