skills/plan-branch-strategy/SKILL.md
Creates the feature branch for planned work. Use at planning time before any code edits, or when the feature-branch hook blocks an edit on main.
npx skillsauth add pkuppens/pkuppens plan-branch-strategyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
HOOK:FEATURE_BRANCH_REQUIREDSee CLAUDE.md § Git Workflow for the canonical convention. Common prefixes (gitflow-style):
| Prefix | Use when |
|--------|----------|
| feature/NNN-… | New feature (most common) |
| hotfix/NNN-… | Urgent production fix |
| chore/… | Tooling, config, docs |
| epic/NNN-… | Large effort spanning multiple issues |
Repo conventions may vary; check the project’s CLAUDE.md or contribution docs.
gh issue list or conversation context).git checkout -b <prefix>/<NNN>-<slug>.git branch --show-current.git checkout -b feature/42-plan-mode-checklist
git branch --show-current # → feature/42-plan-mode-checklist
testing
Syncs remote default branch locally (checkout, fetch --prune, pull) and returns to the previous branch when it still exists. Reports stashes and worktrees not yet handled. Use when the user asks to sync main, update default branch, fetch/pull origin, or run /sync-branch.
tools
Creates, queries, updates, and links Azure Boards work items via az boards CLI. Use when filing ADO work items, running WIQL queries, or setting area path, iteration, tags, and assignee.
tools
Creates, reviews, and completes Azure Repos pull requests and branch policies via az repos CLI. Use when opening ADO PRs, setting required reviewers, or configuring build validation policies.
development
Guides Azure Pipelines YAML structure, build validation on PRs, and staged deployment with environments and approvals. Use when authoring azure-pipelines.yml or configuring CI/CD on Azure DevOps.