council

council is a command for Claude Code from vinnie357/claude-skills. It costs 28 tokens per session (1,079 once invoked), scanned A, original, MIT.

A command that sends one task to several AI execution environments at the same time and combines their replies into one report. The report separates shared conclusions, disagreements, one-off ideas, and a recommendation.

In plain words
What is it for?
Use it for technical questions, design choices, and other tasks where you want several independent analyses or a multi-round discussion.
Why use it?
It reduces reliance on a single answer when different models or execution environments may produce different results. Parallel requests also let you compare viewpoints in one run.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the altana plugin — 1 skill, 3 commands shipped together

Good fit Use it for technical questions, design choices, and other tasks where you want several independent analyses or a multi-round discussion.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/vinnie357/claude-skills/council
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/vinnie357/claude-skills

Made for: Claude Code.

Or install altana, the plugin that ships this one along with the rest of its 1 skill, 3 commands.

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/vinnie357/claude-skills/council/github.svg)](https://agentmods.dev/commands/vinnie357/claude-skills/council)
Your own site
<a href="https://agentmods.dev/commands/vinnie357/claude-skills/council"><img src="https://agentmods.dev/badge/commands/vinnie357/claude-skills/council/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

Your own site · 80×15
<a href="https://agentmods.dev/commands/vinnie357/claude-skills/council"><img src="https://agentmods.dev/badge/commands/vinnie357/claude-skills/council.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 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,079 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.00028 $0.01079
Opus 5 $0.00014 $0.00540
Sonnet 5 $0.00006 $0.00216
Haiku 4.5 $0.00003 $0.00108

Measured 6d ago against content hash 76f5de319dfc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

council 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 6d 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/tools/altana/commands/council.md · 72 lines

How it starts

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

Run altana council to fan out one task to N harnesses simultaneously, then synthesize the array of responses into a structured analysis. Two modes are available: one-shot (default) and interactive (persistent-session, multi-round deliberation).

What it does:

  1. Invokes altana council "<task>" [--harnesses <list>] [--rounds N] [--interactive] [--prompt <template>].
  2. Runs in the background (council calls are inherently parallel and may take time).
  3. Receives a JSON array of result objects — one per harness, in config-declaration order.
    • In one-shot mode each element has a single response string.
    • In interactive mode each element carries a rounds array of {round, response} objects instead of a single response.
  4. Synthesizes the responses into a structured report:
    • Agreements — claims all harnesses converge on.
    • Disagreements — points where harnesses diverge; note which harness said what.
    • Unique insights — observations raised by only one harness.
    • Recommendation — a synthesized conclusion weighing all perspectives.

Why council? Different harnesses run different models or executors. The same question delegated to multiple independent agents surfaces blind spots, validates conclusions, and reveals model-specific biases. The synthesis step is where the value lands — raw JSON alone does not exploit the diverse perspectives.

Arguments:

  • <task> — the prompt to fan out. Council is read-only; --write presets are rejected by altana.
  • --harnesses a,b,c — comma-separated list of harness names; defaults to all configured harnesses when omitted.
  • --rounds N — number of deliberation rounds when --interactive is set; default 2.
  • --interactive — opens one persistent session per harness; from round 2 on each harness sees labeled digests of its peers' prior-round answers and can react. Synthesis remains the caller's responsibility.
  • --prompt <template> — optional named prompt template applied to each harness invocation.

Result array element fields (same schema as delegate):

Field Type
harness string
status done | timeout | crash | missing_sentinel
duration_s float
log_path string
response string or null

If altana is not installed:

Install altana (see its README — it is a Zig CLI built with zig 0.16). After building, place the binary on your PATH or invoke via mise exec -- zig-out/bin/altana.

Examples:

/council "what are the risks of removing the retry loop in src/client.zig?"
/council "critique the API surface in src/api.zig" --harnesses opus-harness,sonnet-harness
/council "review this design doc" --prompt design-review
/council "compare these two API designs" --interactive --rounds 1 --harnesses claude-cloud,claude-local

Task instructions:

Parse the argument: everything before the first -- flag is <task>; extract --harnesses, --rounds, --interactive, and --prompt from the flags. Flags must appear after the task string (the working invocation order is altana council "<task>" --flag value).

Run (in background): altana council "<task>" [--harnesses <list>] [--rounds N] [--interactive] [--prompt <template>]

Once the result arrives, parse the JSON array. For each element where status == "done", extract the ## Answer section from response. For non-done entries, note the harness name and failure status.

Synthesize across all done responses:

  1. Agreements — identify claims that appear (in substance) across all or most harnesses.
  2. Disagreements — identify points where harnesses give incompatible answers; attribute each position to its harness.
  3. Unique insights — note observations raised by exactly one harness that the others did not mention.
  4. Recommendation — produce a single synthesized answer that weighs the agreements, resolves or flags the disagreements, and incorporates the unique insights.

Report the synthesis. Append a table showing harness, status, and duration for transparency. If any harness returned non-done, note what was missing from the synthesis and point to the log_path for investigation.

Read the full file on GitHub · 72 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. 6d ago First seen · 72 lines · 28 tokens per session scan A 76f5de319dfc

Subscribe to this mod's changes

council is a command published in the GitHub repository vinnie357/claude-skills (25 stars, last pushed 3d ago), licensed MIT. It adds 28 tokens to every session and 1,079 once invoked, about $0.0001 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.