From sdlc
Create a new plan to implement the `Feature` using the exact specified markdown `Plan Format`. Follow the `Instructions`
How this command is triggered — by the user, by Claude, or both
Slash command
/sdlc:featureThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Feature Planning Create a new plan to implement the `Feature` using the exact specified markdown `Plan Format`. Follow the `Instructions` to create the plan. ## Instructions - IMPORTANT: You're writing a plan to implement a net new feature based on the `Feature` that will add value to the application. - IMPORTANT: The `Feature` describes the feature that will be implemented but remember we're not implementing a new feature, we're creating the plan that will be used to implement the feature based on the `Plan Format` below. - Create the plan in the `specs/` directory with filename: ...
Create a new plan to implement the Feature using the exact specified markdown Plan Format. Follow the Instructions
to create the plan.
Feature that will add value to the
application.Feature describes the feature that will be implemented but remember we're not implementing a new
feature, we're creating the plan that will be used to implement the feature based on the Plan Format below.specs/ directory with filename: issue-{descriptive-name}.md
{descriptive-name} with a short, descriptive name based on the feature (e.g., "add-auth-system", "implement-search", "create-dashboard")Plan Format below to create the plan.placeholder in the Plan Format with the requested value. Add as much detail as needed
to implement the feature successfully.README.md file.# Feature: <feature name>
## Feature Description
<describe the feature in detail, including its purpose and value to users>
## User Story
As a <type of user>
I want to <action/goal>
So that <benefit/value>
## Problem Statement
<clearly define the specific problem or opportunity this feature addresses>
## Solution Statement
<describe the proposed solution approach and how it solves the problem>
## Relevant Files
Use these files to implement the feature:
<find and list the files that are relevant to the feature describe why they are relevant in bullet points. If there are new files that need to be created to implement the feature, list them in an h3 'New Files' section.>
## Implementation Plan
### Phase 1: Foundation
<describe the foundational work needed before implementing the main feature>
### Phase 2: Core Implementation
<describe the main implementation work for the feature>
### Phase 3: Integration
<describe how the feature will integrate with existing functionality>
## Step by Step Tasks
IMPORTANT: Execute every step in order, top to bottom.
<list step by step tasks as h3 headers plus bullet points. use as many h3 headers as needed to implement the feature. Order matters, start with the foundational shared changes required then move on to the specific implementation. Include creating tests throughout the implementation process.>
<Your last step should be running the `Validation Commands` to validate the feature works correctly with zero regressions.>
## Testing Strategy
### Unit Tests
<describe unit tests needed for the feature>
### Edge Cases
<list edge cases that need to be tested>
## Acceptance Criteria
<list specific, measurable criteria that must be met for the feature to be considered complete>
## Validation Commands
Execute every command to validate the feature works correctly with zero regressions.
<list commands you'll use to validate with 100% confidence the feature is implemented correctly with zero regressions. every command must execute without errors so be specific about what you want to run to validate the feature works as expected. Include commands to test the feature end-to-end.>
## Notes
<optionally list any additional notes, future considerations, or context that are relevant to the feature that will be helpful to the developer>
Extract the feature details from the prompt
specs/issue-add-auth-system.md)npx claudepluginhub pwood16/claude-kit --plugin sdlc/planGenerates an implementation plan for a feature by reading its spec, detecting stack (Next.js/Kotlin/etc.), designing architecture/files/tasks, and saving to .planning/plans/<feature>.md.
/featureOrchestrates full feature development cycle: PRD with product-owner, visual style options, architecture, code, QA, docs, delivery via phased agents and gates.
/featureCreates a lightweight feature-focused PRD via guided interactive interview (5-8 rounds) optimized for new features in existing products, saving to docs/prd/{slug}.md
/featureAutomates Rails feature/chore from Linear URL or description: creates branch, gathers context, implements/tests/lints/i18n, drafts PR, monitors CI.
/featureExecutes Mermaid flowchart workflow: two Analyze-Design(D3)-Develop(G2→G2.5→G3)-Release cycles, using Task for sub-agents, AskUserQuestion at diamonds, and F5 gates.
/featureDesigns feature flag strategies covering types, SDK integrations (LaunchDarkly, Unleash etc.), targeting rules, rollouts, kill switches, A/B tests, lifecycle. Outputs docs, flag modules, schemas, reports. Supports subcommands like --rollout, --experiment.