From aeon-loop
Pause the loop after current iteration completes. Workers finish their tasks then stop.
npx claudepluginhub theglitchking/aeon-loop --plugin aeon-loop# Pause Command Pause the autonomous loop gracefully. Current work completes, then loop stops. ## Usage ## Execution ## Behavior - Current iteration completes normally - Active workers finish their current chunk - No new workers are spawned - Loop state is preserved - Resume with `/resume` to continue from where you left off
/pauseSaves optional notes to .vbw-planning/RESUME.md with timestamp and resume hint, pauses session with confirmation banner. State auto-persists; requires /vbw:init.
/pausePauses the session: consolidates memory, syncs documentation, saves orchestration data, reports task status, persists git state to JSON for resume.
/pausePauses the current Alfred development session via Python helper or manual mode, producing handoff JSON/MD files, updating state with pause info for resumption.
/pausePauses the orchestrator gracefully after the current task completes by creating a pause flag file, updating project state, and displaying confirmation with resume instructions.
/pauseSaves the current Claude Code session state for later resumption, preserving your work and context exactly as-is.
/pausePause fitness breaks — for deep focus, calls, or demos. Breaks resume automatically or with /clawdbod:resume.
Pause the autonomous loop gracefully. Current work completes, then loop stops.
/pause
#!/bin/bash
if [[ ! -f ".claude/loop-state.md" ]]; then
echo "No active loop to pause."
exit 0
fi
# Check current state
ACTIVE=$(sed -n '/^---$/,/^---$/{ /^---$/d; p; }' ".claude/loop-state.md" | \
grep "^active:" | sed 's/active: *//')
if [[ "$ACTIVE" == "paused" ]]; then
echo "Loop is already paused."
echo "Run /resume to continue."
exit 0
fi
if [[ "$ACTIVE" != "true" ]]; then
echo "Loop is not running (status: $ACTIVE)"
exit 0
fi
# Set to paused
sed -i 's/^active: true/active: paused/' ".claude/loop-state.md"
echo "LOOP PAUSED"
echo ""
echo "Current iteration will complete, then loop stops."
echo "Active workers will finish their current tasks."
echo ""
echo "To resume: /resume"
echo "To stop permanently: /abort then delete .claude/loop-state.md"
/resume to continue from where you left off