Appearance
Runbook
FreshSource: 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-statusDaily heartbeat
| Check | Command | Expected |
|---|---|---|
| Engine health | curl http://localhost:4700/health | {"success":true,"engine":"ghost"} |
| Route count | curl http://localhost:4700/routes | 704 |
| Account store | curl http://localhost:4700/accounts/army-status | Counts by status/phase |
| Active browsers | curl http://localhost:4700/browser | List |
| Campaigns | curl http://localhost:4700/campaigns | Active campaigns |
| Schedules | curl http://localhost:4700/schedules | Active schedules |
Pages in this section
- Commands: every command with examples
- Troubleshooting: common failures and fixes
- Recovery Recipes: step-by-step recovery from incidents