CLI tool to standardize AI-generated projects with templates, rules enforcement, and automation
Install
npx skillscat add hivellm/rulebook/skills-rulebook-git-workflow Install via the SkillsCat registry.
SKILL.md
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 #123Pull Request Guidelines
PR Title
feat(scope): short descriptionPR Description
## Summary
Brief description of changes.
## Changes
- Change 1
- Change 2
## Testing
How this was tested.
## Checklist
- [ ] Tests pass
- [ ] Lint passes
- [ ] Documentation updatedWorkflow 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