dashboard
/dashboard — Harness Observability Dashboard
When to Use
- "What's happening?" / "Status?" / "What's going on?"
- "Show activity" / "Show me the dashboard"
- After returning to a project after time away
- When /do routes "status", "dashboard", "what's happening", "what's going on", "show activity"
- Directly:
/dashboard
Inputs
None required. Works with whatever state exists on disk.
Protocol
Step 1: COLLECT STATE
Read the following sources. Each is optional — if a file or directory doesn't exist, treat it as empty. Never crash on missing state.
Campaigns:
- Glob
.planning/campaigns/*.md - For each file, read the first 40 lines to extract:
Status:fieldDirection:field (truncate to 60 chars)- Phase progress (search for
Phase N of Mor## Phaseheadings) - Most recent line starting with
- [from the Decision Log
Cost Data (two sources, prefer real):
- Primary: run
node scripts/session-tokens.js --todayand--all— reads Claude Code's native session JSONL for exact token counts - Fallback: read
.planning/telemetry/session-costs.jsonl; cost priorityreal_cost>override_cost>estimated_cost; group bycampaign_slug, sum cost/agents/minutes, compute grand total - Live session: read
.planning/telemetry/cost-tracker-state.jsonfor burn rate - Label real data "(real)" and estimates "(est)"
Fleet Sessions:
- Glob
.planning/fleet/session-*.md - For each file, read the first 30 lines to extract:
status:fieldwave:or wave numberagents:or agent count
Recent Telemetry:
- Read last 50 lines of
.planning/telemetry/hook-timing.jsonl(if it exists) - Read last 50 lines of
.planning/telemetry/audit.jsonl(if it exists) - Merge and sort by timestamp (descending). Take the 10 most recent entries.
- For each entry: extract
ts(ortimestamp),hook(orevent), and a short description field. Format as relative time.
Recent Hook Activity (separate from general telemetry):
- Read last 20 lines of
.planning/telemetry/hook-timing.jsonl - For
event: "timing"entries: extracthook,duration_ms,timestamp(relative), andoutcome(pass if no matching error in hook-errors.jsonl within 1s; block if a block entry exists) - For
event: "counter"entries: extract metric name as the "event" column with count context
Pending Queues:
- Count lines in
.planning/telemetry/doc-sync-queue.jsonl(or 0 if missing) - Count lines in
.planning/telemetry/merge-check-queue.jsonl(or 0 if missing) - Count files in
.planning/intake/(or 0 if missing)
Hook Value Data (for HOOKS VALUE section):
- Read
.planning/telemetry/hook-errors.jsonl(if it exists, last 200 lines)- Count entries where
hook= "protect-files" (blocked file access) - Count entries where
hook= "external-action-gate" (gated external actions) - Count entries where
hook= "quality-gate" (quality violations)
- Count entries where
- Read
.planning/telemetry/hook-timing.jsonl(if it exists, last 200 lines)- Count entries where
hook= "circuit-breaker" andmetric= "trips" - Count total entries from today (entries containing today's ISO date prefix)
- Count entries where
- Read
.planning/telemetry/audit.jsonl(if it exists, last 200 lines)- Count entries mentioning "circuit-breaker" or "circuit_breaker"
Health:
- Count circuit breaker entries from audit.jsonl (from hook value data above)
- Count total lines in
.planning/telemetry/audit.jsonlwritten today - Count entries in
hooksarray of.claude/hooks-template.json(or.claude/hooks.jsonif template not present); use 0 if neither exists - Read
.claude/harness.json→trustobject:sessions_completed,campaigns_completedcounters- Compute level: novice (sessions < 5), familiar (5-19), trusted (20+ with 2+ campaigns)
- If
trust.overrideis set, use that and note "(override)"
Step 2: FORMAT RELATIVE TIMESTAMPS
Convert ISO timestamps: <60s → "just now" | <60min → "{N} min ago" | <24h → "{N} hr ago" | else → "{N} days ago". Display unparseable timestamps as-is.
Step 3: RENDER DASHBOARD
Output verbatim, substituting real values. Always show section headers even when content is "(none active)".
=== Citadel Dashboard ===
As of: {relative timestamp of most recent event, or "now"}
CAMPAIGNS
{slug}: Phase {N}/{total} — {direction, max 60 chars, ellipsis if truncated}
Last event: {most recent telemetry entry for this campaign, or "no telemetry"}
(none active)
COSTS
This session: ${cost} | {duration} min | ${rate}/min | {messages} msgs | {agents} agents
Today: ${today_total} across {today_sessions} sessions
All time: ${all_time_total} across {all_time_sessions} sessions ({data_source})
By campaign:
{slug}: ${total_cost} across {sessions} sessions ({agents} agents, {minutes} min)
_unattached: ${total_cost} across {sessions} sessions
(no cost data recorded yet)
HOOKS VALUE
Circuit breaker: {N} trips (prevented token spirals)
Quality gate: {N} violations caught pre-commit
Protect-files: {N} blocks (path traversal, secrets)
External gate: {N} actions gated
Total hook fires today: {N}
(raw facts only -- no inflated savings claims)
FLEET SESSIONS
{slug}: Wave {N} — {agent count} agents — {status}
(none active)
RECENT ACTIVITY (last 10 events)
{relative time} | {hook/event name} | {description}
(no telemetry recorded yet)
HOOK ACTIVITY (last 10 hook fires)
{relative time} | {hook name} | {duration_ms}ms | {outcome: pass/block/warn}
(no hook timing recorded yet — set CITADEL_DEBUG=true in settings.json for verbose output)
PENDING
Doc sync: {N} items queued
Merge reviews: {N} items queued
Intake items: {N} in .planning/intake/
HEALTH
Circuit breaker trips this session: {N}
Audit entries today: {N}
Hooks installed: {N}
Trust level: {novice | familiar | trusted} ({N} sessions, {N} campaigns)
QUICK COMMANDS
/do continue — resume active campaign
/do rollback — restore last checkpoint
/telemetry — cost breakdown, hook activity, telemetry settings
/triage prs — review open PRs
/pr-watch — watch PR CI
/learn — extract patterns from last completed campaign
Step 4: FRINGE CASE HANDLING
.planning/ missing: All zeros, "(none active)"; add "Run /do setup to initialize."
harness.json missing or malformed: Show "not configured" for hooks count; do not crash.
Malformed campaign file: Skip it; note (N campaign file(s) skipped — malformed).
Large telemetry files: Read last 50 lines only.
Missing timestamps: Fall back to file modification time; display entry without timestamp if unavailable.
All campaigns completed: Note "No active campaigns" at top of CAMPAIGNS section.
All fleet sessions idle: Note "No active fleet sessions" under FLEET SESSIONS.
Mixed state: Proceed with whatever state exists; note each missing directory inline.
Contextual Gates
Disclosure: "Displaying harness dashboard. No files modified." Reversibility: green — read-only; no files modified Trust gates:
- Any: view the full dashboard
Quality Gates
- Dashboard must render even when all state files are missing
- Never display raw JSON to the user — always parse and format
- Relative timestamps required — never show raw ISO strings in output
- Campaign direction truncated to 60 chars with "..." if longer
- Total output must be skimmable in under 30 seconds
Exit Protocol
/dashboard does not produce a HANDOFF block. It is a read-only observability tool. After displaying the dashboard, wait for the next user command.