Check autonomous loop progress, completed tasks, and current state.
From autopilotnpx claudepluginhub george11642/george-plugins --plugin autopilotCheck the status of a running or completed autopilot session.
Check if .autopilot/ exists. If not, tell user no autopilot session found.
Read .autopilot/mission.json and .autopilot/progress.json.
Check if the loop process is still running:
if [ -f .autopilot/loop.pid ]; then
kill -0 $(cat .autopilot/loop.pid) 2>/dev/null && echo "RUNNING" || echo "STOPPED"
fi
Display a concise dashboard:
Show last 10 lines of .autopilot/log.md for recent activity.
If there are errors, suggest running /autopilot-resume to retry.