$npx -y skills add yogirk/agent-council --skill council-replayReplay a past Agent Council session in the terminal. Shows the full deliberation: question, each agent's opinion, and the chairman's synthesis.
| 1 | # Council Replay |
| 2 | |
| 3 | Replay a past council deliberation session in the terminal. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | The user invokes `/council-replay <session-id>`. |
| 8 | |
| 9 | ## Run |
| 10 | |
| 11 | Replace `{SESSION_ID}` with the session ID the user provided. |
| 12 | |
| 13 | ```bash |
| 14 | 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")" |
| 15 | SLUG=$(basename "$(git rev-parse --show-toplevel 2>/dev/null || pwd)") |
| 16 | $COUNCIL_BIN replay {SESSION_ID} --project "$SLUG" |
| 17 | ``` |
| 18 | |
| 19 | After the replay, tell the user: |
| 20 | |
| 21 | > **Next steps:** |
| 22 | > - Re-run with current context: `/council-revisit <session-id>` |
| 23 | > - Record outcome: `/council-outcome <session-id> "what happened"` |
| 24 | > - Open viewer: `open ~/.council/{project}/{session-id}/viewer.html` |