Agents often stop for social reasons — “want me to continue?”, multi-choice offers, or a fake checkpoint — while the real task is unfinished. Power Claude Auto-Nudge classifies those trivial stops and continues; Objective Mode keeps the north-star goal sticky across nudges.
TL;DR
| Mode | Purpose |
|---|---|
| Auto-Nudge | Deterministic (and optional LLM) continue-on-trivial-stop |
| Objective Mode | Keep the user objective latched for long runs |
| Shadow mode | Log would-fire decisions without resuming |
| Loop guard | Cap consecutive nudges so you don’t ping-pong |
The problem it solves
Claude Code is polite. Polite agents:
- Ask permission to continue
- Offer multi-choice menus
- Promise “next I’ll…” and stop
- Restate the plan and park
That’s fine for interactive pair-programming. It’s death for unattended loops. Auto-Nudge is the productized answer to “just say continue.”
How to enable
- Settings →
powerClaude.autoNudge.enabled(default on in current builds — verify). - Set aggressiveness:
conservative·balanced·aggressive. - Review per-nudge toggles (
powerClaude.autoNudge.nudges) — high-confidence patterns default on; lower-confidence off. - Optional:
shadowMode: truefor a week; read~/.power-claude/logs/events.jsonl. - Optional:
objectiveMode: truefor long goal runs. - Feature discovery can toast suggestions when disabled nudges would have helped.
Safety rails
- Loop guard (
loopGuardMax) stops infinite nudge ping-pong. - LLM fallback is optional, cost-bounded (Haiku-class by default).
- Kill switch still wins:
~/.power-claude/state/emergency-off. - Nudge ≠ rewake after hard usage limits — see Auto-Resume.
Recommended first week
- Shadow mode on.
- Run real work.
- Inspect which nudges would fire.
- Enable only the patterns you trust.
- Turn shadow off.
FAQ
Will it skip real questions I wanted to answer?
That’s what aggressiveness + per-nudge toggles are for. Start balanced; disable patterns that steal control.
Is Objective Mode required?
No. It’s for multi-hour “finish this epic” runs. Interactive coding can leave it off.
Related
Primary sources
- Settings under
powerClaude.autoNudge.* - Video:
media/video/scenes/auto-nudge/,objective-mode/ - Feature notes:
docs/features/auto/resume/nudges.md
Independent third-party software by Neural-LLM. Not affiliated with Anthropic.