with one click
branch
Create a new feature branch with proper naming conventions
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create a new feature branch with proper naming conventions
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
| name | branch |
| description | Create a new feature branch with proper naming conventions |
Creates a new git branch with consistent naming following project conventions.
Ask the user for:
feature/, fix/, refactor/, or docs/Fetch the latest from origin:
git fetch origin main
git checkout -b <type>/<branch-name> origin/main
git branch --show-current
| Prefix | Use Case |
|---|---|
feature/ | New features and capabilities |
fix/ | Bug fixes |
refactor/ | Code improvements without behavior changes |
docs/ | Documentation updates |
feature/add-task-filtersfix/dark-mode-calendarrefactor/simplify-sync-logicdocs/update-api-referenceorigin/main for clean history