← Back to list

git-workflow
by nategarelik
Personal Claude Code configuration implementing AGENTICSET methodology
⭐ 0🍴 0📅 Jan 8, 2026
SKILL.md
name: git-workflow description: "Auto-load for git operations. Provides branching strategy, commit conventions, and PR workflow."
Git Workflow
Branch Naming
feat/ - New features (feat/user-auth)
fix/ - Bug fixes (fix/login-redirect)
refactor/ - Code refactoring (refactor/api-client)
docs/ - Documentation (docs/api-readme)
test/ - Test additions (test/user-service)
chore/ - Maintenance (chore/update-deps)
Commit Message Format (Conventional Commits)
<type>(<scope>): <description>
[optional body]
[optional footer]
Types
feat: New featurefix: Bug fixrefactor: Code change (no feature/fix)docs: Documentation onlytest: Adding testschore: Maintenance tasksperf: Performance improvement
Examples
feat(auth): add OAuth2 login flow
fix(api): resolve race condition in data fetch
refactor(utils): extract validation logic
docs(readme): update installation steps
test(user): add integration tests for signup
PR Workflow
Creating PRs
# Create feature branch
git checkout -b feat/my-feature
# Make changes, commit
git add .
git commit -m "feat: add new feature"
# Push and create PR
git push -u origin feat/my-feature
gh pr create --title "feat: add new feature" --body "Description"
PR Description Template
## Summary
Brief description of changes
## Changes
- Change 1
- Change 2
## Testing
How to test these changes
## Screenshots (if UI)
Common Operations
# View status
git status
# Stage changes
git add . # All
git add path/to/file # Specific
# Commit
git commit -m "type: message"
# View history
git log --oneline -20
# See who changed a line
git blame path/to/file
# Undo last commit (keep changes)
git reset --soft HEAD~1
# Stash changes
git stash
git stash pop
# Rebase on main
git fetch origin
git rebase origin/main
Golden Rules
- Never commit directly to main
- Keep commits atomic (one logical change)
- Write meaningful commit messages
- Review diff before committing
- Pull/rebase before pushing
Score
Total Score
50/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
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon