npx claudepluginhub george11642/george-plugins --plugin autopilotGracefully stop a running autopilot session.
Check .autopilot/loop.pid exists and process is running.
Create .autopilot/STOP signal file (the loop script checks for this).
Wait up to 30 seconds for the current iteration to finish:
touch .autopilot/STOP
echo "Stop signal sent. Waiting for current iteration to finish..."
If user passes --force, kill the process directly:
kill $(cat .autopilot/loop.pid) 2>/dev/null
Show final status using the same dashboard as /autopilot-status.
Update mission.json status to "stopped".