backend-launcher

backend-launcher is a skill for Claude Code, Codex from procoders/superpowers-v. It costs 91 tokens per session (5,428 once invoked), scanned A, original, MIT.

A shared job-running contract for sending one file-scoped coding task to different coding-agent backends and receiving a consistent result.

In plain words
What is it for?
Use it to run jobs through Claude, Codex, Antigravity, Cursor, Devin, or opencode adapters and handle their results in the same format.
Why use it?
It lets a coordinator use different workers without changing how it checks their inputs, scope, or returned results.

Skill for Claude CodeCodex

Part of the superpowers-v plugin — 3 skills, 17 commands, 6 agents, 3 hooks shipped together

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.

agentmods
npx agentmods add skills/procoders/superpowers-v/backend-launcher
Any agent
npx skills add procoders/superpowers-v --skill backend-launcher
Clone the repo
git clone --depth 1 https://github.com/procoders/superpowers-v

Made for: Claude Code, Codex.

Or install superpowers-v, the plugin that ships this one along with the rest of its 3 skills, 17 commands, 6 agents, 3 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 backend-launcher

README.md
[![agentmods](https://agentmods.dev/badge/skills/procoders/superpowers-v/backend-launcher.svg)](https://agentmods.dev/skills/procoders/superpowers-v/backend-launcher)
Your own site
<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>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,428 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00091 $0.05428
Opus 5 $0.00046 $0.02714
Sonnet 5 $0.00018 $0.01086
Haiku 4.5 $0.00009 $0.00543

Measured 5d ago against content hash e47d4303f2ec, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

skills/backend-launcher/SKILL.md · 175 lines

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.

Read the full file on GitHub · 175 lines

Files

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.

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. 5d ago First seen · 175 lines · 91 tokens per session scan A e47d4303f2ec

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

subagent-driven-development

Use when executing implementation plans with independent tasks in the current session.

DollarDill/beads-superpowers · 17 tokens

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.

DollarDill/beads-superpowers · 56 tokens

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.

DollarDill/beads-superpowers · 37 tokens

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

DollarDill/beads-superpowers · 63 tokens

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…

DollarDill/beads-superpowers · 103 tokens

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.

DollarDill/beads-superpowers · 44 tokens