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>
46 lines
1.2 KiB
Markdown
46 lines
1.2 KiB
Markdown
---
|
|
name: branch-start
|
|
description: Create a new feature/fix/chore branch with consistent naming
|
|
agent: 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
|
|
|
|
1. **Display header** - Show GIT-FLOW Branch Start header
|
|
2. **Determine type** - Prompt for branch type if not provided
|
|
3. **Get description** - Prompt for description if not provided
|
|
4. **Generate name** - Convert to kebab-case (per branch-naming.md)
|
|
5. **Validate** - Check naming rules, truncate if needed
|
|
6. **Update base** - Checkout and pull base branch
|
|
7. **Create branch** - `git checkout -b <new-branch>`
|
|
8. **Confirm** - Display created branch info
|
|
|
|
## Output
|
|
|
|
```
|
|
Branch: feat/add-user-authentication
|
|
Base: development @ abc1234
|
|
Status: Ready for development
|
|
```
|