Documentation Index
Fetch the complete documentation index at: https://mintlify.com/xantorres/repokernel/llms.txt
Use this file to discover all available pages before exploring further.
rk team status is RepoKernel’s answer to “what is each agent doing right now?” — a single command that joins runtime data from run files, declared state from the registry, and operational lane state into one coherent snapshot. Instead of grep-ing log files across four terminal tabs, you get runs, sprints, registry health, and current bottlenecks in one place.
What the dashboard shows
Runningrk team status produces output like this:
Runs
Each row in the Runs section represents one active run:| Column | Meaning |
|---|---|
STATUS | running / paused / completed / failed / aborted |
ACTIVE | Number of sprints currently in flight for this run |
READY | Sprints in the queue, eligible to dispatch |
REVIEW | Sprints awaiting a review verdict |
STARTED | Wall-clock start time |
ETA | Derived from elapsed time, completed-sprint count, and remaining work |
Sprints
The Sprints section shows a per-sprint snapshot. TheAGENT column resolves to whichever run owns the active claim. PROGRESS is exact when run.limit is set, and shows a raw sprint count otherwise.
Registry health
| Field | Meaning |
|---|---|
health | OK / DEGRADED (P1 findings present) / BLOCKED (P0 or threshold-meeting findings) |
ready_to_merge | true only when health is OK |
conflicts | Count of P0 findings (true blockers) |
files_changed | Count of files carrying findings across P0+P1+P2 — surfaces triage volume |
Bottlenecks
The Bottlenecks section lists conditions that are actively blocking forward progress:S-NNN: awaiting_review— review verdict outstandingS-NNN: blocked_by S-MMM— declared dependency unmetE-NNN: K concurrent runs (lane saturated)— multiple runs in flight on the same epic
Flags
JSON output
--json emits a stable, Zod-validated envelope (TeamStatusSchema in @repokernel/core) suited for dashboards and agent chaining:
Project-level views
Beyondrk team status, RepoKernel ships several commands for per-entity inspection.
rk report
rk report prints a lean project snapshot directly to your terminal: a headline, the next runnable sprint, sprint groups by status, and active findings.
Per-entity list commands
For focused inspection, use these targeted list commands:--json for machine-readable output.
Data sources
The dashboard composes data from three independent sources:- Run files (live) — the active run records under
<git-common-dir>/repokernel/ - Registry (declared state) —
.repokernel/registry.json, the merged view of all sprint and epic state - Operational lane state — per-lane claim and queue files
rk team status gives you an accurate picture even when multiple agents are running simultaneously on different branches.