Our review
Creates git branches following a type/short-description naming convention to organize work.
Strengths
- Clear and consistent naming for all team members
- Automatic categorization of work type (feat, fix, docs, etc.)
- Simplifies branch tracking and search
Limitations
- Does not cover all possible cases (e.g., release branches)
- No automatic validation without an additional hook
When starting a new task or feature to create a branch with a standardized name.
When the team already uses another established naming convention or a specific workflow (e.g., Git Flow).
Security analysis
SafeThe skill only instructs creating a git branch using standard naming conventions and git commands. No destructive, exfiltrating, or unsafe actions.
No concerns found
Examples
Create a branch for adding infinite scroll to the feedCreate a branch to fix the album path validation bugCreate a branch to add pre-commit hooks to the projectname: branch description: Creates git branches with proper naming. Use when creating branches, starting new work, or switching to feature branches.
Branch Naming
Use type/short-description format.
Types
feat: User-facing features or behavior changes (must change production code)fix: Bug fixes (must change production code)docs: Documentation onlystyle: Code style/formatting (no logic changes)refactor: Code restructuring without behavior changetest: Adding or updating testschore: CI/CD, tooling, dependency bumps, configs (no production code)
Examples
feat/infinite-scroll
fix/album-path-validation
refactor/state-management
chore/pre-commit-hooks
docs/update-readme
test/e2e-login-flow
Instructions
- Determine the type based on what the work will accomplish
- Choose a short, descriptive slug (2-4 words, hyphenated)
- Create the branch:
git checkout -b type/short-description
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.