Skip to content

Runbook

Fresh

Source: bible/runbook.md

Literal commands for running and operating Ghost Engine. Sister to Concepts (shape and intent) and Quick Reference.

Triage: first action every session

bash
# 1. Is ghost engine alive?
curl -s http://localhost:4700/health

# 2. How many routes are registered?
curl -s http://localhost:4700/routes | python3 -c "import sys,json; print(len(json.load(sys.stdin)['data']))"
# Expected: 704

# 3. Account store healthy?
curl -s http://localhost:4700/accounts/army-status

Daily heartbeat

CheckCommandExpected
Engine healthcurl http://localhost:4700/health{"success":true,"engine":"ghost"}
Route countcurl http://localhost:4700/routes704
Account storecurl http://localhost:4700/accounts/army-statusCounts by status/phase
Active browserscurl http://localhost:4700/browserList
Campaignscurl http://localhost:4700/campaignsActive campaigns
Schedulescurl http://localhost:4700/schedulesActive schedules

Pages in this section