Marketplace
rulebook-git-workflow
Git workflow standards including branching strategy, commit conventions, and PR guidelines. Use when creating branches, writing commit messages, preparing pull requests, or following git best practices.
$ 安裝
git clone https://github.com/hivellm/rulebook /tmp/rulebook && cp -r /tmp/rulebook/skills/rulebook-git-workflow ~/.claude/skills/rulebook// tip: Run this command in your terminal to install the skill
SKILL.md
name: rulebook-git-workflow description: Git workflow standards including branching strategy, commit conventions, and PR guidelines. Use when creating branches, writing commit messages, preparing pull requests, or following git best practices. version: "1.0.0" category: core author: "HiveLLM" tags: ["git", "workflow", "branching", "commits", "pull-requests"] dependencies: [] conflicts: []
Git Workflow Standards
Branch Naming
feature/<task-id>-<short-description>
fix/<issue-id>-<short-description>
refactor/<scope>-<description>
docs/<scope>-<description>
Commit Message Format
<type>(<scope>): <subject>
<body>
<footer>
Types
feat: New featurefix: Bug fixdocs: Documentationstyle: Formattingrefactor: Code restructuringtest: Adding testschore: Maintenance
Example
feat(auth): add JWT token validation
Implement JWT validation middleware for protected routes.
Closes #123
Pull Request Guidelines
PR Title
feat(scope): short description
PR Description
## Summary
Brief description of changes.
## Changes
- Change 1
- Change 2
## Testing
How this was tested.
## Checklist
- [ ] Tests pass
- [ ] Lint passes
- [ ] Documentation updated
Workflow Steps
- Create feature branch from main
- Make commits following conventions
- Run quality checks before push
- Create PR with description
- Address review feedback
- Squash and merge
Repository

hivellm
Author
hivellm/rulebook/skills/rulebook-git-workflow
5
Stars
0
Forks
Updated1w ago
Added1w ago