npx claudepluginhub george11642/george-plugins --plugin autopilotDefined in hooks/hooks.json
{
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "if [ -f .autopilot/mission.json ] && grep -q '\"active\"' .autopilot/mission.json 2>/dev/null; then echo '## Autopilot Session Active'; echo ''; cat .autopilot/handoff.md 2>/dev/null || echo 'No handoff notes.'; echo ''; echo '---'; echo 'Progress:'; grep -o '\"status\"[[:space:]]*:[[:space:]]*\"[^\"]*\"' .autopilot/progress.json 2>/dev/null | sort | uniq -c || echo 'No progress data.'; fi",
"timeout": 5
},
{
"type": "command",
"command": "bash \"$CLAUDE_PLUGIN_ROOT/scripts/install-autonomous-ops.sh\"",
"timeout": 5000
}
]
}
]
}"Executes bash script $CLAUDE_PLUGIN_ROOT/hooks/op-resolver-startup.sh on SessionStart for all sessions. Runs external bash commands with 30s timeout; no file writes."