End-to-end shipping routine after a feature is complete and user-reviewed. Runs PR review, updates CLAUDE.md with learnings, commits/pushes/opens a PR, then watches CI and review comments — fixing any failures or feedback automatically. Use this skill whenever the user says "ship it", "ship this", "/ship", "ready to ship", "let's ship", "create a PR and watch it", or indicates they're done with a feature and want to get it merged.
Orchestrate the full shipping pipeline after a feature implementation is complete. The user has already reviewed the changes and is ready to go — your job is to get the PR open, green, and ready for merge.
Run these steps sequentially. Each step must complete before moving to the next.
Invoke the /pr-review-toolkit:review-pr skill to review the current diff. If the review surfaces high-confidence issues (real bugs, security problems, logic errors), fix them before proceeding. Minor style nits that don't affect correctness can be noted but shouldn't block shipping.
Invoke the /claude-md-management:revise-claude-md skill to capture any learnings from this session into the project's CLAUDE.md files. This keeps project context fresh for future sessions.
Invoke the /commit-commands:commit-push-pr skill to stage changes, create a commit, push the branch, and open a pull request on GitHub.
After the PR is created, monitor it for CI results and review comments. This is a loop — keep watching until the PR is green and has no unresolved comments.
gh pr checks <pr-number> --watch to wait for CI to completegh run view <run-id> --log-failed to see what went wronggh api repos/{owner}/{repo}/pulls/<pr-number>/comments to check for review commentsgh api repos/{owner}/{repo}/pulls/<pr-number>/reviews for review-level feedback