スキル一覧に戻る
Row0902

manage-git-flow

by Row0902

0🍴 0📅 2026年1月21日
GitHubで見るManusで実行

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 panel
  • fix(auth): resolve token refresh timeout
  • refactor(core): split large config file
  • docs(readme): update installation steps
  • chore(deps): upgrade wxpython

Rule: Small, atomic commits.

3. Finishing a Task

  1. Verify: Run uv run pytest.
  2. Lint: Run uv run ruff check.
  3. 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-commit checks manualy or verify they would pass?
  • Is the commit message semantic?
  • Did I delete valid code or just commented it out? (Delete it).

スコア

総合スコア

35/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
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です