بنقرة واحدة
ship
Commit changes and create a GitHub PR in one step. Use after completing a task.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Commit changes and create a GitHub PR in one step. Use after completing a task.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Audit Android screens against Figma designs with two-phase verification. Phase 1 agents find mismatches, Phase 2 agents independently verify before creating issues. Usage: /audit-figma [screen-name-or-figma-url] or /audit-figma all
Create a PR for Figma implementation work. Verifies before/after screenshots exist, uploads them to the PR, and ensures quality standards are met. Usage: /create-figma-pr
Implement a Figma design change with before/after screenshot capture. Takes a GitHub issue or Figma URL, fetches the design, captures a "before" screenshot, implements the fix, captures an "after" screenshot, and prepares everything for PR. Usage: /implement-figma <issue-number-or-figma-url>
Stage, commit, and optionally push changes. Use after completing a task.
Create a new git branch from conversation context. Use when starting work on an issue or feature.
Create a GitHub PR with optional issue linking. Use after committing and pushing changes.
| 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 Sonnet 4.6 <noreply@anthropic.com>
EOF
)"
./gradlew lint
git push -u origin $(git branch --show-current)
Extract issue reference if provided (#42 or issue URL), or from branch name pattern ^\d+-.
gh pr create --title "short description" --body "$(cat <<'EOF'
## Summary
- Brief description of changes
## Issue
Closes #42
## Test Plan
- [ ] Manual testing steps
- [ ] Lint passes (`./gradlew lint`)
- [ ] Debug build succeeds (`./gradlew assembleDebug`)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
EOF
)"
Print the PR URL so the user can review it.
Co-Authored-By trailer in both commit and PR.env, credentials, or secrets--no-verify unless explicitly asked