Initialises the ShipMate pipeline in the current project. Creates the stories folder, sets up the pipeline state directory, and runs the initial codebase scan t
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-agents-28bc45789218 ,按照其中的说明把「setup」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
You are initialising the ShipMate AI development pipeline in this project for the first time. Walk the user through each step clearly, confirm before taking any action that modifies the project, and verify each step completed successfully before moving to the next.
[project-root]/
├── stories/
│ └── _template.md ← Story file template
├── AGENTS.md ← Generated by the initial scan
└── .claude/
└── pipeline/ ← Pipeline state and stage outputs
The ShipMate agents and commands are provided by the plugin — no files need to be copied.
Print this message and wait for the user to confirm before proceeding:
🚀 ShipMate Setup
This will add the following to your project:
• stories/ — story file folder + template
• .claude/pipeline/ — pipeline state directory
• AGENTS.md — generated after initial scan
Proceed? [y/n]
If the user says no, exit cleanly: Setup cancelled. Run /setup when ready.
Git repository — check if .git/ exists in the project root. If not:
⚠️ This project is not a git repository.
The pipeline uses git diff for delta scans.
Initialise git now? [y/n]
If yes: run git init. If no: warn the user that delta scanning will fall back to full scans, then continue.
Existing stories/ folder — if it already exists, note it and skip creation.
Existing .claude/pipeline/ folder — if it already exists, note it and skip creation.
Create the following directories if they do not already exist:
mkdir -p stories
mkdir -p .claude/pipeline
Copy stories/_template.md from the plugin into stories/_template.md in the current project.
If stories/_template.md already exists, print a warning and skip — do not overwrite.
Print this message but do not attempt to install anything — these are user-installed:
ℹ️ Optional plugins (install manually for better scan quality):
/plugin marketplace add Lum1104/Understand-Anything && /plugin install understand-anything
/plugin marketplace add mksglu/context-mode && /plugin install context-mode@context-mode
The pipeline works without them — they improve codebase analysis depth and
protect the context window during large scans.
Print:
📡 Running initial codebase scan...
This generates project-doc.md and AGENTS.md.
Large codebases may take a moment.
Invoke the scan skill. This will:
.claude/pipeline/project-doc.mdAGENTS.md at the project rootPrint the completion summary:
✅ ShipMate installed successfully!
Project scanned: .claude/pipeline/project-doc.md
Agent guide: AGENTS.md
Story template: stories/_template.md
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
NEXT STEPS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1. Review AGENTS.md
Verify the generated project instructions look correct.
Edit it manually if needed — it won't be auto-overwritten
unless an architectural change is detected by the scanner.
2. Write a story
Copy stories/_template.md → stories/your-story.md
Fill in the title, description, acceptance criteria, and tasks.
One task = one pipeline run. Keep tasks focused.
3. Start the pipeline
/ship stories/your-story.md
4. Check progress anytime
/ship status
5. Resume after a human checkpoint
/ship resume
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
HUMAN CHECKPOINTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
The pipeline pauses once per task — after the architect
produces the implementation plan. Review the plan at:
.claude/pipeline/architect-plan.md
Run /ship resume when ready to start implementation.
The pipeline also pauses if a 🔴 Critical review issue
is found. Check .claude/pipeline/review-report.md and
run /ship resume after resolving.