一键导入
ship-slice
Reconcile one active execution slice, optionally execute owner-chain routing, and persist checkpointed resume context for one-slice acceleration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reconcile one active execution slice, optionally execute owner-chain routing, and persist checkpointed resume context for one-slice acceleration.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Bootstraps `.skills/planning.json`, `.skills/execution.json`, and `.skills/conventions.json` for a repository, and can also scaffold a wiki knowledge layer next to the planning feature directory. Use when a user asks to configure a project, initialize `sirius-skills` settings, apply generic defaults, add Jira-oriented conventions, or bootstrap the repo's wiki skeleton.
Canonical workflow for creating and managing durable subfeatures under an existing feature. Use this whenever the user asks to add, create, start, open, or bootstrap a subfeature so downstream planning skills keep the expected metadata and discovery-draft lifecycle.
Reconcile one planning target, optionally execute planning owners in sequence, and persist checkpointed resume context through approval, optional auto-commit handoff, and planning-commit handoff.
Converts repo stories and planning docs into directly executable, dependency-aware work items with traceability and execution handoff.
Closes the active execution slice with validation and records durable closure metadata while invoking shared owner-completion reconciliation.
Produces feature-level system-design.md artifacts before breakdown when a feature needs architecture, interface, constraint, failure-handling, or validation decisions captured durably.
| name | ship-slice |
| description | Reconcile one active execution slice, optionally execute owner-chain routing, and persist checkpointed resume context for one-slice acceleration. |
Use this skill when one active execution slice should be resumed from its current state with checkpointed runtime context.
ship
handoff_payload, or a previously written checkpoint.blueprint,
optional legacy brief, implementation routing) until review/checkpoint
boundaries.readiness summary in JSON output (can_proceed, blocked_by,
stop_reason, approval/commit gate state) so ship and dashboards can
read one-slice acceleration status without parsing owner-chain internals.ship-slice exits non-zero or hits a failure stop reason.sirius ship-slice taw-ship-slice-loop --json
sirius ship-slice --handoff /tmp/handoff.json --json
sirius ship-slice --resume --json
sirius ship-slice taw-ship-slice-loop --execute-owner-chain --json
Configure owner-chain behavior in .skills/execution.json under
accelerators.ship_slice.
{
"slice_dir": "slices",
"preferred_workflow": "TDD",
"auto_start_implementation": true,
"accelerators": {
"ship_slice": {
"execute_owner_chain": false,
"stop_on_owner": ["review-execution"],
"continuation_policy": {
"review_boundary": "stop",
"commit_checkpoint": "stop"
},
"auto_format": false,
"format_command": ["./scripts/format-owned.sh"],
"auto_close": false,
"auto_commit": false
}
}
}
Optional CLI overrides:
--execute-owner-chain / --no-execute-owner-chain--stop-on-owner <owner> (repeatable)Terminal automation notes:
auto_commit requires auto_closeauto_format requires format_commandcontinuation_policy.review_boundary and
continuation_policy.commit_checkpoint accept stop or continuestop; policy remains config-only in the first rolloutship backlog resolution.guide-execution tooling and
validation.workflow_runtime.