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.
> /plugin marketplace add Samuel0101010/wisp-orchestrator> /plugin install wisp@wisp-local
Repo: Samuel0101010/wisp-orchestrator
What's inside
Most agent UIs run a single agent in a chat box. Orchestrators hide the plan behind opaque internal state, and they stop existing the moment something fails. WISP is built for the case nobody else covers — drive a team of Claude agents for hours, watch the plan as a DAG you can edit before it runs, see the live preview of the app they're building, and write change-requests against the running result.
claude CLI; flip to WISP_AUTH_MODE=api for headless commercial use.Prerequisites:
git, Node 22/24 LTS, and theclaudeCLI onPATH. No GitHub account or SSH key needed — everything clones over plain HTTPS.
claude plugin marketplace add https://github.com/Samuel0101010/wisp-orchestrator.git
claude plugin install wisp@wisp-local
claude /wisp-dashboard # opens http://127.0.0.1:4400 in your browser
Then click New project, type a goal ("Build a Kanban board in React + Vite + Tailwind"), point it at an empty git repo, and hit Run. The dashboard streams the agent team building the app, the Preview tab shows it running live, and the iteration loop is one click away.
![]() | ![]() |
|---|---|
| Preview — proxied iframe of the running app, with click-to-pick visual edits. | Goal Planner — a standalone Goal-Oriented Action Planning sandbox (least-cost search). |
![]() | ![]() |
| Agents — registry of roles available to teams. | Chat — team conversation surface. |
![]() | ![]() |
| Prompt Bundles — cached bundles for re-use. | Settings — theme, language, selective data clearing. |
v2.0 — production-ready. The orchestrator drives full architect → dev → QA → review cycles against real Claude Max with variable team sizes, shared-memory MCP, built-in + user templates, automatic QA-replan, and a live dashboard with iteration loops, visual edit-mode, and proxied previews. See CHANGELOG.md for the full release history.
/preview/<projectId>/ so the iframe sees the running app via the same origin as the dashboard. Auto-reload when an iteration run completes; manual refresh button in the preview header.pnpm-lock.yaml or package.json, the orchestrator spawns a dedicated resolver agent to land a clean merge before continuing the parent run.endedAt ?? startedAt, and links into each run./wisp-* slash commands so the dashboard is optional: /wisp-new-run (goal → running execution), /wisp-resume (paused runs), /wisp-inspect (result branch + git log), /wisp-diagnose (event timeline).better-sqlite3, so the first-launch build needs no C++ toolchain)claude binary) on PATH~/.claude/ credentials and unsets ANTHROPIC_API_KEY so subprocesses never silently fall back to API billing)WISP invokes only the official claude binary as a subprocess. It
never reads ~/.claude/credentials, never extracts subscription OAuth tokens,
never calls api.anthropic.com endpoints directly, and actively unsets
ANTHROPIC_API_KEY before each spawn so subscription auth is the only path.
Subscriptions (Claude Pro / Max) are designed for personal use of the official
Claude products including Claude Code and its plugin/subagent system. Using
this plugin to run intensive headless workflows on a subscription account is
your responsibility under Anthropic's ToS. Balanced defaults
(maxParallel=2, budgetMinutes=120, interTaskPacingMs=5000,
autoResumeRateLimit=false) keep the traffic profile in line with intensive
human use rather than automated bulk usage. For commercial automation, set
WISP_AUTH_MODE=api and provide your own ANTHROPIC_API_KEY (paid per
token).
Two compliance test files (tests/compliance/) statically verify these
architectural commitments on every CI run. See
docs/anthropic-compliance.md for the full
architectural rationale.
There are two supported paths.
Prerequisites on a fresh machine: git, Node 22 LTS or 24 LTS (>= 20.10 works, but an LTS ships a prebuilt better-sqlite3 so the first build needs no compiler), and the standalone claude CLI on PATH. pnpm is bootstrapped for you on first launch.
claude plugin marketplace add https://github.com/Samuel0101010/wisp-orchestrator.git
claude plugin install wisp@wisp-local
claude /wisp-dashboard
Both the marketplace and the plugin source are fetched over plain HTTPS — no GitHub account, SSH key, or known_hosts entry required.
If you added the marketplace with the owner/repo shorthand on an older Claude Code version, or your git config rewrites GitHub URLs to SSH, the clone can go over SSH and fail without an SSH key or known_hosts entry. Fix: refresh the marketplace (claude plugin marketplace remove wisp-local, then re-add with the HTTPS URL above), or tell git to use HTTPS for GitHub once:
git config --global "url.https://github.com/.insteadOf" "git@github.com:"
(In PowerShell keep the space between the two quoted arguments.)
(For local development, replace the first line with claude plugin marketplace add /absolute/path/to/agent-harness.)
The /wisp-dashboard command runs the launcher script for your platform (scripts/launch-dashboard.ps1 on Windows, scripts/launch-dashboard.sh on POSIX). On the first invocation after a fresh install, the launcher auto-runs pnpm install && pnpm build (~1-2 minutes; pnpm is bootstrapped via corepack/npm if absent). On subsequent invocations it boots straight to the server. Either way it picks a free port in 4400-4500, writes connection state to ${CLAUDE_PLUGIN_DATA}/state.json, and opens the dashboard in your default browser.
After the dashboard opens: spawning agent runs needs the claude CLI authenticated (subscription, or WISP_AUTH_MODE=api with an ANTHROPIC_API_KEY). The dashboard boots and is browsable either way — but if auth is missing it shows a banner and /api/health carries the hint. Run claude login and restart /wisp-dashboard if you see it.
pnpm install
pnpm build
WISP_SERVE_WEB=1 node apps/dashboard-server/dist/server.js
# then open http://127.0.0.1:4400
With WISP_SERVE_WEB=1 the dashboard server static-serves the built apps/dashboard-web/dist/ from /, so a single port hosts UI + API + WS. To develop against a hot-reloading frontend instead, leave WISP_SERVE_WEB unset and run the Vite dev server in a second terminal:
pnpm --filter @wisp/dashboard-web dev
The Vite dev server runs at http://localhost:5173 and proxies API/WS calls to the backend on 127.0.0.1:4400.
repoPath. The repo path must point at an existing git-initialized directory; the orchestrator creates per-task worktrees inside it.model, allowedTools, or systemPrompt per role.FAQ
wisp is a Claude Code plugin with 12 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes audit-orphan-runs, auto-doc, builder-discipline. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Is this plugin yours?
Claim it with GitHubSubmit a pluginPromote it