Help us improve
Share bugs, ideas, or general feedback.
From rulebook
Provides Git workflow standards including branch naming, conventional commits, and PR guidelines. Use when creating branches, writing commits, or preparing PRs.
npx claudepluginhub hivellm/rulebook --plugin rulebookHow this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-git-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
Enforces commit message formats, PR descriptions, and branch naming conventions to maintain a clean and traceable git history.
Guides Git workflows with branching strategies (GitHub Flow, Git Flow), conventional commit messages, branch naming, PR templates, and operations like rebase. Use for Git ops, commits, branches, team workflows.
Enforces Git workflow standards including Conventional Commits, branch naming, and PR merge strategies for team collaboration.
Share bugs, ideas, or general feedback.
feature/<task-id>-<short-description>
fix/<issue-id>-<short-description>
refactor/<scope>-<description>
docs/<scope>-<description>
<type>(<scope>): <subject>
<body>
<footer>
feat: New featurefix: Bug fixdocs: Documentationstyle: Formattingrefactor: Code restructuringtest: Adding testschore: Maintenancefeat(auth): add JWT token validation
Implement JWT validation middleware for protected routes.
Closes #123
feat(scope): short description
## Summary
Brief description of changes.
## Changes
- Change 1
- Change 2
## Testing
How this was tested.
## Checklist
- [ ] Tests pass
- [ ] Lint passes
- [ ] Documentation updated