audit-orphan-runs
Identifies abandoned worktrees and stale runs (no events for >2h, status=running) to flag for cleanup.
Use when a WISP run failed unexpectedly or is stuck — fetches the event timeline for a run, highlights failures, and prints the verify-failed payloads with full output so the user can see exactly why a task failed. Trigger on phrases like "why did the run fail", "diagnose the
$ npx -y skills add Samuel0101010/wisp-orchestrator --skill wisp-diagnose --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/wisp-diagnoseContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when a WISP run failed unexpectedly or is stuck — fetches the event timeline for a run, highlights failures, and prints the verify-failed payloads with full output so the user can see exactly why a task failed. Trigger on phrases like "why did the run fail", "diagnose the
name: wisp-diagnose description: Use when a WISP run failed unexpectedly or is stuck — fetches the event timeline for a run, highlights failures, and prints the verify-failed payloads with full output so the user can see exactly why a task failed. Trigger on phrases like "why did the run fail", "diagnose the harness", "what went wrong with the run".
Inspect a run's event timeline to figure out what failed and why.
> **Platform note**: snippets below show both bash and PowerShell forms. Pick the one matching the user's shell. The bash form also runs from Git Bash / WSL on Windows.
1. **Fetch the events**:
# bash
curl -s "http://127.0.0.1:${WISP_PORT:-4400}/api/runs/<runId>/events?limit=500" # PowerShell
$port = if ($env:WISP_PORT) { $env:WISP_PORT } else { 4400 }
Invoke-RestMethod -Uri "http://127.0.0.1:$port/api/runs/<runId>/events?limit=500"Response: `{"events": [{"type":"...", "payload":..., ...}, ...]}` ordered oldest-first.
2. **Show the timeline**, condensed: print one line per event of interest. Skip noisy types (`task.text-delta`, `task.usage` — print usage totals at the end instead). Format:
<timestamp> <event type> <task id> <one-line summary>
3. **Highlight failures**: for each `task.failed`, `harness.verify-failed`, `qa.replan-triggered`, `qa.replan-exhausted`, `rate-limit.hit`, `run.paused` event, print the FULL payload (not a one-liner). Especially:
4. **Token & duration totals**: query `/api/runs/<runId>` to get the per-task token/turn totals. Print as a small table.
5. **Verdict**: in 1-2 sentences, summarise WHY the run failed (or what it's currently stuck on). Quote a specific event payload as evidence.
| Type | Means | |---|---| | `task.started` | A task subprocess began | | `task.completed` | The subprocess returned (regardless of verify result) | | `harness.verify-failed` | The verify gate (build/test/lint/custom/preflight) rejected the task; full failures + output payload | | `task.failed` | Terminal failure; subsequent dependent tasks were cancelled | | `qa.replan-triggered` | M5 — QA failure caused the walker to swap in a new plan | | `qa.replan-exhausted` | M5 — replan cap hit OR replan callback returned null | | `rate-limit.hit` | A subprocess hit a Claude rate limit; usually followed by `run.paused` | | `run.paused` | Walker paused (rate-limit / user / shutdown / consecutive-failures) |
Visual team-builder, plan-as-artifact, and live execution graph for autonomous Claude Code agent crews. Spawn a 3-role team, generate a DAG plan, run for hours, watch it ship in your browser.
Repo: Samuel0101010/wisp-orchestrator
Identifies abandoned worktrees and stale runs (no events for >2h, status=running) to flag for cleanup.
Drafts a docs/solutions/YYYY-MM-DD-<slug>.md entry for a recently completed run, capturing problem/solution/lessons.
Working discipline for code-writing agents — read before edit, smallest correct change, run the gates before claiming done. Injected into builder roles' system…
Conducts focused research on a topic by reading project files, searching memory, and synthesizing findings into a structured report.
Self-diagnostics for the harness — checks DB integrity, MCP wiring, claude binary availability, and recent run failures.
Visual + interaction quality bar for frontend roles — states, responsiveness, accessibility, consistency. Injected into frontend roles' system prompts.