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/geono/claude-launchpad/launchpad-plannpx skills add Geono/claude-launchpad --skill launchpad-plangit clone --depth 1 https://github.com/Geono/claude-launchpadWrote 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/geono/claude-launchpad/launchpad-plan)<a href="https://agentmods.dev/skills/geono/claude-launchpad/launchpad-plan"><img src="https://agentmods.dev/badge/skills/geono/claude-launchpad/launchpad-plan.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.1 | $0.00050 | $0.01379 |
| Opus 5 | $0.00025 | $0.00690 |
| Sonnet 5 | $0.00010 | $0.00276 |
| Haiku 4.5 | $0.00005 | $0.00138 |
Grade A, and why
launchpad-plan 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 6d 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 — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Launchpad Plan
Analyze a task breakdown and produce a parallelization-aware implementation plan.
Purpose
Bridge between the spec's task list and the runner's parallel execution. The planner determines what can run concurrently and what must be sequential by analyzing dependency declarations and file mutation overlaps.
Workflow
1. Locate the Spec
Resolve the spec name from the user's request. Read specs/<spec-name>.tasks.md (or equivalent task breakdown file).
If missing or ambiguous, list specs/ and ask.
2. Parse Task Sections
Extract all task sections. For each task, collect:
- Task ID: Identifier (e.g.,
task-001,T-0, etc.) - Files: Each file path and its operation (create vs modify)
- Steps: The implementation steps
- Tests: The test/validation scenarios
- Dependencies: Explicit from the spec, plus implicit from section ordering
3. Build the Dependency Graph
For each task, determine what it depends on:
- Explicit dependencies: From the spec's task definitions (e.g.,
depends_onfields). - File mutation conflicts: Two tasks that both modify the same file cannot safely run in parallel. If task A appears before task B and both modify
src/index.ts, B depends on A. - Shared types/foundation dependency: If a foundational task exists (e.g., types, schema, config), all dependent tasks must wait for it.
- Create-then-modify: If task A creates a file and task B modifies or imports from it, B depends on A.
4. Determine Task Granularity
Each task section becomes one task by default. Adjust when:
- Split a task if it contains clearly independent substeps touching different files with no data flow between them, AND splitting would enable more parallelism. Don't split just for granularity's sake.
- Merge tasks that are trivially small into a parent task or mark as no-op.
5. Assign Parallel Waves
Group tasks into execution waves — sets of tasks that can run concurrently:
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.
- 6d ago First seen · 159 lines · 50 tokens per session scan A 5f5a34ddc193
launchpad-plan is a skill published in the GitHub repository Geono/claude-launchpad (4 stars, last pushed 5mo ago), licensed MIT. It adds 50 tokens to every session and 1,379 once invoked, about $0.0003 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-31.
Other skills, from other repositories
anatomia-cc
ES: Te dice qué construir en Claude Code y te da el esqueleto de archivos: skill y en qué modo, subagente, hook, servidor MCP, plugin, rutina, artefacto, app con el Agent SDK, una línea en CLAUDE.md, o nada. Corré esto antes del primer archivo. Se dispara con «esto lo hago como skill o como agente», «necesito un MCP o…
diagrammer
Render a clean blueprint-style SVG diagram from a JSON spec. Use when the user asks to draw, sketch, or diagram a flow, neural net, system architecture, state machine, or any node-and-edge picture they want as an SVG.
configure-permissions
Interactive wizard to configure Claude Code permission rules. Sets up granular allow/ask permissions so you can work without --dangerously-skip-permissions while keeping safety nets for destructive commands. Use when user says "configure permissions", "set up permissions", "permission settings", or "stop asking me for…
skill-curator
中文 Skill 收录评估器。用于核验 GitHub 上的 Claude Code、Codex、Agent Skills、Plugin、MCP、CLI 或 Agent 工作流是否值得加入精选列表;检查真实资产、安装方式、活跃度、重复项和安全边界,并生成分类、中文描述与可追溯证据。.
git-workflow
安全处理 Git 状态检查、提交信息、commit、分支、push、PR 和 rebase。用于用户要求检查改动、生成或创建提交、管理分支、推送、发起 PR 或整理历史时;严格区分每个动作的授权,并保护工作树中已有和无关的修改。.
i18n-helper
国际化/本地化助手 — 扫描代码中的硬编码文本、生成 i18n 配置、批量翻译.