← 返回 Skills 市场
nightvibes3

Implementation Plan

作者 NightVibes3 · GitHub ↗ · v1.0.2
cross-platform ⚠ suspicious
466
总下载
2
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install implementation-plan
功能描述
Create detailed implementation plans for software projects — break down features into steps, files, tasks, and executable code.
使用说明 (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
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install implementation-plan
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /implementation-plan 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug implementation-plan
版本 1.0.2
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Implementation Plan 是什么?

Create detailed implementation plans for software projects — break down features into steps, files, tasks, and executable code. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 466 次。

如何安装 Implementation Plan?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install implementation-plan」即可一键安装,无需额外配置。

Implementation Plan 是免费的吗?

是的,Implementation Plan 完全免费(开源免费),可自由下载、安装和使用。

Implementation Plan 支持哪些平台?

Implementation Plan 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Implementation Plan?

由 NightVibes3(@nightvibes3)开发并维护,当前版本 v1.0.2。

💬 留言讨论