Issue plan slicer
Skill stark-ai-de/agent-skills/incubator/skills/engineering-workflows/issue-plan-slicer
Public Agent Skills for Codex operations, Cursor operations, Claude operations, repo maintenance, skill maintenance, productivity, and engineering workflows.
npx -y skills add stark-ai-de/agent-skills --skill issue-plan-slicerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 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
Convert a spec, roadmap item, or rough plan into independently implementable issue slices with scope, dependencies, acceptance criteria, and validation. Use when the user asks to split work into GitHub issues, local markdown tasks, or agent-ready implementation chunks.
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.2 KB, as published. Nobody here has run it
Issue Plan Slicer
Goal
Turn a broad plan into small, ordered, independently reviewable work items that an agent or maintainer can execute safely.
When to use
- The user asks to split a spec, roadmap item, issue, PRD, or migration into tasks.
- Work needs GitHub issue drafts, local markdown tasks, or agent-ready implementation slices.
- Dependencies, acceptance criteria, and validation need to be made explicit.
When not to use
- The user wants immediate implementation of a narrow task.
- The plan is still too ambiguous to slice and needs product discovery first.
- The user asks for live issue creation but has not authorized tracker mutations.
Inputs to inspect
- The source spec, issue, PRD, roadmap item, or conversation context.
- Existing
docs/agents/issue-tracker.md,docs/agents/triage-labels.md, anddocs/agents/validation.mdwhen present. - Existing issue templates and labels under
.github/. - Relevant ADRs and domain docs for boundaries and terminology.
Workflow
- Identify the desired outcome and non-goals.
- Extract dependencies, risky assumptions, validation commands, and docs impact.
- Split work into vertical slices that can be reviewed independently.
- Mark blockers and sequencing; avoid slices that require hidden context from prior tasks.
- Draft each issue with title, scope, acceptance criteria, validation, and out-of-scope notes.
- If the issue tracker is unknown, produce local markdown drafts instead of tracker-specific commands.
- Ask before creating, labeling, assigning, or closing live issues.
Safety rules
- Do not mutate issue trackers without explicit user authorization.
- Do not create vague tasks such as "clean up code" without acceptance criteria.
- Do not hide critical dependencies in prose; make them part of the slice.
- Do not assume labels or project boards that are not documented.
References
Use downstream docs/agents/issue-tracker.md and docs/agents/triage-labels.md as hard dependencies for tracker-specific output. If they are missing, default to local markdown issue drafts.
Scripts
No bundled scripts.
Output format
Return:
- Source plan summary
- Proposed issue order
- Issue drafts with title, scope, acceptance criteria, validation, and dependencies
- Tracker assumptions
- Open questions
Completion criteria
- Each slice can be implemented and reviewed independently.
- Dependencies and sequencing are explicit.
- Validation is attached to each slice.
- Live tracker mutation is either authorized and reported or not performed.
Failure modes
- If the plan is too ambiguous, ask targeted questions before slicing.
- If one slice grows too large, split it by observable behavior or ownership boundary.
- If tracker docs are missing, avoid tracker-specific labels and commands.