$npx -y skills add yogirk/agent-council --skill council-nudgeNudge a specific agent to reconsider its opinion based on a corrected assumption. Sends the original question + response + correction to one agent and saves the updated opinion alongside the original for comparison.
| 1 | # Council Nudge |
| 2 | |
| 3 | Correct an assumption and re-run a single agent to see how their opinion changes. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | The user invokes `/council-nudge <session-id> --agent <agent> --correction "text"`. |
| 8 | |
| 9 | If the user doesn't provide a session ID, run `/council-list` first to show available sessions. |
| 10 | |
| 11 | ## Run |
| 12 | |
| 13 | Replace `{SESSION_ID}`, `{AGENT}`, and `{CORRECTION}` with the user's values. |
| 14 | |
| 15 | ```bash |
| 16 | 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")" |
| 17 | SLUG=$(basename "$(git rev-parse --show-toplevel 2>/dev/null || pwd)") |
| 18 | SESSION_DIR=$($COUNCIL_BIN nudge {SESSION_ID} --agent {AGENT} --correction "{CORRECTION}" --project "$SLUG") |
| 19 | echo "SESSION_DIR=$SESSION_DIR" |
| 20 | ``` |
| 21 | |
| 22 | ## After nudge |
| 23 | |
| 24 | Tell the user: |
| 25 | - The nudged opinion has been saved alongside the original |
| 26 | - Open the viewer to see the before/after comparison in the "Nudge History" tab |
| 27 | - They can nudge the same or different agents with additional corrections |
| 28 | |
| 29 | > **Next steps:** |
| 30 | > - Nudge another agent: `/council-nudge {SESSION_ID} --agent <other-agent> --correction "..."` |
| 31 | > - Browse sessions: `/council-list` |
| 32 | > - Open viewer: `open ~/.council/{project}/{session-id}/viewer.html` |