ワンクリックで
ship
Ship current branch — CI, SonarCloud, code review, security review, fix all issues, merge. Assumes code is already committed and pushed.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Ship current branch — CI, SonarCloud, code review, security review, fix all issues, merge. Assumes code is already committed and pushed.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
For each DRAFT requirement in a given Ground Control wave (or all waves), ensure a GitHub issue covers it and is bidirectionally linked. Use when the user asks to "cover wave N requirements with issues", "back-fill issues for draft requirements", or similar. Requires the Ground Control MCP and `gh` CLI.
Stage files, run pre-commit, fix failures, loop until clean
Monitor GitHub workflows, propose fixes for failures, and report status
SOC 職業分類に基づく
| name | ship |
| description | Ship current branch — CI, SonarCloud, code review, security review, fix all issues, merge. Assumes code is already committed and pushed. |
| disable-model-invocation | true |
Assumes code is already committed and pushed. Handles: PR creation, CI monitoring, SonarCloud, code review, security review, fixing all issues, and merging.
IMPORTANT: NEVER include Co-Authored-By, "Generated with Claude Code", or any Claude/AI attribution in commit messages, PR descriptions, or any other artifacts.
git branch --show-currentgh pr list --head <branch> --json number,urlgh pr create --base dev --title "<concise title>" --body "<description>"
gh run list --branch <branch> --limit 1 --json status,conclusion,databaseIdgh run watch <id>gh run view <id> --log-failedgit add, git commit, git push.get_project_quality_gate_status with project key Brad-Edwards_aptl to check the quality gate.search_sonar_issues_in_projects to find new issues on the current branch.git add, git commit, git push.CRITICAL: You MUST use the Skill tool to invoke the built-in review skill.
git fetch origin dev && git merge origin/devskill="review" to invoke the real built-in code review.CRITICAL: You MUST use the Skill tool to invoke the built-in security-review skill.
skill="security-review" to invoke the real built-in security review.If ANY fixes were made in Phases 4-5:
git add all changed files.git commit -m "Fix code review and security review findings"git pushYou MUST NOT merge the PR. You MUST NOT run gh pr merge. The user reviews and merges.