git-workflow
Gitのworktreeとコミットを極める
متاح أيضًا من: Joseph OBrien,0xDarkMatter,Barnhardt-Enterprises-Inc,Joseph OBrien,Doyajin174,0xDarkMatter,AI-Vibe-Prompts
良いコミットを書き、ブランチを管理するのは難しいものです。このスキルは、Git worktreeのワークフロー、Conventional Commits、プルリクエストのベストプラクティスを明確にガイドし、履歴をクリーンで読みやすく保ちます。
تنزيل ZIP المهارة
رفع في Claude
اذهب إلى Settings → Capabilities → Skills → Upload skill
فعّل وابدأ الاستخدام
اختبرها
استخدام "git-workflow". How do I create a worktree for a bug fix?
النتيجة المتوقعة:
- Run: git worktree add ../project-bugfix-login-error fix/login-error
- これでブランチfix/login-errorの../project-bugfix-login-errorに新しいworktreeが作成されます
- 命名規則: ../project-<type>-<description>
- タイプ: feature, bugfix, hotfix, experiment, refactor
استخدام "git-workflow". What are the Conventional Commit types?
النتيجة المتوقعة:
- feat: 新機能 - Adding user authentication
- fix: バグ修正 - Fixing null pointer error
- docs: ドキュメントのみ - Update README
- refactor: コードのリファクタリング - Restructure without behavior change
- perf: パフォーマンス改善 - Optimize algorithm
- test: テストの追加または更新 - Add unit tests
استخدام "git-workflow". Help me write a proper commit message
النتيجة المتوقعة:
- 命令形を使う: add not added
- 件名は最大50文字
- 本文は72文字で折り返す
- 何を・なぜを説明し、どのようにかは書かない
- 例: fix(auth): resolve token expiration issue
التدقيق الأمني
آمنDocumentation-only skill providing Git workflow guidance. All 93 static findings are false positives triggered by markdown documentation patterns. The skill contains only example Git commands, worktree path examples, and commit message formats. No executable code, network calls, or malicious capabilities exist. Scanner misidentified markdown code blocks as Ruby execution, standard Git worktree paths as path traversal, and documentation references as cryptographic algorithms.
عوامل الخطر
🌐 الوصول إلى الشبكة (2)
📁 الوصول إلى نظام الملفات (12)
⚙️ الأوامر الخارجية (56)
درجة الجودة
ماذا يمكنك بناءه
並行機能開発
Git worktreeを使って、コンテキストスイッチやstashなしで複数の機能に取り組む。
コミット標準の徹底
チーム全体でConventional CommitsとPRテンプレートを適用し、一貫した履歴にする。
質の高い貢献を提出
メンテナーに喜ばれるコミットとPRのベストプラクティスに従う。
جرّب هذه الموجهات
Create a Git worktree for a new feature called user-authentication in the parent directory.
Write a Conventional Commit message for adding JWT token refresh to the auth module.
Add a commit trailer referencing GitHub issue #123 as the related issue.
Show me the PR review checklist before requesting review.
أفضل الممارسات
- stashやブランチの切り替えではなく、並行作業にはGit worktreeを使う
- type、scope、命令形を含むConventional Commits形式に従う
- レビューしやすいようにPRは小さく、1つの機能に集中させる
تجنب
- コードレビューなしでmainに直接コミットする
- fix bugやupdateのような曖昧なコミットメッセージを使う
- 無関係な変更を1つのコミットやPRに混在させる