Skip to content

contox oncall

View an operational summary of your project. This command gives you a quick health check, showing recent activity, potential issues, and overall brain status.

Usage

bash
contox oncall [options]

Options

FlagDescriptionRequiredDefault
--since <date>Show data since this date (ISO 8601 format)Nolast 24 hours
--jsonOutput in JSON formatNofalse

Examples

View the last 24 hours of activity:

bash
contox oncall

View activity since a specific date:

bash
contox oncall --since 2025-01-15

Get JSON output for scripting:

bash
contox oncall --json

What it shows

The oncall summary includes four sections:

SectionDescription
Recent sessionsSessions saved within the time window, with summaries
Stale draftsDraft contexts that have been pending for more than 7 days
Recent bugsBug entries logged within the time window
Brain healthOverall statistics about the project brain (total contexts, approved vs draft, coverage)

Notes

  • This command is useful for team leads or developers coming back to a project after time away. It gives a quick picture of what happened and what needs attention.
  • Stale drafts (older than 7 days) may indicate contexts that were auto-generated but never reviewed. Consider approving or deleting them.
  • The --json flag is useful for integrating oncall checks into monitoring dashboards or CI pipelines.