skills/ship-slice/SKILL.md
Reconcile one active execution slice, optionally execute owner-chain routing, and persist checkpointed resume context for one-slice acceleration.
npx skillsauth add sirius-cc-wu/sirius-skills ship-sliceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.brief, blueprint,
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.python3 skills/ship-slice/scripts/ship_slice.py taw-ship-slice-loop --json
python3 skills/ship-slice/scripts/ship_slice.py --handoff /tmp/handoff.json --json
python3 skills/ship-slice/scripts/ship_slice.py --resume --json
python3 skills/ship-slice/scripts/ship_slice.py 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.tools
Create or resume a dedicated git worktree for one feature or subfeature, drive `ship` inside that worktree, and hand the finished branch back as a pull request to the original branch.
testing
Reviews one completed feature or subfeature against final implementation and slice artifacts, then records a durable reconciliation block before archive.
development
Tightens durable repo-level rules in AGENTS.md and adjacent governance surfaces when repeated drift reveals a policy gap.
data-ai
Resolves one reviewed feature or subfeature backlog into remaining planned slices and routes each active slice to the next owning execution step with one commit per completed slice.