$npx -y skills add yogirk/agent-council --skill council-listList all past Agent Council sessions for the current project. Shows session ID, mode, agent count, and question for each.
| 1 | # Council List |
| 2 | |
| 3 | Show all past council deliberation sessions for this project. |
| 4 | |
| 5 | ## Run |
| 6 | |
| 7 | ```bash |
| 8 | COUNCIL_BIN=""; for _d in "$HOME/.claude/skills/agent-council" "$HOME/.agents/skills/agent-council" "$HOME/.gemini/skills/agent-council" "$(git rev-parse --show-toplevel 2>/dev/null)"; do [ -x "$_d/bin/council" ] && COUNCIL_BIN="$_d/bin/council" && break; [ -x "$_d/council" ] && COUNCIL_BIN="$_d/council" && break; done; [ -z "$COUNCIL_BIN" ] && COUNCIL_BIN="$(which council 2>/dev/null || echo "bin/council")" |
| 9 | SLUG=$(basename "$(git rev-parse --show-toplevel 2>/dev/null || pwd)") |
| 10 | $COUNCIL_BIN list --project "$SLUG" |
| 11 | ``` |
| 12 | |
| 13 | After showing the list, tell the user: |
| 14 | |
| 15 | > **Next steps:** |
| 16 | > - Replay in terminal: `/council-replay <session-id>` |
| 17 | > - Re-run with current context: `/council-revisit <session-id>` |
| 18 | > - Record outcome: `/council-outcome <session-id> "what happened"` |
| 19 | > - Open viewer: `open ~/.council/{project}/{session-id}/viewer.html` |