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.
npx agentmods add skills/procoders/superpowers-v/backend-launchernpx skills add procoders/superpowers-v --skill backend-launchergit clone --depth 1 https://github.com/procoders/superpowers-vWrote 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.
[](https://agentmods.dev/skills/procoders/superpowers-v/backend-launcher)<a href="https://agentmods.dev/skills/procoders/superpowers-v/backend-launcher"><img src="https://agentmods.dev/badge/skills/procoders/superpowers-v/backend-launcher.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00091 | $0.05428 |
| Opus 5 | $0.00046 | $0.02714 |
| Sonnet 5 | $0.00018 | $0.01086 |
| Haiku 4.5 | $0.00009 | $0.00543 |
Grade A, and why
backend-launcher 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 5d 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.
How it starts
The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Backend Launcher
"Same syringe, different supes. The dispatcher doesn't care who's holding it — it cares what comes back."
A reusable sub-skill (a sibling directory under skills/, pulled in by prose "read this file and apply"). It exposes one contract. The orchestrator hands a job_spec to whichever adapter the manifest's backend names, and gets back a canonical job_result — identical shape across every backend. Enforcement is uniform because it lives in the caller's scope gate, not in the backend.
There is no skill-import API: an adapter is a sibling doc (adapter-codex.md, adapter-claude.md, adapter-antigravity.md) that says "read the contract in this file, then do the backend-specific steps." Adapters are built by downstream tasks; this file is the contract they implement.
The contract
INPUT — job_spec
{
"backend": "codex", // claude | codex | antigravity | cursor | devin | opencode
"prompt": "…", // the worker prompt (opens with the planner/executor lock, below)
"tier": "standard", // deep | standard | light — the routing INTENT (stable across model churn)
"effort": "medium", // low | medium | high | xhigh — orthogonal reasoning-effort hint (optional; xhigh is codex-only)
"model": "gpt-5.6-sol", // OPTIONAL explicit override; when present it skips resolution.
// execution-layer data — NEVER appears in any frontmatter
"cwd": "/repo", // absolute repo root
"write_allowed": ["src/features/sequences/components/**"],
"read_only": false, // true ⇒ sandbox read-only, no merge
"timeout_sec": 900,
"network": false, // maps to sandbox_workspace_write.network_access
"output_schema": "/abs/schemas/job_result.schema.json" // optional
}
tier + effort + model — intent over hardcoded strings. A job_spec carries the routing intent (tier, and optional effort), not a hardcoded model. The concrete model is resolved before dispatch by scripts/compound-v-resolve-model.py from (backend, tier, effort, config) — so the plugin survives model churn (refresh the config models map via /v:models, never the call sites). A job MUST carry model OR tier; an explicit model override skips resolution and always wins. effort is passed through to the worker: for codex it becomes -c model_reasoning_effort=<effort>; for claude it is advisory (the Task path has no separate effort flag). xhigh is valid iff backend: codex; every other backend rejects it with a clear error naming the rule (use high instead) — the resolver and the manifest validator both enforce this. tier/effort/model are execution-layer values and never appear in any frontmatter. See skills/compound-v/execution-manifest.md for the tier vocabulary, the config models map shape, and the reviewer ⇒ deep rule.
What ships with it
7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 5d ago First seen · 175 lines · 91 tokens per session scan A e47d4303f2ec
backend-launcher is a skill published in the GitHub repository procoders/superpowers-v (35 stars, last pushed 5d ago), licensed MIT. It adds 91 tokens to every session and 5,428 once invoked, about $0.0005 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-30.
Other skills, from other repositories
subagent-driven-development
Use when executing implementation plans with independent tasks in the current session.
write-documentation
Use when writing or substantially rewriting human-facing prose: documentation, README, guides, blog posts, emails, Slack messages, PR descriptions, release notes, or any text a human will read. Not for code comments, commit messages, or agent-to-agent communication.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
research-driven-development
Use when the user asks a question about a topic, requests research, or when understanding something is needed before planning. Triggers on "research this", "what is X", "how does Y work", "compare A vs B", "investigate", "deep dive", "look into".
document-release
Use when implementation on a branch is complete and it is about to be merged or PR'd — or when finishing-a-development-branch reaches its docs-audit gate — and after code changes are committed, to ensure all project documentation accurately reflects shipped code. Covers README, ARCHITECTURE, CONTRIBUTING, CHANGELOG…
finishing-a-development-branch
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup.