← Back to list

manage-git-flow
by Row0902
⭐ 0🍴 0📅 Jan 21, 2026
SKILL.md
name: Manage Git Flow description: Standard procedure for git operations, conventional commits, and branching.
🌿 Git Flow Management Skill
Context
Maintain a clean history and strict semantic versioning practices.
1. Starting a Task (Feature Branch)
# Format: type/short-description
git checkout -b feat/add-login-ui
# OR
git checkout -b fix/auth-timeout
2. Work & Commit (Conventional Commits)
Format: <type>(<scope>): <description>
feat(ui): add new login panelfix(auth): resolve token refresh timeoutrefactor(core): split large config filedocs(readme): update installation stepschore(deps): upgrade wxpython
Rule: Small, atomic commits.
3. Finishing a Task
- Verify: Run
uv run pytest. - Lint: Run
uv run ruff check. - Merge:
- (Agent typically works on current branch, but if simulating merge):
git checkout main git merge --squash feat/add-login-ui git commit -m "feat(ui): add login panel implementation" git branch -D feat/add-login-ui
Checklist
- Did I run
pre-commitchecks manualy or verify they would pass? - Is the commit message semantic?
- Did I delete valid code or just commented it out? (Delete it).
Score
Total Score
35/100
Based on repository quality metrics
✓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
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon