Decompose
Claude Code plugins for spec-first development: every agent claim cites a source, every code change traces to a requirement, and ceremony scales to the weight of the task.
npx -y skills add NVZver/claude-marketplace --skill decomposeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Decompose a pitch into independently-shippable epics. Input: a pitch slug or path (argument; if omitted, the highest-priority backlog pick). Output: the project-manager agent's epic list delivered and gated (approve / reject / adjust) via AskUserQuestion; on approval the first epic seeds an lsa:discover handoff and the remaining epics are surfaced. Reads ${specs_root}/pitches/<slug>.md.
SKILL.md
5.0 KB, as published. Nobody here has run it
Trace. On load, print first:
=============== [manager/skills/decompose/SKILL.md] [manager] ===============
Decompose
Decompose a pitch into epics ready for the LSA build cycle. Dispatches the project-manager agent with the pitch, runs the epic-approval gate, and on approval invokes the staged lsa:discover handoff with the agent's first-epic seed. Does not contain decomposition logic — that lives in the agent and ../../knowledge/epic-decomposition.md. The dispatch → gate → re-render loop is the shared contract at ../../knowledge/roadmap-orchestration.md.
Goal
Turn an approved pitch into a list of independently-shippable epics — each keyed by a stable slug (<feature-slug>/<short-kebab-scope>, never a global ordinal) and scoped to one LSA cycle — and stage the first epic into discovery, without the user manually decomposing the pitch or invoking the agent directly. The slug is assigned once here and is immutable through commit and PR per ../../knowledge/epic-decomposition.md §"Epic key".
Input
- A pitch slug or path as the skill argument (e.g.
manager:decompose onboarding-checklistor a path under${specs_root}/pitches/). If no argument is given, the agent decomposes the highest-priority backlog pick (per../../agents/project-manager.mdStep 8). specs_rootfrom.lsa.yamlat repo root (defaults per../../../lsa/knowledge/conventions.md§".lsa.yamldefaults"). Used to resolve${specs_root}/...paths.
Steps
-
Dispatch the project-manager and run the epic-approval gate — per the shared contract. Dispatch the
project-manageragent with an explicit intent carrying the pitch (intent: decompose <pitch>) and run its returned gates per../../knowledge/roadmap-orchestration.md. The agent reads the pitch, decomposes it per../../knowledge/epic-decomposition.md, and returns the full epic list as a pending gate — approve (recommended default) / reject / adjust (../../agents/project-manager.mdStep 10). This skill delivers the list and presents the gate viaAskUserQuestion; on reject/adjust it sends the feedback back and re-gates the fresh epic list. Observable result: epic list delivered; approve/reject/adjust gate resolved by the user. -
Run the staged handoff. On epic approval, invoke
lsa:discovervia theSkilltool with the agent's staged seed text verbatim (first epic paragraph + pitch link, per../../agents/project-manager.mdStep 11). Surface the agent's remaining-epics note. Observable result:lsa:discoverexecuting with the first epic's context; remaining epic list displayed with instruction to continue (re-invokemanager:decomposefor the next epic after the current one ships).
Output
The agent's epic list — each epic keyed by its stable slug (see Goal) — is delivered and the approve/reject/adjust gate is resolved. On approval lsa:discover is executing with the first epic's seed (slug included verbatim) and the remaining epics are surfaced; on reject no handoff runs. The agent proposes; this skill runs the gate and the lsa:discover invocation.
Example Output
[illustrative]
Dispatching project-manager (intent: decompose onboarding-checklist)...
Epics for "Onboarding checklist" (2 epics, keyed by stable slug):
- onboarding-checklist/knowledge-file — DoD: file exists with numbered items.
- onboarding-checklist/verify-drift — DoD: lsa:verify reports missing file.
Gate — epics: approve (recommended) / reject / adjust
> approve
Invoking lsa:discover with the staged seed (epic onboarding-checklist/knowledge-file)...
Remaining: onboarding-checklist/verify-drift (re-invoke manager:decompose after the first epic ships). Each slug stays fixed through commit and PR.
Constraints
- Orchestrator only — per
../../knowledge/roadmap-orchestration.md. Dispatch with an explicit intent + pitch, run the gate, re-render, hand off. No decomposition logic here. - No silent handoff. The epic-approval gate lives in THIS skill (the agent cannot ask);
lsa:discoveris invoked here only after epic approval, with the agent's staged seed. - Outputs follow
core/output— citation by link, never restated.
/manager:decompose <pitch> — manual invocation.