From autopilot
Check autonomous loop progress, completed tasks, and current state.
How this command is triggered — by the user, by Claude, or both
Slash command
/autopilot:autopilot-statusThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /autopilot-status Check the status of a running or completed autopilot session. ## What to do 1. Check if `.autopilot/` exists. If not, tell user no autopilot session found. 2. Read `.autopilot/mission.json` and `.autopilot/progress.json`. 3. Check if the loop process is still running: 4. Display a concise dashboard: - **Mission**: The goal - **Mode**: mission/improve/execute/research - **Status**: Running / Stopped / Complete - **Progress**: X/Y tasks complete - **Current iteration**: N - **Runtime**: HH:MM since start - **Commits made**: N (list recent 5) ...
Check 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.
npx claudepluginhub george11642/george-plugins --plugin autopilot/loop-statusChecks active loop status, progress, failure signals, and suggests interventions. Supports --watch flag and a cross-session CLI.
/loop-pulseChecks active loop status from .loophaus/state.json or legacy file, displaying iteration, promise, PRD stories progress if prd.json exists, and last 5 lines of progress.txt.
/buidl-statusDisplays The Loop's current state including session status, phases, cycles, build scores, findings, ABI lock, learning health, mutation coverage, and orphaned worktrees.
/pipeline-statusDisplays agent pipeline execution status for current session: agents run, statuses, timestamps, durations, tools used, and pipeline completeness from JSON log.