implementlisted
Install: claude install-skill tstapler/dotfiles
# Implement Feature: $@
Implement the requested feature following the **Six-Phase Software Implementation Methodology** with **intelligent parallelization** - a research-backed framework that balances quality, speed, and maintainability through concurrent execution where appropriate.
**Key Insight**: Elite performers achieve multiple daily deployments not by working sequentially, but by identifying independent work streams and executing them in parallel while maintaining quality gates at integration points.
---
## Phase 0: Parallelization Analysis (NEW - 5% of effort)
**Purpose**: Analyze the feature for parallelization opportunities before starting implementation.
### Parallelization Assessment
1. **Decomposition Analysis**:
- Break feature into atomic sub-components
- Identify dependencies between components
- Map data flow and integration points
- Determine which components can be developed independently
2. **File Independence Matrix**:
```
Component A | Component B | Dependency Type | Can Parallelize?
------------|-------------|-----------------|------------------
Frontend UI | Backend API | Interface only | Yes (define contract first)
Service A | Service B | None | Yes (fully independent)
Module X | Module Y | Shared utils | Partial (utils first)
```
3. **Parallelization Strategies**:
**Vertical Slice Parallelization**:
- Independent feature slices that deliver value end-to-end
- Each slice has it