slice
Slice
Use this skill when a work item is small enough to execute, has passed planning review, has explicit human approval, and its planning artifacts have been committed.
Responsibilities
- Validate that the selected work item is ready for execution.
- Ensure execution bootstrap prerequisites exist, including
.skills/execution.json, the slice registry, and a durable approved planning checkpoint. - Bootstrap one execution slice for that work item.
- Confirm the slice exists and is aligned with the repository's execution layout.
- Hand off to
guide-executionforbrief.mdandblueprint.md.
Preferred Input
- a work item ID from repository planning (for example, one created by
breakdown)
Bootstrap Rules
- One executable work item should map to one slice.
- Prefer preserving the planned ID as the slice ID when available.
- Do not create a slice for work that still needs major decomposition.
- If execution config does not exist yet, initialize it with a repository-specific slice directory when known, otherwise use the generic default
slices/. - Keep slice readiness and registry state in
guide-execution.
Preflight
Before bootstrapping, confirm:
- The input represents exactly one execution-ready work item rather than a feature-sized batch.
- Dependencies, sequencing notes, and expected verification are already clear in the planning artifacts.
- The work item does not still need major decomposition, architecture discovery, or planning review.
- The chosen slice ID, if provided, should be preserved exactly.
- The planning artifacts were explicitly approved and committed before bootstrap.
Workflow
- Inspect the target work item and confirm dependencies, scope, and acceptance notes are clear.
- Bootstrap the slice with:
python3 skills/slice/scripts/bootstrap_slice.py "<slice-id>" "<feature-name>"
- If the repository has not configured execution yet and the default
slices/location is not appropriate, pass an explicit directory during first bootstrap:
python3 skills/slice/scripts/bootstrap_slice.py --slice-dir "team-slices" "<slice-id>" "<feature-name>"
- Confirm the new slice path exists and registry state is consistent.
- Hand off to
guide-executionto authorbrief.mdandblueprint.md.
bootstrap_slice.py keeps the ownership boundary intact by delegating registry creation, slice creation, and validation to skills/guide-execution/scripts/manage_execution.py.
Guardrails
- Do not invent extra slice states to mirror external execution lifecycles.
- Do not skip
guide-execution; this skill prepares and bootstraps the slice, butguide-executionstill owns execution readiness and routing. - Do not bootstrap directly from uncommitted planning output.
- If the input work item is still too large, send it back to
guide-planningorbreakdown.
More from sirius-cc-wu/sirius-skills
dioxus-ui-ux
Dioxus UI/UX design intelligence. Specialized guidelines for Dioxus Components, plus 50 styles, 21 palettes, 50 font pairings. Stacks: dioxus, daisyui, shadcn, html-tailwind. Actions: plan, build, create, design, implement, review, fix, improve, optimize. Projects: web app, dashboard, admin panel, SaaS, mobile app. Elements: button, modal, navbar, card, form, chart.
16dioxus-stitch
Transforms Stitch designs into clean, modular Dioxus code using daisyUI. Handles RSX conversion, type-safe props, and data decoupling for Rust projects.
8dioxus-ui-skill
Dioxus UI/UX design intelligence. Specialized guidelines for Dioxus Components, plus 50 styles, 21 palettes, 50 font pairings. Stacks: dioxus, shadcn, html-tailwind. Actions: plan, build, create, design, implement, review, fix, improve, optimize. Projects: web app, dashboard, admin panel, SaaS, mobile app. Elements: button, modal, navbar, card, form, chart.
4ui-flow
Captures optional UI and UX flows, screen-level requirements, and interaction notes before implementation.
2commit
Use this skill when requested to commit changes. It ensures commit messages follow project standards and ensures code quality via verification steps.
2propose
Creates and manages speculative repo-native proposals only, then hands accepted proposals back to guide-planning for canonical planning.
2