From automation
Create a new git branch following the Conventional Branch naming convention.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin finstreet-fe-claude-pluginsThis skill uses the workspace's default tool permissions.
Create a new git branch following the [Conventional Branch](https://conventional-branch.github.io/#summary) naming convention.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Create a new git branch following the Conventional Branch naming convention.
Branches must follow this pattern:
<type>/<ticket>-<description>
| Type | Description |
|---|---|
feature | New feature or enhancement |
bugfix | Bug fix (non-production) |
hotfix | Critical production fix |
release | Release preparation |
docs | Documentation only |
refactor | Code refactoring |
test | Adding or updating tests |
chore | Maintenance tasks |
eb-XXXX (e.g., eb-1250)<type>/<description> without ticketfeature/eb-1250-user-authenticationbugfix/eb-1189-fix-login-redirecthotfix/eb-1300-critical-payment-fixrefactor/eb-1275-cleanup-api-callschore/update-dependencies (no ticket - rare)Execute these steps in order:
If arguments were provided via $ARGUMENTS, parse them for ticket number, type, and description.
Otherwise, ask the user for:
feature)# Switch to dev branch
git checkout dev
# Pull latest changes
git pull origin dev
# Create and switch to new branch
git checkout -b <type>/<ticket>-<description>
After creating the branch, confirm to the user:
git push -u origin <branch-name> when ready