Skip to content

Overview

contox_oncall_view provides a quick project health check. It shows recent sessions, stale draft contexts (older than 7 days), recent bugs, and overall brain health statistics. This is useful for getting a snapshot of project activity and identifying items that need attention.

Parameters

NameTypeRequiredDefaultDescription
sincestringNoLast 24 hoursISO date string to filter data since this time

Return value

Returns a formatted markdown report including:

  • Recent sessions — Sessions that occurred since the specified time
  • Stale drafts — Draft contexts that have not been updated in more than 7 days
  • Recent bugs — Bug entries recorded since the specified time
  • Brain health stats — Overall metrics about the brain (context count, token usage, etc.)

Usage examples

Quick health check

User: How's the project memory looking?

Claude calls: contox_oncall_view()

Response:
## On-Call View — Last 24h

### Recent Sessions (2)
- 2025-04-15 10:30: Implemented JWT authentication
- 2025-04-15 14:15: Fixed race condition in session refresh

### Stale Drafts (1)
- "Old migration notes" — last updated 12 days ago

### Recent Bugs (1)
- "Session refresh race condition" — fixed

### Health
- Total contexts: 23
- Approved: 18, Draft: 3, Deprecated: 2
- Estimated tokens: ~8,400

Checking the last week

Claude calls: contox_oncall_view({ since: "2025-04-08T00:00:00Z" })

Notes

  • When since is not provided, the default is the last 24 hours.
  • Stale drafts are always shown regardless of the since parameter, as they represent items that may need attention.
  • This tool is read-only and does not modify any data.