wisp-resume

wisp-resume is a skill for Claude Code from Samuel0101010/wisp-orchestrator. It costs 69 tokens per session (844 once invoked), scanned A, original, Apache-2.0.

A workflow for continuing a paused WISP run, which is a previously started harness task. It checks the local service, lists runs that can continue, and resumes the selected one.

In plain words
What is it for?
Use it to check for resumable runs, choose one when several exist, and continue a paused harness run.
Why use it?
It lets you recover unfinished work after a pause, rate limit, or earlier shutdown without starting the task again from the beginning.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

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

Good fit Use it to check for resumable runs, choose one when several exist, and continue a paused harness run.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/samuel0101010/wisp-orchestrator/wisp-resume
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 wisp-resume
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 wisp-resume

README.md
[![agentmods](https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/wisp-resume/github.svg)](https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/wisp-resume)
Your own site
<a href="https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/wisp-resume"><img src="https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/wisp-resume/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 wisp-resume

Your own site · 80×15
<a href="https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/wisp-resume"><img src="https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/wisp-resume.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 844 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00069 $0.00844
Opus 5 $0.00034 $0.00422
Sonnet 5 $0.00014 $0.00169
Haiku 4.5 $0.00007 $0.00084

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

Security

Grade A, and why

wisp-resume scanned grade A with 1 finding 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 10d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- bash: `curl -s http://127.0.0.1:${WISP_PORT:-4400}/api/health`
skills/wisp-resume/SKILL.md · 64 lines

How it starts

The opening of the file, as written. The whole thing — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.

WISP — Resume Run

Resume a paused harness run.

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.

Preflight

Health-check the server.

  • bash: curl -s http://127.0.0.1:${WISP_PORT:-4400}/api/health
  • PowerShell: Invoke-RestMethod -Uri "http://127.0.0.1:$($env:WISP_PORT ?? 4400)/api/health"

Bail with a friendly error if not 200 — tell the user to run /wisp-dashboard first.

Steps

  1. List resumable runs:

    # bash
    curl -s "http://127.0.0.1:${WISP_PORT:-4400}/api/runs?resumable=true"
    
    # PowerShell
    $port = if ($env:WISP_PORT) { $env:WISP_PORT } else { 4400 }
    Invoke-RestMethod -Uri "http://127.0.0.1:$port/api/runs?resumable=true"
    

    Response: {"runs": [{"id":"...", "planId":"...", "status":"paused", "pausedReason":"...", "resumeAt": ..., ...}]}.

  2. If 0 resumable runs: tell the user there's nothing to resume and stop.

  3. If 1 resumable run: confirm with the user briefly (one sentence summarising the run), then proceed to step 5.

  4. If 2+ resumable runs: list them with id, paused-reason, and (if present) resumeAt. Ask the user which one to resume.

  5. Resume the chosen run:

    # bash
    curl -s -X POST "http://127.0.0.1:${WISP_PORT:-4400}/api/runs/<runId>/resume"
    
    # PowerShell
    Invoke-RestMethod -Method Post -Uri "http://127.0.0.1:$port/api/runs/<runId>/resume"
    

    The response includes the resumed status. Print the run URL:

    http://127.0.0.1:${WISP_PORT:-4400}/projects/<projectId>/run/<runId>
    

Errors

  • 409 Conflict from /resume → the run is no longer paused (raced with another resume / completed in the meantime). Re-list and try again.
  • 503 from /resume → auth probe failed; tell the user to run claude login.

Notes

  • The ?resumable=true filter only surfaces runs that need an explicit resume action: shutdown-recovered runs (status='paused', pausedReason='shutdown') and abrupt-crash runs (status='running' with a stale heartbeat that the server rewrote on boot). Rate-limit pauses auto-resume when their resumeAt timer fires and only show up here AFTER a server restart that rewrites them to 'shutdown'.
  • A consecutive-failure pause and a manual /pause are NOT in this list during the same server lifetime — they live in GET /api/runs?status=paused. Use that endpoint when the user wants to resume one of those instead.
  • A rate-limit-paused run can be resumed BEFORE its resumeAt window if the user wants to test (it'll just hit the rate-limit again, but that's their call).

Read the full file on GitHub · 64 lines

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. 10d ago First seen · 64 lines · 69 tokens per session scan A 5714001e68db

Subscribe to this mod's changes

wisp-resume is a skill published in the GitHub repository Samuel0101010/wisp-orchestrator (4 stars, last pushed 6d ago), licensed Apache-2.0. It adds 69 tokens to every session and 844 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

improve

Autonomous quality improvement loop. Scores a target against a rubric, selects the highest-leverage axis, attacks it, verifies, documents, and loops. No pre-planning between iterations — each loop re-scores from scratch.

SethGammon/Citadel · 48 tokens

evolve

Research-driven multi-cycle improvement director. Forms causal hypotheses about why scores are low, validates them with scout agents before attacking, dispatches axis-parallel fleet attacks, extracts transferable patterns, and runs indefinitely within a budget envelope. Accumulates a persistent belief model and…

SethGammon/Citadel · 60 tokens

research

Focused research investigations. Converts questions into structured findings with confidence levels and source citations. Single agent by default; with --parallel (or when the question decomposes into 3+ independent angles) it spawns scout agents whose findings are compressed into a unified brief. Does not make…

SethGammon/Citadel · 67 tokens

watch

File sentinel that monitors the working directory for changes and marker comments, then auto-triggers appropriate skills. Poll-based via git diff against the last scan commit. Writes intake items for batch processing and routes marker actions through /do. Use for automatic reactions to file changes; do NOT use for…

SethGammon/Citadel · 70 tokens

pr-watch

Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.

SethGammon/Citadel · 46 tokens

triage

GitHub issue and PR investigator. Pulls open issues/PRs, classifies them, searches the codebase for root cause or reviews contributed code, proposes fixes with file:line references, and optionally implements fixes. Use for investigating GitHub issues and reviewing PRs; do NOT use for general code review unrelated to…

SethGammon/Citadel · 71 tokens