git-workflow
Installation
SKILL.md
Git Workflow
Automate Git workflows based on project-specific configuration. This skill reads a config file (.claude/git-workflow.local.md) to understand the project's branch strategy, commit conventions, and release procedures, then executes the appropriate workflow.
When no config file exists, guide the user through interactive setup to create one.
Subcommands
The user invokes this skill with one of the following intents. Detect the intent from the user's message and execute the corresponding workflow.
| Intent | Trigger phrases | Workflow |
|---|---|---|
| commit | "commit", "コミット" | Commit Workflow |
| pr | "PR", "pull request", "push and PR", "プルリクエスト" | Push & PR Workflow |
| release | "release", "リリース" | Release Workflow |
| branch | "new branch", "feature branch", "ブランチ作成" | Branch Creation |
| cleanup | "clean up branches", "ブランチ整理" | Branch Cleanup |
| setup | "setup", "configure", "設定" | Interactive Config Setup |