launchpad-plan

launchpad-plan is a skill for Claude Code from Geono/claude-launchpad. It costs 50 tokens per session (1,379 once invoked), scanned A, original, MIT.

A planning skill that turns a specification's task list into groups of work that can run at the same time or must wait. It checks task dependencies and whether tasks change the same files.

In plain words
What is it for?
Use it to read a task breakdown, map dependencies, identify file conflicts, and assign tasks to execution waves with the `/lp:plan` command.
Why use it?
It helps prevent unsafe parallel work and makes the order of implementation clear. It also shows which independent tasks can be handled concurrently.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Part of the claude-launchpad plugin — 4 skills 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/geono/claude-launchpad/launchpad-plan
Any agent
npx skills add Geono/claude-launchpad --skill launchpad-plan
Clone the repo
git clone --depth 1 https://github.com/Geono/claude-launchpad

Made for: Claude Code.

Or install claude-launchpad, the plugin that ships this one along with the rest of its 4 skills.

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 launchpad-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/geono/claude-launchpad/launchpad-plan.svg)](https://agentmods.dev/skills/geono/claude-launchpad/launchpad-plan)
Your own site
<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>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,379 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.1 $0.00050 $0.01379
Opus 5 $0.00025 $0.00690
Sonnet 5 $0.00010 $0.00276
Haiku 4.5 $0.00005 $0.00138

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

Security

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.

plugins/claude-launchpad/skills/launchpad-plan/SKILL.md · 159 lines

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:

  1. Explicit dependencies: From the spec's task definitions (e.g., depends_on fields).
  2. 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.
  3. Shared types/foundation dependency: If a foundational task exists (e.g., types, schema, config), all dependent tasks must wait for it.
  4. 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:

Read the full file on GitHub · 159 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. 6d ago First seen · 159 lines · 50 tokens per session scan A 5f5a34ddc193

Subscribe to this mod's changes

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.

Related

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…

Hainrixz/claude-anatomy · 267 tokens

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.

Anish-Reddy-K/diagrammer · 51 tokens

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…

ashray/claude-permissions-wizard · 65 tokens

skill-curator

中文 Skill 收录评估器。用于核验 GitHub 上的 Claude Code、Codex、Agent Skills、Plugin、MCP、CLI 或 Agent 工作流是否值得加入精选列表;检查真实资产、安装方式、活跃度、重复项和安全边界,并生成分类、中文描述与可追溯证据。.

laolaoshiren/claude-code-skills-zh · 75 tokens

git-workflow

安全处理 Git 状态检查、提交信息、commit、分支、push、PR 和 rebase。用于用户要求检查改动、生成或创建提交、管理分支、推送、发起 PR 或整理历史时;严格区分每个动作的授权,并保护工作树中已有和无关的修改。.

laolaoshiren/claude-code-skills-zh · 73 tokens

i18n-helper

国际化/本地化助手 — 扫描代码中的硬编码文本、生成 i18n 配置、批量翻译.

laolaoshiren/claude-code-skills-zh · 33 tokens