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
| Flag | Description | Required | Default |
|---|---|---|---|
--since <date> | Show data since this date (ISO 8601 format) | No | last 24 hours |
--json | Output in JSON format | No | false |
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:
| Section | Description |
|---|---|
| Recent sessions | Sessions saved within the time window, with summaries |
| Stale drafts | Draft contexts that have been pending for more than 7 days |
| Recent bugs | Bug entries logged within the time window |
| Brain health | Overall 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
--jsonflag is useful for integrating oncall checks into monitoring dashboards or CI pipelines.