Cancels active ship pipeline by removing state file, reports phase/milestone, and warns about cleanup for worktrees, branches, PRs.
From ucainpx claudepluginhub joncik91/ucai --plugin ucaiTo cancel the ship pipeline:
Check if .claude/ucai-ship.local.md exists using Bash: test -f .claude/ucai-ship.local.md && echo "EXISTS" || echo "NOT_FOUND"
If NOT_FOUND: Say "No active ship pipeline found."
If EXISTS:
.claude/ucai-ship.local.md to get the current phase, milestone, and any worktree/branch inform .claude/ucai-ship.local.mdCleanup warnings (check each, report what applies):
git worktree list — if a ship worktree exists, warn: "Ship worktree still exists at [path]. Run git worktree remove [path] to clean up, or inspect it first."git push origin --delete [name] if you want to remove it."Do NOT auto-delete worktrees, branches, or PRs — the user decides what to keep.