一键导入
git-workflow
Git運用・ブランチ戦略・コミット規約・PR管理の包括的なガイド。ブランチ戦略の選択、コミットメッセージ規約、コンフリクト解決、Git hooks活用など、Gitに関する全ての判断基準と手順を提供します。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Git運用・ブランチ戦略・コミット規約・PR管理の包括的なガイド。ブランチ戦略の選択、コミットメッセージ規約、コンフリクト解決、Git hooks活用など、Gitに関する全ての判断基準と手順を提供します。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
コンピュータサイエンスの基礎知識を網羅的にカバー。ハードウェアの仕組みからデータ表現、アルゴリズム、データ構造、計算理論、プログラミングパラダイム、ソフトウェアエンジニアリング基礎まで、エンジニアに必要な全てのCS基礎知識を体系的に解説。
Fundamentals of modern web development. Framework selection (React, Vue, Next.js), project architecture, state management, routing, build tools, and CSS strategy best practices.
A comprehensive guide covering the fundamentals of computer science. From hardware internals and data representation to algorithms, data structures, computation theory, programming paradigms, and software engineering basics — a systematic guide to all the CS foundations every engineer needs.
DJテクニック(Rekordbox 7.2.7)と楽曲制作(Ableton Live 12 Suite)を体系的に学べる包括的なガイド。基礎音楽理論から応用テクニック、キャリア構築まで、DJ・音楽プロデューサーに必要な全スキルをカバー。
CLIツール開発ガイド。Node.js(Commander、Inquirer)、Python(Click、Typer)、Go(Cobra)、引数パース、インタラクティブUI、アーキテクチャ設計、テスト、配布方法など、プロフェッショナルなCLIツール開発のベストプラクティス。
スクリプト開発ガイド。Shell、Python、Node.jsスクリプト、自動化、バッチ処理、環境変数管理など、効率的なスクリプト開発のベストプラクティス。
| name | git-workflow |
| description | Git運用・ブランチ戦略・コミット規約・PR管理の包括的なガイド。ブランチ戦略の選択、コミットメッセージ規約、コンフリクト解決、Git hooks活用など、Gitに関する全ての判断基準と手順を提供します。 |
このSkillは、Gitを使った開発ワークフローの全てをカバーします:
このガイドで学べること: ブランチ戦略の選択、コミット規約、PR運用、コンフリクト解決、Git hooks活用 公式で確認すべきこと: 最新のGit機能、GitHub/GitLab新機能、セキュリティベストプラクティス
Git Documentation - Git公式ドキュメント
GitHub Documentation - GitHub公式ガイド
Conventional Commits - コミットメッセージ規約
GitLab Documentation - GitLab公式ドキュメント
プロジェクトに応じて最適なブランチ戦略を選択:
| 戦略 | 適用ケース | 詳細ガイド |
|---|---|---|
| GitHub Flow | 継続的デプロイ、小規模チーム | guides/01-github-flow.md |
| Git Flow | 定期リリース、大規模プロジェクト | guides/02-git-flow.md |
| Trunk-Based | 高頻度デプロイ、成熟したCI/CD | guides/03-trunk-based.md |
<type>/<ticket-number>-<short-description>
例:
feature/PROJ-123-add-user-authentication
bugfix/PROJ-456-fix-memory-leak
hotfix/PROJ-789-critical-crash-fix
詳細: guides/04-branch-naming.md
全てのコミットメッセージは以下の形式に従う:
<type>(<scope>): <subject>
<body>
<footer>
| Type | 説明 | 例 |
|---|---|---|
feat | 新機能 | feat(auth): add biometric authentication |
fix | バグ修正 | fix(ui): resolve layout issue on iPad |
refactor | リファクタリング | refactor(network): simplify API client |
perf | パフォーマンス改善 | perf(images): implement lazy loading |
test | テスト追加・修正 | test(login): add unit tests for validation |
docs | ドキュメント | docs(readme): update installation steps |
chore | ビルド・設定等 | chore(deps): update dependencies |
ci | CI/CD | ci(github): add caching to workflow |
詳細ガイド: guides/05-commit-messages.md
## 概要
<!-- 何を変更したか簡潔に -->
## 変更内容
<!-- 主な変更点を箇条書き -->
-
-
## 動作確認
<!-- テスト方法・確認項目 -->
- [ ] 単体テスト実行
- [ ] 実機での動作確認
- [ ] UIテスト実行
## スクリーンショット
<!-- 必要に応じて -->
## 関連Issue
Closes #XXX
詳細: guides/07-conflict-resolution.md
| 状況 | 推奨 | 理由 |
|---|---|---|
| featureブランチの更新 | Rebase | 履歴を綺麗に保つ |
| mainへのマージ | Merge (Squash) | PRの履歴を保持 |
| 公開済みブランチ | Merge | 履歴改変を避ける |
詳細: guides/08-rebase-vs-merge.md
branch-creator-agent
quickcommit-validator-agent
quickpr-reviewer-agent
mediumconflict-resolver-agent
thoroughpr-validator-agent (quick) +
commit-history-checker-agent (quick) +
branch-policy-checker-agent (quick)
→ 結果統合 → PRコメント
final-review-agent (thorough)
→ test-runner-agent (medium)
→ merge-safety-checker-agent (quick)
→ マージ実行
Task: PRの自動レビューを実行
Agent: pr-reviewer-agent
Skill: git-workflow
Thoroughness: medium
Parameters:
- check_commit_messages: true
- check_branch_name: true
- check_pr_description: true
- auto_comment: true
# 新しいfeatureブランチ作成
git checkout -b feature/PROJ-123-description
# コミット
git add .
git commit -m "feat(scope): description"
# mainの変更を取り込む(rebase)
git fetch origin
git rebase origin/main
# PR用にpush
git push -u origin feature/PROJ-123-description
| 問題 | 解決方法 | 詳細 |
|---|---|---|
| コンフリクト発生 | guides/07-conflict-resolution.md | 段階的解決手順 |
| 間違ったコミット | references/undo-commands.md | reset, revert使い分け |
| ブランチ間違い | references/branch-recovery.md | cherry-pickで復旧 |
このSkill自体の変更履歴は CHANGELOG.md を参照