help
Explain Ship commands, workflow, and framework usage
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Explain Ship commands, workflow, and framework usage
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Use when a feature plan has been verified and is ready for implementation — executes tasks with atomic commits
Use when you want to auto-run all remaining Ship steps for a feature without manual step-by-step invocation
Use when a feature has been brainstormed and needs a detailed implementation plan with tasks
Use when a brainstormed feature needs architectural decisions — presents 2-3 approaches for user to choose before planning
Use when a plan has been created and needs independent verification against codebase patterns before building
Use when beginning new feature work, adding functionality, or fixing a bug — runs intensive brainstorming to capture requirements before planning
| name | help |
| description | Explain Ship commands, workflow, and framework usage |
| when_to_use | TRIGGER when: user says "help", "how does Ship work", or asks about the framework. DO NOT TRIGGER when: asking about non-Ship topics. |
| effort | low |
| allowed-tools | [] |
!for f in .planning/features/*/CONTEXT.md; do [ -f "$f" ] && d=$(dirname "$f") && echo "$(basename "$d"): $(sed -n 's/^status: *//p' "$f")"; done 2>/dev/null; true
Display the Ship command reference:
Ship — Feature-centric development framework for Claude Code
Commands:
/ship:start "idea" Start brainstorming a new feature or fix
/ship:design Compare architecture approaches and let user choose (optional)
/ship:plan Create implementation plan from CONTEXT.md
/ship:plan-verify Verify plan against codebase patterns before building
/ship:build Execute the plan with atomic commits
/ship:verify Verify implementation against acceptance criteria
/ship:go Auto-run remaining steps (plan → plan-verify → build → verify)
/ship:finish Complete a feature (create PR, merge, or keep branch)
/ship:status Show all features and their status
/ship:resume Pick up where you left off on a feature
/ship:help Show this reference
Flow:
start → [design →] plan → plan-verify → build → verify → finish
(or just: start → go → finish)
Feature directory: .planning/features/{name}/
CONTEXT.md Brainstorm output (problem, decisions, acceptance criteria)
PLAN.md Implementation plan with tasks
VERIFY.md Verification report
$ARGUMENTS