Help us improve
Share bugs, ideas, or general feedback.
From ucai
Cancels active ship pipeline by removing state file, reports phase/milestone, and warns about cleanup for worktrees, branches, PRs.
npx claudepluginhub joncik91/ucai --plugin ucaiHow this command is triggered — by the user, by Claude, or both
Slash command
/ucai:cancel-shipThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Cancel Ship To cancel the ship pipeline: 1. Check if `.claude/ucai-ship.local.md` exists using Bash: `test -f .claude/ucai-ship.local.md && echo "EXISTS" || echo "NOT_FOUND"` 2. **If NOT_FOUND**: Say "No active ship pipeline found." 3. **If EXISTS**: - Read `.claude/ucai-ship.local.md` to get the current phase, milestone, and any worktree/branch info - Remove the file using Bash: `rm .claude/ucai-ship.local.md` - Report: "Cancelled ship pipeline (was at Phase N: PhaseName, milestone: M)" 4. **Cleanup warnings** (check each, report what applies): - Run `git worktree list` ...
/cancelPauses in-progress Shipyard work with a git checkpoint tag, updates state to paused, appends history, scans pending tasks, and displays resumption summary.
/buidl-cancelCancels the currently running loop by marking its state as cancelled. Preserves worktree, branch, session directory, and PR (if created) for manual resumption or cleanup.
/shipShips branch to target (default main) via PR creation, documentation updates, and human-approved merge. Supports --dry-run, --skip-docs, --squash|--preserve flags.
/worktree-cleanupCleans up Git worktree after PR completion: removes worktree and merged branch, checks PR status, warns on checklists/uncommitted changes, shows stats.
/shipShips ticket branch autonomously: verifies build/tests, pushes code, creates/merges PR to main, cleans up worktree. Supports /ship T-{N}.
Share bugs, ideas, or general feedback.
To 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.