Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage capo agents, issue directives, and monitor execution status via the Agents API.
curl -sH "x-bossmode-token: $BOSSMODE_API_TOKEN" \ https://bossmode.ing/api/pro/agents | jq
{ "agents": [ { "id": "capo_marketing", "role": "capo_marketing", "status": "active", "pendingDirectives": 1, "completedToday": 3, "lastExecutedAt": "2026-04-13T08:45:00Z" }, { "id": "capo_revenue", "role": "capo_revenue", "status": "awaiting-approval", "pendingDirectives": 0, "completedToday": 1, "lastExecutedAt": "2026-04-12T16:20:00Z" } ] }
curl -sX POST https://bossmode.ing/api/pro/directives \ -H "x-bossmode-token: $BOSSMODE_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "directive": "Identify the top 5 leads who haven't engaged in 14 days and draft a re-engagement sequence.", "capo": "capo_marketing", "priority": "medium", "requiresApproval": true, "context": { "segment": "warm-leads-14-day-stale" } }'
directive
capo
priority
"high"
"medium"
"low"
requiresApproval
true
context
deadline
curl -sH "x-bossmode-token: $BOSSMODE_API_TOKEN" \ https://bossmode.ing/api/pro/directives/{directive_id} | jq
capo_marketing
capo_revenue
capo_ops
capo_product
ceo