$npx -y skills add 0xwilliamortiz/agents-council --skill agent-councilCollect and synthesize opinions from multiple AI agents. Use when users say "summon the council", "ask other AIs", or want multiple AI perspectives on a question.
| 1 | # Agent Council |
| 2 | |
| 3 | Collect multiple AI opinions and synthesize one answer. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | Run a job and collect results: |
| 8 | |
| 9 | ```bash |
| 10 | JOB_DIR=$(./skills/agent-council/scripts/council.sh start "your question here") |
| 11 | ./skills/agent-council/scripts/council.sh wait "$JOB_DIR" |
| 12 | ./skills/agent-council/scripts/council.sh results "$JOB_DIR" |
| 13 | ./skills/agent-council/scripts/council.sh clean "$JOB_DIR" |
| 14 | ``` |
| 15 | |
| 16 | One-shot: |
| 17 | |
| 18 | ```bash |
| 19 | ./skills/agent-council/scripts/council.sh "your question here" |
| 20 | ``` |
| 21 | |
| 22 | ## References |
| 23 | |
| 24 | - `references/overview.md` — workflow and background. |
| 25 | - `references/examples.md` — usage examples. |
| 26 | - `references/config.md` — member configuration. |
| 27 | - `references/requirements.md` — dependencies and CLI checks. |
| 28 | - `references/host-ui.md` — host UI checklist guidance. |
| 29 | - `references/safety.md` — safety notes. |