con un clic
ship
Commit changes and create a GitHub PR in one step. Use after completing a task.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Commit changes and create a GitHub PR in one step. Use after completing a task.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Implement UI from Figma designs via MCP with a closed-loop pixel-parity check. Extract exact values (never eyeball), translate to SwiftUI, then render→diff→fix against the Figma export until it matches. Use when implementing or auditing UI against Figma.
HTTP networking layer reference — TargetType, HTTPClient, services, error handling.
Fetch CodeRabbit review comments from batch PRs and auto-fix the issues. Pushes fixes and re-requests review.
Run multiple tasks overnight as parallel PRs. Produces a PRD per task, selects skills/rules, spawns isolated agents, and reports PR links.
Run multiple tasks overnight as parallel PRs. Produces a PRD per task, selects skills/rules, spawns isolated agents, and reports PR links.
Run SwiftLint and xcodebuild to verify the project compiles cleanly.
| name | ship |
| description | Commit changes and create a GitHub PR in one step. Use after completing a task. |
| disable-model-invocation | true |
/ship or /ship #42 (with GitHub issue)
git status
git diff --staged
git diff
git log --oneline main..HEAD
git branch --show-current
Stage specific files (never git add . or git add -A):
git add <specific-files>
git commit -m "$(cat <<'EOF'
feat: add TRC20 token transfer support
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
swiftlint lint --config VultisigApp/.swiftlint.yml VultisigApp/
git push -u origin $(git branch --show-current)
Extract issue reference if provided (#42 or issue URL), or from branch name pattern.
gh pr create --title "short description" --body "$(cat <<'EOF'
## Summary
- Brief description of changes
## Issue
Closes #42
## Test Plan
- [ ] Manual testing steps
- [ ] SwiftLint passes
- [ ] Build succeeds (xcodebuild)
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
Print the PR URL so the user can review it.
type: descriptionCo-Authored-By trailer in both commit and PR.env, credentials, or secrets--no-verify unless explicitly asked