用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bdarbaz/claude-stack-plugin --skill s-ship命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Autonomous workflow loop - runs the full skill chain automatically with circuit breaker and stuck detection
Freeform router - accepts natural language and routes to the appropriate skill(s)
Show all available skills, agents, and workflow guides - quick reference card for claude-stack
基于 SOC 职业分类
正在显示 SKILL.md
| name | s-ship |
| description | Ship workflow - sync, test, version bump, commit, push, and create PR in one command |
One command to go from local branch to open PR. Handles sync, tests, versioning, commit, push, and PR creation.
main or master)git status to check for uncommitted changesmain or master branch. If you are, stop and suggest creating a feature branch firstorigin exists: git remote get-url origingit fetch origingit rebase origin/maingit rebase --continuepackage.json exists with scripts.test: run npm testMakefile exists with test target: run make testpytest.ini or pyproject.toml with pytest config: run pytestCargo.toml exists: run cargo test/s:ship again"VERSION file exists in the project rootMAJOR.MINOR.PATCH)--minor: bump MINOR (e.g., 1.2.3 -> 1.3.0)--major: bump MAJOR (e.g., 1.2.3 -> 2.0.0)VERSIONCHANGELOG.md exists## Unreleased or create a new version section:
## [X.Y.Z] - YYYY-MM-DD
### Changes
- {summary of changes from git log since last tag}
git log --oneline since the last tag or last CHANGELOG entryfeat: for new featuresfix: for bug fixeschore: for maintenancerefactor: for refactoringdocs: for documentationtest: for test-only changesfeat: add user authentication flowgit push -u origin HEADgh pr create to open a PR:
## Summary
- {bullet point summary of changes}
## Test Results
- All tests passing ({test count} tests)
- {any notable test coverage info}
## Checklist
- [ ] Tests pass
- [ ] Code reviewed
- [ ] Documentation updated
- [ ] No breaking changes (or documented)
gh CLI is not available, provide the manual PR URL and instructions.planning/STATE.md if it exists:
| {DATE} | Shipped: {branch-name} | PR #{number} created |Output to the user:
Shipped successfully!
- Branch: {branch-name}
- PR: {pr-url}
- Version: {version} (if applicable)
Next: Run `/s:compound` to capture learnings from this work.
| Flag | Effect |
|---|---|
--minor | Bump minor version instead of patch |
--major | Bump major version instead of patch |
--draft | Create PR as draft |
--no-version | Skip version bump even if VERSION exists |