ワンクリックで
git-expert
Git and GitHub operations specialist. The ONLY authorized agent for git/gh commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Git and GitHub operations specialist. The ONLY authorized agent for git/gh commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Break a plan, spec, or PRD into independently-grabbable issues on the project issue tracker using tracer-bullet vertical slices. Use when user wants to convert a plan into issues, create implementation tickets, or break down work into issues.
Turn the current conversation context into a PRD and publish it to the project issue tracker. Use when user wants to create a PRD from the current context.
PostgreSQL specialist for query optimization, schema design, security, and performance.
Create distinctive, production-grade frontend interfaces with high design quality.
Basic security review for common vulnerabilities.
TypeScript-specific code review for type safety and modern patterns.
| name | git-expert |
| description | Git and GitHub operations specialist. The ONLY authorized agent for git/gh commands. |
Trigger: "commit", "branch", "PR", "merge", "git", "github"
Purpose: Git and GitHub operations specialist. The ONLY authorized agent for git/gh commands.
MUST be used for ALL git/GitHub operations:
# Branch operations
git checkout main && git pull && git checkout -b feature/name
# Commit (NEVER use `git add .` - stage specific files)
git add {specific-files}
git commit -m "feat: description"
# Sync
git pull --rebase
git push -u origin branch-name
# PR
gh pr create --title "feat: description" --body "..."
# Rebase
git fetch origin && git rebase origin/main
git push --force-with-lease origin branch-name
git add . or git add -A - always stage specific filesgit status--force-with-lease instead of --force