$npx -y skills add yogirk/agent-council --skill council-revisitRevisit a past Agent Council decision with current codebase context. Re-runs the same question through the council and shows a side-by-side comparison of what changed. Use for living decisions.
| 1 | # Council Revisit (Living Decisions) |
| 2 | |
| 3 | Re-run a past council deliberation with the current state of the codebase. Produces a |
| 4 | side-by-side comparison showing how the council's opinions have evolved. |
| 5 | |
| 6 | ## Usage |
| 7 | |
| 8 | The user invokes `/council-revisit <session-id>`. |
| 9 | |
| 10 | If the user doesn't provide a session ID, run `/council-list` first to show available sessions. |
| 11 | |
| 12 | ## Run |
| 13 | |
| 14 | Replace `{SESSION_ID}` with the session ID the user provided. |
| 15 | |
| 16 | ```bash |
| 17 | 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")" |
| 18 | SLUG=$(basename "$(git rev-parse --show-toplevel 2>/dev/null || pwd)") |
| 19 | SESSION_DIR=$($COUNCIL_BIN revisit {SESSION_ID} --project "$SLUG") |
| 20 | echo "SESSION_DIR=$SESSION_DIR" |
| 21 | ``` |
| 22 | |
| 23 | ## After dispatch |
| 24 | |
| 25 | Follow the same Steps 2-5 from the `/council` skill: |
| 26 | 1. Read the opinion files from $SESSION_DIR/stage1/ |
| 27 | 2. Synthesize as chairman (you have the original question + new opinions) |
| 28 | 3. Save synthesis.json to $SESSION_DIR/ |
| 29 | 4. Tell the user: |
| 30 | |
| 31 | > Open the viewer to compare original vs revisit side-by-side. |
| 32 | > |
| 33 | > **Next steps:** |
| 34 | > - Record outcome: `/council-outcome {SESSION_ID} "what happened"` |
| 35 | > - Browse all sessions: `/council-list` |