← Browse

@shuntacurosu/llm-council

B

Orchestrate multiple LLMs as a council, generating collective intelligence through peer review and chairman synthesis

skillclaude

Install

agr install @shuntacurosu/llm-council --target claude

Writes 7 files into .claude/skills/, pinned to git-fcf028a9.

  • .claude/skills/llm-council/.gitignore
  • .claude/skills/llm-council/AGENTS.md
  • .claude/skills/llm-council/CHANGELOG.md
  • .claude/skills/llm-council/README.ja.md
  • .claude/skills/llm-council/README.md
  • .claude/skills/llm-council/SKILL.md
  • .claude/skills/llm-council/requirements.txt

Document


name: LLM Council description: Orchestrate multiple LLMs as a council, generating collective intelligence through peer review and chairman synthesis version: 1.0.0 dependencies: python>=3.8, python-dotenv, loguru

Overview

LLM Council is a Skill that organizes multiple LLMs as "council members" and generates high-quality responses through a 3-stage process.

Use Cases

  • When you need multiple perspectives for important decisions
  • When you want multiple AIs to review code
  • When comparing and evaluating design proposals
  • When you need objective responses with reduced bias

3-Stage Process

  1. Stage 1: Opinion Collection - Each member (LLM) responds independently
  2. Stage 2: Peer Review - Anonymized responses are mutually ranked
  3. Stage 3: Synthesis - Chairman integrates all opinions and reviews into final response

Quick Start

# Basic question
python scripts/run.py council_skill.py "What's the optimal caching strategy?"

# With TUI dashboard
python scripts/run.py cli.py --dashboard "What's the optimal caching strategy?"

# Code fix (diff only)
python scripts/run.py council_skill.py --dry-run "Fix the bug in buggy.py"

# Auto-merge
python scripts/run.py council_skill.py --auto-merge "Add error handling"

Command Options

OptionDescription
--dashboard, -dTUI dashboard for real-time monitoring
--worktreesGit worktree mode - each member works independently
--dry-runShow diff without merging
--auto-mergeAuto-merge the top-ranked proposal
--merge NMerge member N's proposal
--confirmShow confirmation prompt before merge
--no-commitApply changes without staging
--listShow conversation history
--continue NContinue conversation N

Setup

  1. Create scripts/.env to configure models
  2. Install and configure OpenCode CLI
  3. Run python scripts/run.py council_skill.py --setup for details

Resources

See README.md for more details.

Trustgrade B

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • warnLicenseno SPDX license detected

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.

Versions

  • git-fcf028a95e1a2026-07-31