Planning strategy for feature stories. Activates when planning new functionality, capabilities, or user-facing features. Use for multi-phase implementation planning with user value focus.
Plans feature implementation with user-centric phased approach covering architecture, tests, and acceptance criteria.
/plugin marketplace add eLafo/hefesto/plugin install elafo-hefesto-2@eLafo/hefestoThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Plan implementation of new features with a user-centric, phased approach.
Activate when:
When planning feature stories, emphasize:
Before planning, read:
feature.json for feature contextprd.md for requirements and scopeWrite to {story_path}/plan.md:
# Implementation Plan: {Story Title}
## Metadata
- **Story**: {story_id}
- **Feature**: {feature_id}
- **Type**: feature (inferred)
- **Created**: {timestamp}
- **Complexity**: {Low/Medium/High}
## User Story Summary
{Copy from user-story.md}
## Solution Statement
{How this feature delivers user value}
## Code Impact Matrix
| File | Action | Risk | Notes |
|------|--------|------|-------|
| path/to/file | Create/Modify | Low/Med/High | Description |
## Design Decisions
### Decision 1: {Topic}
- **Options**: A, B, C
- **Chosen**: {choice}
- **Rationale**: {why}
## Implementation Phases
### Phase 1: Foundation
**Goal**: {foundational work - data models, base infrastructure}
#### Step 1.1: {Task}
- **File**: `path/to/file`
- **Action**: Create/Modify
- **Details**: {what to do}
- **Validation**: {how to verify}
### Phase 2: Core Implementation
**Goal**: {main functionality - business logic, core features}
#### Step 2.1: {Task}
...
### Phase 3: Integration
**Goal**: {connect pieces - UI, API endpoints, integrations}
#### Step 3.1: {Task}
...
## Test Strategy
### Unit Tests
- [ ] {test case}
### Integration Tests
- [ ] {test case}
### E2E Tests (if UI)
- [ ] {user flow test}
## Acceptance Criteria Mapping
| Criterion | Verified By | Phase |
|-----------|-------------|-------|
| AC-1 | Unit test | 1 |
| AC-2 | E2E test | 3 |
## Rollback Plan
{How to undo if needed}
## Notes
{Additional considerations}
When creating a feature plan:
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.