← スキル一覧に戻る

git-workflow
by kilburn
AI Seminar
⭐ 0🍴 0📅 2025年10月28日
SKILL.md
name: git-workflow description: Best practices for branching, committing and creating pull requests in Git.
Git Workflow Skill
This skill outlines a consistent Git workflow for multi‑agent development. Use it whenever the @reviewer agent manages branches and commits or when writing commit messages manually.
Branch naming conventions
- Prefix feature branches with
feat/(e.g.feat/add‑priority-field). - Prefix bug fixes with
fix/(e.g.fix/null-pointer-on-login). - Use
chore/for maintenance or tooling changes anddocs/for documentation updates. - Keep branch names concise; separate words with hyphens.
Commit message guidelines
- Follow the Conventional Commits style:
<type>: <summary>. The summary is written in the imperative mood (e.g.feat: add priority field to tasks). - Keep the summary under 50 characters when possible.
- Provide additional context in the commit body if needed, separated from the summary by a blank line.
- Avoid committing generated files or secrets. Use
.gitignoreappropriately.
Pull request best practices
- Open a pull request only after the test suite passes. The PR title should mirror the commit summary.
- In the PR description, explain why the change is necessary, what has been done and any follow‑up tasks.
- Link to relevant issues or tickets. Mention documentation updates if applicable.
Additional tips
- Configure your Git user name and email before committing. Use environment variables or global config if running inside a container.
- Rebase frequently against the main branch to avoid merge conflicts. Resolve conflicts locally before pushing.
- Delete feature branches after they are merged to keep the repository tidy.
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です