guide-execution
Guide Execution
Use this skill as the execution-layer entrypoint when you need to decide the next step for one execution slice.
Responsibilities
- Resolve or initialize the active slice.
- Verify required files, registry state, and slice metadata.
- Decide whether work belongs in the planning layer or the slice-scoped execution layer.
- Route slice-scoped work to
brief,blueprint, active repository implementation,review-execution, orclose-slice. - Update slice readiness status when a phase is complete.
guide-execution owns orchestration and readiness only. It should not absorb artifact authoring that belongs to brief, blueprint, review-execution, or close-slice.
When .skills/execution.json sets auto_start_implementation to true, treat blueprint_ready as an automatic handoff into implementation: once blueprint.md is complete, update the slice through manage_execution.py set-status <slice> blueprint_ready, let the tooling advance the slice to execution_ready, and continue directly into code changes instead of stopping for a second manual handoff.
Entry Decision Guide
Use guide-execution when a slice already exists or you need to decide the next step for execution-layer work.
- If the work is still feature-scoped or story-scoped, send it back to
guide-planning. - If there is one execution-ready work item but no slice-scoped execution slice yet, route to
sliceafter confirming the reviewed planning artifacts were approved and committed. - If a slice exists or can be resolved, stay in
guide-executionand route inside the execution layer.
Workflow Boundary
Typical handoff:
guide-planning -> discover -> design -> ui-flow -> breakdown -> review-planning -> human approval -> commit -> slice -> guide-execution
guide-execution owns slice/document readiness only:
draftbrief_readyblueprint_readyexecution_readyclosed
Do not duplicate day-to-day implementation states like implementing or blocked in the slice registry.
Preflight
- Resolve
.skills/execution.jsonand the configured slice registry. - Resolve the active slice using tooling or a user-provided ID/path.
- Confirm the slice path represents one execution-ready work item.
- Check
brief.md,blueprint.md, optional legacyslices.md, and.slice-meta.jsonas appropriate for the current state. - Check whether
auto_start_implementationis enabled so the blueprint handoff behavior matches repository config. - Repair registry inconsistencies before routing deeper into execution.
Tooling
Always use scripts/manage_execution.py in this skill directory for initialization, active-slice resolution, status updates, validation, registry synchronization, and relation management.
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.
4discover
Frames a project or feature before implementation by capturing goals, constraints, stakeholders, and initial story candidates.
2ui-flow
Captures optional UI and UX flows, screen-level requirements, and interaction notes before implementation.
2design
Produces feature-level system-design.md artifacts before breakdown when a feature needs architecture, interface, constraint, failure-handling, or validation decisions captured durably.
2