← Back to Skills Marketplace
nightvibes3

Implementation Plan

by NightVibes3 · GitHub ↗ · v1.0.2
cross-platform ⚠ suspicious
466
Downloads
2
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install implementation-plan
Description
Create detailed implementation plans for software projects — break down features into steps, files, tasks, and executable code.
README (SKILL.md)

Implementation Planning Skill

Create comprehensive implementation plans for any software project.

When to Use

  • User asks to build an app, feature, or project
  • User wants a plan before coding
  • User asks "how would you build X"
  • User mentions a problem that needs a solution

Clarifying Questions

If platform OR stack OR new/existing is not mentioned, ask before planning:

  • What platform? (iOS, web, Android, CLI, API)
  • New project or existing codebase?
  • Any stack preferences or constraints?
  • Timeline or complexity level?

Plan Levels

Quick (5 min)

  • Overview + main files + key steps
  • For simple features or prototypes
  • Skip risks, API tables, and detailed testing

Detailed (15+ min)

  • Full architecture + all files + testing + deployment
  • For production apps or complex features
  • Includes: Dependencies, API design, testing, risks

ALWAYS ask before generating: "Quick plan or detailed plan?"

Implementation Plan Template

Level 1: Quick 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]

Level 2: Detailed Plan

# [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]

Next Steps

  1. [Immediate action]
  2. [After that]

Plan Principles

  1. Ask level first — ALWAYS ask "Quick plan or detailed plan?"
  2. Architecture before files — Know the stack
  3. Files drive steps — List files, then implement in order
  4. Dependencies first — What must exist before X
  5. Code snippets, not dumps — Show minimal working snippets for critical paths (e.g., key model, one core view), not full implementations
  6. Be specific — Not "UI" but "LoginView with email/password fields"
  7. Include paths — Sources/App/LoginView.swift

Decision Criteria

Choose stack based on:

  • Mobile: SwiftUI (iOS), Jetpack Compose (Android)
  • Web: React, Vue, or server-side Swift
  • Backend: Vapor, FastAPI, Express
  • Database: SQLite (local), PostgreSQL (prod), Firebase (quick)

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.

Refinement Requests

  • If user says "expand [phase]" → regenerate that phase in full detail
  • If user says "redo with [X]" → re-emit only affected sections
  • If user says "more details" → upgrade to Detailed plan

Example Output (Quick Plan)

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
Usage Guidance
This skill appears coherent and low-risk: it only produces plans and small example snippets. Still, don't paste sensitive credentials or private source code into prompts, and review any generated code for security, licensing, and correctness before using it in production.
Capability Analysis
Type: OpenClaw Skill Name: implementation-plan Version: 1.0.2 The skill instructs the AI agent to generate implementation plans, which include sections for `Code: [snippet]` and `Running:bash [command]` in SKILL.md. This capability allows the agent to generate arbitrary code and shell commands based on user input. While aligned with the stated purpose of creating project plans, this introduces a significant remote code execution (RCE) vulnerability if a malicious user prompts the agent to generate harmful commands or code, or if the agent unintentionally generates risky commands. There is no evidence of intentional malicious behavior by the skill developer, but the inherent risk of generating executable content makes it suspicious.
Capability Assessment
Purpose & Capability
The skill's name and description match its instructions: it generates implementation plans, templates, and code snippets. It does not request unrelated binaries, credentials, or config paths.
Instruction Scope
SKILL.md limits runtime behavior to asking clarification questions and producing plan templates and short code snippets. It does not instruct the agent to read system files, environment variables, or transmit data to external endpoints.
Install Mechanism
No install spec or code files are present; this is an instruction-only skill so nothing is written to disk or downloaded during install.
Credentials
No environment variables, credentials, or configuration paths are required or referenced. The declared requirements are minimal and proportionate to a planning task.
Persistence & Privilege
The skill is not always-enabled and does not request persistent/system-wide privileges or modifications to other skills or agent settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install implementation-plan
  3. After installation, invoke the skill by name or use /implementation-plan
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
- Added a comprehensive SKILL.md with clear instructions for generating implementation plans for software projects. - Defines two plan levels: "Quick" (for simple/prototype features) and "Detailed" (for production/complex features). - Includes clarifying questions to improve context before planning. - Provides templates for both quick and detailed plans, with sections on architecture, files, dependencies, testing, risks, and running instructions. - Emphasizes always asking the user "Quick plan or detailed plan?" before starting. - Supplies guidance on stack selection, refinement handling, and output examples.
Metadata
Slug implementation-plan
Version 1.0.2
License
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Implementation Plan?

Create detailed implementation plans for software projects — break down features into steps, files, tasks, and executable code. It is an AI Agent Skill for Claude Code / OpenClaw, with 466 downloads so far.

How do I install Implementation Plan?

Run "/install implementation-plan" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Implementation Plan free?

Yes, Implementation Plan is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Implementation Plan support?

Implementation Plan is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Implementation Plan?

It is built and maintained by NightVibes3 (@nightvibes3); the current version is v1.0.2.

💬 Comments