From zsl
Break a plan, spec, or PRD into independently-grabbable issues on the project issue tracker using tracer-bullet vertical slices. Use when user wants to convert a plan into issues, create implementation tickets, or break down work into issues.
npx claudepluginhub zunosmartlabs/zsl-superpowersThis skill uses the workspace's default tool permissions.
Break a plan into independently-grabbable issues using vertical slices (tracer bullets).
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Break a plan into independently-grabbable issues using vertical slices (tracer bullets).
The issue tracker and triage label vocabulary should have been provided to you — run /setup-zsl-superpowers if not.
Work from whatever is already in the conversation context. If the user passes an issue reference (issue number, URL, or path) as an argument, fetch it from the issue tracker and read its full body and comments.
If you have not already explored the codebase, do so to understand the current state of the code. Issue titles and descriptions should use the project's domain glossary vocabulary, and respect ADRs in the area you're touching.
Break the plan into tracer bullet issues. Each issue is a thin vertical slice that cuts through ALL integration layers end-to-end, NOT a horizontal slice of one layer.
Slices may be 'HITL' or 'AFK'. HITL slices require human interaction, such as an architectural decision or a design review. AFK slices can be implemented and merged without human interaction. Prefer AFK over HITL where possible.
- Each slice delivers a narrow but COMPLETE path through every layer (schema, API, UI, tests) - A completed slice is demoable or verifiable on its own - Prefer many thin slices over few thick onesEach slice gets a title in the form [<TYPE>] <wave>[<letter>] — <description>:
[AFK] or [HITL]./tdd-parallel would pick up).a, b, c... in the order slices were drafted. Single-slice waves stay unlettered.— between the wave token and the description.Examples:
[HITL] 1 — Decide auth provider[AFK] 2a — Add OAuth callback endpoint[AFK] 2b — Render login button[AFK] 3 — Wire callback to session store[AFK] 4 — Show user profile after loginPresent the proposed breakdown as a numbered list. For each slice, show:
[TYPE] wave[letter] — description format)Ask the user:
Iterate until the user approves the breakdown.
For each approved slice, publish a new issue to the issue tracker. Use the issue body template below. Apply both the needs-triage triage label (so each issue enters the normal triage flow) and the backlog label (so each issue shows up on the project board).
Publish issues in dependency order (blockers first) so you can reference real issue identifiers in the "Blocked by" field.
## ParentA reference to the parent issue on the issue tracker (if the source was an existing issue, otherwise omit this section).
A concise description of this vertical slice. Describe the end-to-end behavior, not layer-by-layer implementation.
Or "None - can start immediately" if no blockers.
If a parent issue exists and the tracker supports sub-issues, link each child to the parent so the parent auto-closes when all children close.
addSubIssue GraphQL mutation. Fetch parent and child node IDs first, then link (replace OWNER, REPO, PARENT, CHILD):
PARENT_ID=$(gh api graphql -f query='query{repository(owner:"OWNER",name:"REPO"){issue(number:PARENT){id}}}' -q .data.repository.issue.id)
CHILD_ID=$(gh api graphql -f query='query{repository(owner:"OWNER",name:"REPO"){issue(number:CHILD){id}}}' -q .data.repository.issue.id)
gh api graphql -f query='mutation($p:ID!,$c:ID!){addSubIssue(input:{issueId:$p,subIssueId:$c}){subIssue{number}}}' -f p="$PARENT_ID" -f c="$CHILD_ID"
parentId on each child when creating it.## Parent text reference is the only link.Do NOT close the parent or modify its body. The only allowed parent changes are adding sub-issue links and updating the state label as described in step 7.
trackingIf the source was an existing parent issue (i.e. the new issues were linked as sub-issues in step 6), update the parent's state label to tracking (use the configured label string from docs/agents/triage-labels.md). Remove any prior state label (needs-triage, ready-for-agent, etc.) — the parent is no longer a unit of work, it's a container.
GitHub will auto-close the parent when the last child closes. Do not close the parent yourself.
If docs/agents/project-board.md exists, also update the parent's project item Status to the option mapped to tracking (typically In progress). Use the same lookup-then-update procedure documented in triage/SKILL.md step 6: fetch the project item via gh api graphql filtered by the configured project node ID, then updateProjectV2ItemFieldValue with the mapped Status option ID. If the parent isn't on the configured project, log and continue. Best-effort — the label change is the source of truth.
Children created in step 5 are auto-added to the project (the user's existing "Auto-add to project" workflow handles that) and start in the project's default Status (Backlog); /triage will advance them to Ready later.
Skip this step if there's no parent issue (e.g. the source was a freeform plan in conversation).