router-healthlisted
Install: claude install-skill glitchwerks/claude-wayfinder
# Router Health Skill
You are reporting on the health of the deterministic-dispatch router. This is
a **read-only** skill — never mutate state, logs, or the catalog.
## What this skill does
1. Runs `python -m claude_wayfinder health --report`.
2. Prints the report verbatim.
3. Adds an **Analysis** section with drill-down on any FAIL'ing or
near-threshold metric.
4. Adds an extended **Notable Findings** section with qualitative
observations from `dispatch-log.jsonl` (top agents, top skills, catalog
freshness) that complement the script's built-in Notable Findings.
If invoked with `--brief`, skip step 2 and produce only Analysis + extended
Notable Findings. Useful for mid-session quick checks where the user does
not need the full report.
## Path resolution
The script (`claude_wayfinder._health.main`) resolves each path argument via
env var override or ``~/.claude/...`` home-dir default (Issue #262). Explicit
flags always win; passing no flag is equivalent to the default shown below.
| Argument | Env var override | Default (when env var absent) |
| ------------------------- | ----------------------------- | -------------------------------------------- |
| `--drift-log` | `$ROUTER_DRIFT_PATH` | `~/.claude/state/router-drift.jsonl` |
| `--dispatch-log` | `$DISPATCH_LOG` | `~/.claude/state/dispatch-log.jsonl` |
| `--catalog-path` | `$DISPATCH_CATALOG_PA