Install
openclaw skills install implementation-planCreate detailed implementation plans for software projects — break down features into steps, files, tasks, and executable code.
openclaw skills install implementation-planCreate comprehensive implementation plans for any software project.
If platform OR stack OR new/existing is not mentioned, ask before planning:
ALWAYS ask before generating: "Quick plan or detailed plan?"
# [Project] - Quick Plan
## What
[One sentence]
## Stack
- Frontend: [X]
- Backend: [X]
- Data: [X]
## Files
- [file1.swift]: [purpose]
- [file2.swift]: [purpose]
## Steps
1. [Step 1]
2. [Step 2]
3. [Step 3]
# [Project Name] Implementation Plan
## Overview
[1-2 sentence description]
## Architecture
- Frontend: [framework/libraries]
- Backend: [if needed]
- Data: [storage]
## Files to Create
### Core
1. **App.swift** - Entry point
2. **MainView.swift** - Root view
3. **Model.swift** - Data models
### Features
4. **FeatureXView.swift** - UI
5. **FeatureXModel.swift** - Logic
## Step-by-Step
### Phase 1: Foundation
**Step 1: Setup**
- What: Create project, add deps
- Code: [snippet]
**Step 2: Models**
- What: Define data structures
- Code: [snippet]
### Phase 2: Core Features
### Phase 3: Polish
## Dependencies
| Package | Version | Purpose |
|---------|---------|---------|
| [name] | [v] | [why] |
## API Design (if backend)
| Endpoint | Method | Params | Response |
|----------|--------|--------|----------|
| /users | GET | - | User[] |
## Testing Strategy
- Unit: [what to test]
- Integration: [what to test]
## Risks & Mitigations
| Risk | Likelihood | Impact | Mitigation |
|------|------------|--------|------------|
| [X] | Low | High | [Y] |
## Running
```bash
[command]
Choose stack based on:
If user just says "app" with no platform: ASK — do NOT assume mobile or web.
If user context is iOS/macOS-heavy, you MAY suggest SwiftUI/Vapor/SQLite first, but still ASK before committing.
User: "Build me a todo app for iOS"
# Todo App - Quick Plan
## What
A simple iOS todo list app with add, complete, and delete features.
## Stack
- Frontend: SwiftUI
- Backend: None (local storage)
- Data: UserDefaults
## Files
- TodoApp.swift: App entry point
- ContentView.swift: Main list view
- Todo.swift: Data model
- TodoStore.swift: State management
## Steps
1. Create SwiftUI project with XcodeGen
2. Define Todo model (id, title, isCompleted)
3. Build ContentView with List and TextField
4. Add/remove/toggle todo functionality
5. Persist to UserDefaults