council-run

council-run is a command for Claude Code from SteveGJones/ai-first-sdlc-practices. It costs 45 tokens per session (1,339 once invoked), scanned A, original, MIT.

A command that sends one task to several AI coding agents and combines their responses into one attributed result, with a comparison against a single-model baseline.

In plain words
What is it for?
It helps compare models on a task, gather multiple solutions, and produce a judged synthesis.
Why use it?
It reduces reliance on one agent and makes disagreements or improvements between agents visible.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the sdlc-model-council plugin — 1 skill, 7 commands, 2 agents shipped together

Good fit It helps compare models on a task, gather multiple solutions, and produce a judged synthesis.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add SteveGJones/ai-first-sdlc-practices
Claude Code
/plugin install sdlc-model-council

Made for: Claude Code.

Or install sdlc-model-council, the plugin that ships this one along with the rest of its 1 skill, 7 commands, 2 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for council-run

README.md
[![agentmods](https://agentmods.dev/badge/commands/stevegjones/ai-first-sdlc-practices/council-run/github.svg)](https://agentmods.dev/commands/stevegjones/ai-first-sdlc-practices/council-run)
Your own site
<a href="https://agentmods.dev/commands/stevegjones/ai-first-sdlc-practices/council-run"><img src="https://agentmods.dev/badge/commands/stevegjones/ai-first-sdlc-practices/council-run/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for council-run

Your own site · 80×15
<a href="https://agentmods.dev/commands/stevegjones/ai-first-sdlc-practices/council-run"><img src="https://agentmods.dev/badge/commands/stevegjones/ai-first-sdlc-practices/council-run.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,339 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00045 $0.01339
Opus 5 $0.00023 $0.00669
Sonnet 5 $0.00009 $0.00268
Haiku 4.5 $0.00005 $0.00134

Measured 10d ago against content hash 2708af237b0e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-13, from the pricing page.

Security

Grade A, and why

council-run scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/sdlc-model-council/commands/council-run.md · 90 lines

How it starts

The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Run a council play — a cross-model fan-out — over the given task. v1 ships one play, Diff+Synthesis: the same task goes to a decorrelated panel of models, and the council-judge agent synthesises their responses into one attributed verdict with a baseline delta (did the panel beat the single best model?). This is the novel work no per-vendor plugin does.

Arguments: $ARGUMENTS — parse task-type=, input= (a file path or inline text), optional play= (default diff-synthesis), cast= (pin explicit model addresses, comma-separated), budget-usd=, k= (default 3).

Scripts live under ${CLAUDE_PLUGIN_ROOT}/scripts/council/. Do this:

  1. Resolve policy. Load the council-policy skill. If the project is commissioned (.sdlc/model-council/policy.json exists), read the entry for task-type to get the play, the cast (pinned addresses or a cast_rule), and the budget guardrail. If NOT commissioned, say so plainly ("this project isn't commissioned; using heuristics") and fall back: play = diff-synthesis, cast = built live from .sdlc/model-council/roster.json if present, else ask the user for cast=. An explicit cast=/play=/budget-usd= argument always overrides policy — note that you did.

  2. Materialise the task. Write the task to a file (if input= is a path, use it; if inline text, write it to a scratch file under ./tmp/).

  3. Set up the play (deterministic spine, no models yet):

    scripts/council/play.sh setup --dimension <task-type> --k <k> \
      --roster .sdlc/model-council/roster.json \
      --diversity .sdlc/model-council/diversity.json \
      --task-file <task-file> [--cast <pinned>] [--budget-usd N]
    

    It prints PLAY_DIR=… and a dispatch table of label<TAB>model<TAB>result-file. The manifest records the baseline_member (the roster's best single model for this task) — that's what the synthesis is measured against.

  4. Fan out — one delegation-runner per member, in a single message (respect the cap of 5). For each dispatch-table row, parse the model address adapter:model[@effort] into backend / model / effort and dispatch the delegation-runner agent with that backend, the same task (from task.md), and posture=read-only. Each runner returns its unified block with an Answer file path. Do NOT read the answers into your context.

  5. Collect on disk (no context inheritance). For each member, copy its runner's Answer file to <PLAY_DIR>/<label>.result.md with cp — the answer text goes to disk under its blind label, never through your context. A member that ERROR/TIMEOUT/NO_OUTPUT'd has no usable answer — leave its result file absent (it becomes a non-survivor).

  6. Check quorum:

    scripts/council/play.sh combine-check --play-dir <PLAY_DIR>
    

    If verdict is PLAY-DEGRADED (survivors < quorum), report that honestly and stop — a panel that couldn't reach quorum must not be dressed up as a confident synthesis.

  7. Synthesise (blind). Dispatch the council-judge agent (Sonnet) with the PLAY_DIR and the manifest's baseline_label. It reads combine/blind-bundle.md + task.md (models anonymised as Model A/B/…) and writes combine/synthesis.md with Convergent / Divergent(attributed) / Adjudication / Confidence / Baseline delta sections.

  8. Un-blind and report.

    scripts/council/play.sh unblind --play-dir <PLAY_DIR> --in <PLAY_DIR>/combine/synthesis.md
    

    re-attaches the real model addresses (provenance restored). Present that synthesis to the user, then append a spend line — Council spend: $X across N models — summing each member's cost via scripts/council/usage.py <handle-dir>. Finally append one line to .sdlc/model-council/outcomes.jsonl: {"play":"diff-synthesis","dimension":"<task-type>","cast":[…],"baseline_member":"…","ts":"…"} (the measurability ledger; whether the user accepted or reverted the result is recorded later, out of scope for v1).

Read the full file on GitHub · 90 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 90 lines · 0 tokens per session scan A 2708af237b0e

Subscribe to this mod's changes

council-run is a command published in the GitHub repository SteveGJones/ai-first-sdlc-practices (41 stars, last pushed 1mo ago), licensed MIT. It adds 45 tokens to every session and 1,339 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.