🚧 Expanding soon — full Daily Report documentation is in progress.
What is the Daily Report?
The Daily Report is a structured summary of everything that happened in the last 24 hours. It’s generated by the consigliere every morning and delivered to your inbox, your workspace, and optionally your Slack.
Every report includes:
- Revenue summary — What came in, from which source, attributed to which agent move
- Agent activity — What each capo did, how many moves executed, what was blocked
- Approval queue summary — What’s waiting for your decision
- Signal scoring — New leads scored, existing leads updated, Trust Intelligence updates
- Cost ledger — Any spend events in the last 24h
- Guardian state — Any blocked moves, escalations, or standing order violations
- Tomorrow’s queue — What’s planned for the next 24h pending your review
Sample report
BOSSMODE DAILY REPORT
Yesterday: April 12, 2026
────────────────────────────────────────
REVENUE
Stripe inbound: $1,247.00
Attributed to: capo_marketing (email sequence, day 3)
Pipeline moved: 2 leads → discovery call
AGENT ACTIVITY
Directives executed: 4
Moves approved: 3
Moves blocked: 1 (exceeded pricing threshold — awaiting approval)
Emails drafted: 2 (in queue for your review)
TRUST INTELLIGENCE
Scores completed: 7 new leads
Average score: 58 (Moderate Trust)
Top gap across cohort: Specificity
APPROVALS WAITING
[1] Pricing page copy update — Review by 5pm today
[2] Follow-up email to cold lead batch — Low urgency
GUARDIAN
Status: Guardrailed
Pending moves: 2
────────────────────────────────────────
Reply to this email or log into bossmode.ing/app to take action.
Accessing the report via API
curl -sH "x-bossmode-token: $BOSSMODE_API_TOKEN" \
https://bossmode.ing/api/pro/reports/daily | jq
# Specific date
curl -sH "x-bossmode-token: $BOSSMODE_API_TOKEN" \
"https://bossmode.ing/api/pro/reports/daily?date=2026-04-12" | jq
Delivery channels
| Channel | Default | Notes |
|---|
| Email | On | Delivered by 7am operator timezone |
| BossMode workspace | On | Always available at /app |
| API | On | Pull anytime via /api/pro/reports/daily |
| Slack | Off | Configure in Settings → Integrations |
Report history
Reports are retained for 90 days on the Pro plan, 1 year on Enterprise.
curl -sH "x-bossmode-token: $BOSSMODE_API_TOKEN" \
"https://bossmode.ing/api/pro/reports?limit=30" | jq