Operator Digest
Goal
The Partner Digest is the recurring briefing that keeps an operator informed about who owns which production partner thread, what is overdue, what meetings are impending, and where the queue is potentially unhealthy. It replaces spreadsheets and ad-hoc reminders with a reproducible snapshot that can be emailed, exported, or reviewed inside the dashboard.
Concepts
- Window: Spotlight partner threads touched in the last
Ndays (default7) while keeping the digest readable. - Action items: Prioritized rows per partner request that factor in reminders, meetings, stage age, and next actions.
- Owner filtering: Narrow the digest to a specific operator before shipping it to email.
- Redaction-safe summary: The digest output avoids leaking internal notes or sensitive inbox links.
Workflow
- Query
GET /admin/partner-digest?days=7&owner=ops@example.comto see the current queue, urgency scores, and the markdown preview. - Use the dashboard’s Partner Ops page to view the same action items, healthy/critical partner rows, and the weekly digest preview card.
- Deliver the digest via
POST /admin/partner-digest/deliverwhen the window should hit an inbox; includedays,owner, and theemailof the stakeholder who needs the reminder. - Operators can copy the markdown preview from the UI or download it via the
/admin/partner-digest?format=markdownendpoint for manual sharing.
Automated follow-ups
- When a partner thread has a follow-up due, meeting soon, or is stale, it appears high in the action queue and contributes to the
due nowmetric. - Each digest run records the most recent
reminderAt,nextMeetingAt, andnextActiontimestamps so owners can see why the row was flagged. - The digest plays well with the Operator Alert flows—alerts now carry links to the affected partner record, so clicking from
/alertsopens the right beta request.
Operator readiness
Operators should add the digest delivery to their weekly cadence. The reproducible path now lives at npm run production:digest, which exercises the digest endpoint, records the action queue, and attempts delivery when SMTP or Resend is configured.
For release documentation, capture who owns the digest, how often it runs, and what follow-up thread or partner list it touches. The repo-visible evidence file is reports/1.0.0-operator-digest.md.