Claude Code Plugins

Community-maintained marketplace

Feedback

gitを使用する際に使用。Conventional Commitsとブランチ命名をカバー。

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name git-workflow
description gitを使用する際に使用。Conventional Commitsとブランチ命名をカバー。

Git Workflow

Conventional Commits

<type>(<scope>): <description>
タイプ 用途 バージョン
feat 新機能 MINOR
fix バグ修正 PATCH
docs ドキュメント -
refactor リファクタリング -
test テスト -

feat(auth): add JWT refresh endpoint
fix(api): prevent race condition
feat!: change auth to OAuth 2.0  # ⚠️ 破壊的変更

ブランチ命名

feat/user-authentication
fix/login-redirect

コミット粒度

1コミット = 1つの論理的変更

ロックファイル

⚠️ 必ずコミット: package-lock.json, yarn.lock, poetry.lock

🚫 禁止

# 共有ブランチでの --force は禁止
git push --force  # ❌