wisp-new-run

wisp-new-run is a skill for Claude Code from Samuel0101010/wisp-orchestrator. It costs 66 tokens per session (1,556 once invoked), scanned B, original, Apache-2.0.

A guided setup for starting a new WISP run, where WISP is a harness for coordinating agent work on a code project.

In plain words
What is it for?
Use it to create a project, optionally choose a template, generate a plan, start the run, and print its web address.
Why use it?
It turns a goal into a configured project and running agent process, while checking that the server and repository are ready.

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 create a project, optionally choose a template, generate a plan, start the run, and print its web address.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/wisp-new-run"><img src="https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/wisp-new-run.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,556 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00066 $0.01556
Opus 5 $0.00033 $0.00778
Sonnet 5 $0.00013 $0.00311
Haiku 4.5 $0.00007 $0.00156

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

Security

Grade B, and why

wisp-new-run scanned grade B with 2 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 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

curl -s -X POST http://127.0.0.1:${WISP_PORT:-4400}/api/projects/<projectId>/plan -H 'content-type: application/json' -d '{}'

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-new-run/SKILL.md · 119 lines

How it starts

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

WISP — New Run

Take the user from a freeform goal to a running harness execution.

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.

Inputs needed (ask the user if missing, do not guess)

  • Goal: what should the agents accomplish? (1-2 sentences)
  • Repo path: absolute path to the git repo to operate in (must exist + be a git repo)
  • Template: one of ts-library | python-backend | refactor-squad | data-pipeline | none
  • Project name: short identifier (kebab-case if possible)

Preflight

  1. Confirm the harness server is up.

    • 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"

    If it returns non-200 or refuses connection, tell the user to run /wisp-dashboard first to start the server, then re-run this skill.

  2. Confirm the repo path exists and is a git repo: git -C <repoPath> rev-parse --git-dir. If not, ask the user to fix the path or run git init in it.

Steps

  1. Create project:

    # bash / Git Bash
    curl -s -X POST http://127.0.0.1:${WISP_PORT:-4400}/api/projects \
      -H 'content-type: application/json' \
      -d '{"name":"<name>","goal":"<goal>","repoPath":"<repoPath>"}'
    
    # PowerShell
    $port = if ($env:WISP_PORT) { $env:WISP_PORT } else { 4400 }
    $body = @{ name = "<name>"; goal = "<goal>"; repoPath = "<repoPath>" } | ConvertTo-Json
    Invoke-RestMethod -Method Post -Uri "http://127.0.0.1:$port/api/projects" `
      -ContentType "application/json" -Body $body
    

    Capture id from the response — this is the projectId.

  2. Seed team from template (only if template != none):

    # bash + jq
    TEAM=$(curl -s http://127.0.0.1:${WISP_PORT:-4400}/api/team-templates \
      | jq -c --arg id <template-id> '.templates[] | select(.id==$id) | .team')
    curl -s -X PUT http://127.0.0.1:${WISP_PORT:-4400}/api/projects/<projectId>/team \
      -H 'content-type: application/json' \
      -d "$TEAM"
    
    # PowerShell (no jq needed — ConvertFrom-Json gives objects)
    $port = if ($env:WISP_PORT) { $env:WISP_PORT } else { 4400 }
    $tpl = Invoke-RestMethod -Uri "http://127.0.0.1:$port/api/team-templates"
    $team = ($tpl.templates | Where-Object { $_.id -eq "<template-id>" }).team
    Invoke-RestMethod -Method Put -Uri "http://127.0.0.1:$port/api/projects/<projectId>/team" `
      -ContentType "application/json" -Body ($team | ConvertTo-Json -Depth 20)
    

    If neither jq nor PowerShell is available, fetch the templates response into a Python or Node one-liner that prints just .team for the chosen id, then pipe that into the PUT body. Do NOT use --data-binary @<file> unless you've actually written the file first. If template == none: tell the user to open the dashboard and configure the team manually, then exit this skill (you cannot create a default team via API today — the dashboard handles defaults).

Read the full file on GitHub · 119 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 · 119 lines · 66 tokens per session scan B bcc8e8abcec7

Subscribe to this mod's changes

wisp-new-run is a skill published in the GitHub repository Samuel0101010/wisp-orchestrator (4 stars, last pushed 6d ago), licensed Apache-2.0. It adds 66 tokens to every session and 1,556 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, 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