Refactored commands to extract reusable skills following the Commands → Skills separation pattern. Each command is now <50 lines and references skill files for detailed knowledge. Plugins refactored: - claude-config-maintainer: 5 commands → 7 skills - code-sentinel: 3 commands → 2 skills - contract-validator: 5 commands → 6 skills - data-platform: 10 commands → 6 skills - doc-guardian: 5 commands → 6 skills (replaced nested dir) - git-flow: 8 commands → 7 skills Skills contain: workflows, validation rules, conventions, reference data, tool documentation Commands now contain: YAML frontmatter, agent assignment, skills list, brief workflow steps, parameters Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1.2 KiB
1.2 KiB
name, description, agent
| name | description | agent |
|---|---|---|
| branch-start | Create a new feature/fix/chore branch with consistent naming | git-assistant |
/branch-start - Start New Branch
Skills
- skills/visual-header.md
- skills/branch-naming.md
- skills/git-safety.md
- skills/environment-variables.md
Purpose
Create a new branch with consistent naming conventions, based on the configured base branch.
Parameters
| Parameter | Description |
|---|---|
<description> |
Brief description for branch name |
--type |
Branch type: feat, fix, chore, docs, refactor |
--issue |
Issue number to include in branch name |
Workflow
- Display header - Show GIT-FLOW Branch Start header
- Determine type - Prompt for branch type if not provided
- Get description - Prompt for description if not provided
- Generate name - Convert to kebab-case (per branch-naming.md)
- Validate - Check naming rules, truncate if needed
- Update base - Checkout and pull base branch
- Create branch -
git checkout -b <new-branch> - Confirm - Display created branch info
Output
Branch: feat/add-user-authentication
Base: development @ abc1234
Status: Ready for development