skills/plan/SKILL.md
Breaks work into tasks, estimates, dependencies, branch strategy. Ensures implementation plans include feature-branch workflow and completion through PR with CI validation. Use when creating implementation plans, decomposing issues, or in plan mode.
npx skillsauth add pkuppens/pkuppens planInstall 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.
Decomposes work into tasks, dependencies, and branch strategy per SKILL_TREE §6. Plans must include validation before implementation, then the full workflow through PR and CI.
Before creating branches or editing code:
git log, merged PRs.Stop if the issue is obsolete, duplicate, or not ready. Do not proceed to implementation until validation is complete.
Every implementation plan must include these steps:
main before any edits. Use a branch prefix per repo convention: feature/NNN-…, hotfix/NNN-…, chore/…, epic/…. See plan-branch-strategy. Execute all plan tasks on this branch; never implement on main.main; or single pipeline on PR. Check .github/workflows/ or equivalent for the repo’s setup. Confirm N/A for markdown-only repos.Summary: Validate first; work from a feature branch; complete through PR; do not stop until PR is open and CI has validated (or N/A).
When the project or issue calls for traceability (pairing specs/design with tests), follow v-model. On an existing codebase, default to touch-driven v-model-retrofit: strengthen tests and minimal docs only for the surfaces changed in this issue unless the user or issue explicitly requests a wider retrofit (retrofit:explicit).
| Sub-skill | Use when | |-----------|----------| | plan-tasks (6.1) | Decomposing into ordered subtasks | | plan-dependencies (6.2) | Identifying task dependencies and critical path | | plan-branch-strategy (6.3) | Selecting branch prefix and creating feature branch |
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.