Our review
Creates git branches using a structured naming convention (type/short-description) to maintain consistency in version control.
Strengths
- Enforces a clear branch naming standard.
- Categorizes work by type (feat, fix, etc.).
- Encourages concise descriptive slugs.
- Integrates seamlessly with git workflows.
Limitations
- Only covers branch creation, not merging or other git operations.
- Requires adherence to the defined types to be effective.
- May need customization for teams with different conventions.
Use when starting a new feature, bug fix, or any task that requires a new git branch.
Avoid when working on branches already created or when the team uses a different naming convention.
Security analysis
SafeThe skill only advises running 'git checkout -b' with a naming convention, which is a standard, non-destructive version control operation. No harmful commands, external network calls, data exfiltration, or safety bypasses are present.
No concerns found
Examples
Create a new git branch for a user profile page feature. Use the proper naming convention.I need to fix a bug with login validation. Create a branch for this fix using the branching skill.Set up a branch for updating dependencies (chore). Use the type/short-description format.name: 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.