audit-orphan-runs

audit-orphan-runs is a skill for Claude Code from Samuel0101010/wisp-orchestrator. It costs 31 tokens per session (182 once invoked), scanned A, original, Apache-2.0.

A report that finds abandoned Git worktrees, separate working directories linked to a repository, and WISP runs that appear stuck.

In plain words
What is it for?
Use it to list worktrees without matching runs, find running runs with no events for more than two hours, and produce cleanup commands. It does not execute cleanup.
Why use it?
It helps identify leftover work and running processes that have stopped producing events and may need attention.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

Part of the wisp plugin — 12 skills, 1 command, 4 agents, 6 hooks shipped together

Good fit Use it to list worktrees without matching runs, find running runs with no events for more than two hours, and produce cleanup commands. It does not execute cleanup.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/samuel0101010/wisp-orchestrator/audit-orphan-runs
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Samuel0101010/wisp-orchestrator --skill audit-orphan-runs
Clone the repo
git clone --depth 1 https://github.com/Samuel0101010/wisp-orchestrator

Made for: Claude Code.

Or install wisp, the plugin that ships this one along with the rest of its 12 skills, 1 command, 4 agents, 6 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for audit-orphan-runs

README.md
[![agentmods](https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/audit-orphan-runs/github.svg)](https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/audit-orphan-runs)
Your own site
<a href="https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/audit-orphan-runs"><img src="https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/audit-orphan-runs/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for audit-orphan-runs

Your own site · 80×15
<a href="https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/audit-orphan-runs"><img src="https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/audit-orphan-runs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 182 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.00182
Opus 5 $0.00015 $0.00091
Sonnet 5 $0.00006 $0.00036
Haiku 4.5 $0.00003 $0.00018

Measured 11d ago against content hash 0e2a9e22785f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

audit-orphan-runs scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

apps/dashboard-server/src/skills/seed/audit-orphan-runs/SKILL.md · 18 lines

What it actually says

You are an audit specialist:

  1. Run git worktree list to enumerate worktrees
  2. For each worktree path, check if a corresponding run exists (look in data/harness.db via the orchestrator)
  3. Report:
    • Orphan worktrees (no run):
    • Stale runs (no events >2h, status=running):
    • Recommended cleanup commands: <git worktree remove <path> lines>

Do NOT execute cleanup. Output the report only.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 18 lines · 31 tokens per session scan A 0e2a9e22785f

Subscribe to this mod's changes

audit-orphan-runs is a skill published in the GitHub repository Samuel0101010/wisp-orchestrator (4 stars, last pushed 7d ago), licensed Apache-2.0. It adds 31 tokens to every session and 182 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

postmortem

Auto-generates a structured postmortem from a completed campaign. Reads the campaign file, telemetry logs, and feature ledger. Produces a documented analysis of what broke, what the safety systems caught, and what patterns emerged. Can also be invoked manually for any incident.

SethGammon/Citadel · 58 tokens

systematic-debugging

4-phase root cause analysis: observe, hypothesize, verify, fix. Enforces investigation before any code changes. Emergency stop after 2 failed fixes. Prevents shotgun debugging and fix cascades.

SethGammon/Citadel · 45 tokens

root-cause

Find the mechanism behind a failure instead of patching its symptom - reproduce first, one variable per experiment with the prediction written before the run, exit by naming the mechanism and pinning it with a failing test. Use for a bug, an unexplained red test, or a failure that will not reproduce.

jjanczur/tyran · 61 tokens

defect-hunting

Use when reviewing code, auditing an app, writing a guard rule or test, or certifying any threshold/constant/formula. Finds the defects a diff review structurally cannot see — the second write path, the mis-calibrated constant, the rule that cannot fail. Triggers from code-reviewer, /app-audit, qa-engineer…

vmobifystudio/app-dev-team · 96 tokens

mutation-testing

Use when adding or reviewing a gate, guard rule, CI grep, or test assertion in this plugin's own scripts — and whenever a suite is green and you need to know whether that means anything. Runs scripts/mutate.sh, which breaks the code on purpose and reports which assertions failed to notice. Triggers from code-reviewer…

vmobifystudio/app-dev-team · 83 tokens

performance-review

Use as a review dimension on any diff that could cost startup time, frames, memory, battery, bandwidth or bundle size — by code-reviewer during review and by web-developer and test-automation-engineer before claiming a UI or harness ticket done. The studio's position is that this is a dimension with existing auditors…

vmobifystudio/app-dev-team · 75 tokens