with one click
commit
Stage, commit, and optionally push changes. Use after completing a task.
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
Stage, commit, and optionally push changes. Use after completing a task.
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
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 | commit |
| description | Stage, commit, and optionally push changes. Use after completing a task. |
| disable-model-invocation | true |
git status
git diff --staged
git diff
Stage specific files (never git add . or git add -A):
git add <specific-files>
Use conventional commit types: feat, fix, refactor, chore, docs, test, style, perf
git commit -m "$(cat <<'EOF'
feat: add TRC20 token transfer support
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
git push
type: description or type(scope): descriptionCo-Authored-By trailer.env, credentials, or secrets--no-verify unless explicitly asked| Type | Use for |
|---|---|
feat | New feature or capability |
fix | Bug fix |
refactor | Code restructuring without behavior change |
chore | Build, CI, dependency updates |
docs | Documentation only |
test | Adding or updating tests |
style | Formatting, whitespace, lint fixes |
perf | Performance improvements |