Portable multi-agent council skill for Codex, Claude Code, Amp, and other coding agents supported by the skills CLI.
npx skills add https://github.com/tsenart/council-skill --skill councilInstala esta habilidad con la CLI y comienza a usar el flujo de trabajo SKILL.md en tu espacio de trabajo.
Portable multi-agent council skill for Codex, Claude Code, Amp, and any other
coding agent supported by the skills CLI.
Council is for questions where one answer is not enough: architecture choices,
strategy tradeoffs, debugging hypotheses, launch decisions, founder questions,
and risk reviews. The skill runs a compact three-round council protocol with
independent analysis, cross-exam, and a final verdict.
Install the skill from GitHub:
npx skills add <owner>/council-skill --skill council
Install it globally for specific agents:
npx skills add <owner>/council-skill --skill council -a codex -a claude-code -a amp -g -y
Install it from a local checkout while developing:
npx skills add . --skill council -a codex -a claude-code -a amp -y
The installable skill lives at skills/council/SKILL.md.
Its bundled references live under skills/council/references/.
Depending on the target agent, skills will install the skill into the
appropriate project or global skills directory. In practice this means:
.agents/skills/council/ or ~/.codex/skills/council/.claude/skills/council/ or ~/.claude/skills/council/.agents/skills/council/ or ~/.config/agents/skills/council/skills/council/ — the installable skillexamples/ — prompt ideas and a sample verdictscripts/ — smoke validation for local and CI useUse $council to stress test whether we should split the worker into a separate service./council Should we keep one shared Postgres schema or split into product-specific schemas before launch?Use the council skill to deliberate on whether we should ship the narrow pilot now or wait for broader automation coverage.More examples live in examples/prompt-library.md
and examples/sample-verdict.md.
Run the local smoke test:
bash scripts/smoke-test.sh
This checks that npx skills add discovers the skill and can install it into
Codex, Claude Code, and Amp target directories from a local checkout.