소스 정보
- 저장소
- bdarbaz/claude-stack-plugin
- 최근 소스 활동
- 2026년 3월 16일 20:49
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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 |