Appearance
Quick Reference: Commands
FreshSource: bible/runbook.md, bible/campaigns.md (Quick reference tables)
Every command in one table. Sister to the Runbook.
| Action | Command |
|---|---|
| Start engine | node server.mjs |
| Open dashboard | http://localhost:4700/ |
| Health check | curl http://localhost:4700/health |
| Route count | curl http://localhost:4700/routes |
| Launch browser | curl -X POST http://localhost:4700/browser/launch -H "Content-Type: application/json" -H "x-api-key: ghost-engine-key" -d '{"email":"...","headless":false}' |
| Ghost mode | Add "mode":"ghost","platform":"reddit" to launch body |
| Fire CTR (CLI) | node cli.mjs ctr --keyword "..." --domain "..." --city "..." --state "..." |
| Fire CTR (API) | POST /ctr/run with keyword, targetDomain, city, state |
| Batch CTR | POST /ctr/batch with configs array |
| Run campaign | node cli.mjs campaign --config file.json |
| List campaigns | GET /campaigns |
| Create schedule | node cli.mjs schedule create --campaign "..." --clicks-per-day 50 |
| List schedules | node cli.mjs schedule list or GET /schedules |
| Pause schedule | POST /schedules/:id/pause |
| Resume schedule | POST /schedules/:id/resume |
| Delete schedule | DELETE /schedules/:id |
| Autopilot on | POST /schedules/autopilot |
| Autopilot off | DELETE /schedules/autopilot |
| Check rank | node cli.mjs rank --keyword "..." --domain "..." --state "..." |
| Batch rank | POST /ranks/batch |
| Rank history | GET /ranks/report?keyword=...&domain=...&days=30 |
| Tracked keywords | GET /ranks |
| Run cascade | POST /cascade/run with title, body, targetUrl, brandName, keyword |
| Preview cascade | POST /cascade/plan |
| List accounts | node cli.mjs accounts list |
| Army status | curl http://localhost:4700/accounts/army-status |
| Lock account | POST /accounts/:id/lock |
| Quarantine | POST /accounts/:id/quarantine |
| Refresh cookies | POST /cookies/refresh or batch POST /cookies/refresh-batch |
| Vision click | POST /browser/:id/vision-click with instruction |
| Set mode | POST /browser/:id/set-mode |
| Mobile devices | GET /mobile/devices |
| Mobile connect | POST /mobile/connect with serial |
| Mobile tap | POST /mobile/:id/tap with x,y |
| List platforms | GET /social/platforms |
| Post to platform | POST /social/{platform}/post |
| All routes | curl http://localhost:4700/routes |
| Setup (import) | node cli.mjs setup --registry ... --cookies ... |
| Backup data | POST /backup/create |
| Restore data | POST /backup/restore |