with one click
ship
Full PR workflow - push, create PR, squash merge (no CI wait)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Full PR workflow - push, create PR, squash merge (no CI wait)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
| name | ship |
| description | Full PR workflow - push, create PR, squash merge (no CI wait) |
Complete end-to-end workflow from feature branch to merged main.
Important: CI does NOT run on PRs. You must run /check locally before using this skill.
/check to validate locally (REQUIRED):pnpm lint && pnpm exec tsc --noEmit && pnpm test:run && cd src-tauri && cargo test
git branch --show-current
git push -u origin HEAD
gh pr view 2>/dev/null
gh pr create --fill
gh pr merge --squash --delete-branch
git checkout main
git pull origin main
✓ Local checks passed
✓ Pushed to origin/feature/fix-typo
✓ Created PR #43
✓ Squash merged PR #43
✓ Switched to main
Done! Commit abc1234 is now on main.
CI will run on main after merge.
/check and CI fails after merge, fix immediately on main or revert