plugins/sdlc-utils/skills/plan/SKILL.md
Planning and requirements for software development. Use when the user asks to "define requirements", "draft requirements", "iterate on a spec", "refine a spec", "break down a task", "plan implementation", or mentions task breakdown and iterative requirements development. Guides iterative specification development through research, review, and refinement cycles rather than one-shot generation. For spec lifecycle management (draft -> reviewed -> live), use sdlc-utils:spec-writing instead.
npx skillsauth add nsheaps/ai-mktpl 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.
See also:
sdlc-utils:spec-writingcovers spec lifecycle management (moving specs through draft -> reviewed -> live -> archive states, updating specs during implementation, and verifying implementation against specs). Useplanwhen starting from scratch or iterating on requirements; usespec-writingwhen managing an existing spec through its lifecycle.
Write technical specifications through iterative refinement. Each spec is a combined document covering both Problem & Requirements (what and why) and Technical Design (how). Never attempt to produce a complete specification in one pass. Instead, start with the smallest meaningful definition and expand through repeated cycles of research, drafting, review, and refinement.
Specifications written in one pass suffer from blind spots, unstated assumptions, and missing edge cases. The iterative approach treats a spec as a living document that grows in fidelity through deliberate cycles.
The cycle:
Seed -> Draft -> Research -> Review -> Refine -> (repeat until sufficient)
Each pass through the cycle adds detail, resolves ambiguity, and surfaces new questions. Stop iterating when the spec is actionable enough for the next phase (design, implementation, or review).
Start with a one-paragraph problem statement. Capture only:
Do NOT attempt to define solutions, features, or acceptance criteria yet. The seed exists to anchor all future iteration.
Expand the seed into a skeleton spec using the template structure in
../spec-writing/references/spec-template.md. Fill in only what is known with confidence.
Mark unknowns explicitly with [TBD] or [NEEDS RESEARCH].
Key sections to draft first:
Sections to leave sparse:
Before adding detail, investigate:
AskUserQuestion for focused queries.Document findings inline in the spec or in a companion research file.
After each research pass, review the draft against these criteria:
| Criterion | Question to ask | | ---------------- | --------------------------------------------------- | | Clarity | Could someone unfamiliar implement from this? | | Completeness | Are there gaps marked [TBD] that can now be filled? | | Consistency | Do requirements contradict each other? | | Testability | Can each requirement be verified? | | Scope discipline | Is anything included that shouldn't be? |
Refine the document, then decide:
Once the spec has enough fidelity, decompose requirements into implementable tasks. Each task should be:
Organize tasks by priority (must-have, should-have, nice-to-have) or by component grouping.
After the spec and tasks are drafted, define explicit next steps:
Store specs according to the project's spec conventions:
docs/specs/draft/<spec-name>.md # Initial drafts
docs/specs/reviewed/<spec-name>.md # After review/approval
docs/specs/in-progress/<spec-name>.md # During implementation
docs/specs/live/<spec-name>.md # Actively used
docs/specs/deprecated/<spec-name>.md # Outdated but referenced
docs/specs/archive/<spec-name>.md # No longer in use
If the target location uses a different convention, adapt to that structure while maintaining the iterative process.
| Anti-Pattern | Instead | | -------------------------- | --------------------------------------------- | | Writing everything at once | Start with seed, iterate to add detail | | Vague requirements | Use specific, testable acceptance criteria | | Solution-first thinking | Define the problem before proposing solutions | | Skipping research | Always investigate before adding detail | | Gold-plating | Stop when actionable for the next phase | | Orphaned specs | Always define next steps and ownership |
../spec-writing/references/spec-template.md - Complete spec template
with all sections and guidance for filling each one. Copy this as a starting
point for new specs.../../schemas/spec-frontmatter.yaml - Formal schema defining required
and optional frontmatter fields for spec files. Consult this when creating or
validating spec frontmatter.tools
Reference material for Claude Code internals — the on-disk layout under ~/.claude and project-scope .claude, the plugin cache, session-env propagation, and the full hook lifecycle. Auto-recall when working on Claude-Code-related tasks: writing or debugging hooks, authoring plugins, inspecting session state, troubleshooting why an env var is or isn't visible to a Bash tool call, or when paths under ~/.claude or ~/.claude/plugins/ come up.
development
Manage GitHub App installation tokens in Claude Code sessions. Use when tokens expire, auth errors occur in long-running sessions, or when setting up GitHub App credentials for agent teams. <example>my github token expired</example> <example>refresh the github app token</example> <example>check token status</example> <example>set up github app authentication for this session</example>
tools
Auto-detect project formatting tools and configure edit-utils settings
tools
Use this skill when the user asks about 1Password, secrets management, retrieving credentials, using op CLI, service accounts, secret references, vault operations, or any task involving the 1Password CLI (op). Also use when needing to inject secrets into environment variables, read passwords or API keys from 1Password, or manage 1Password items from the command line.