Notre avis
Convertit des designs approuvés ou des exigences détaillées en étapes d'implémentation atomiques et actionnables.
Points forts
- Décompose les tâches complexes en petites étapes réalisables
- Génère un plan structuré sous forme de fichier Markdown
- Inclut des bonnes pratiques comme le TDD et la vérification
Limites
- Ne produit pas de code, seulement un plan
- Nécessite que le design soit déjà approuvé
- Peut devenir long pour des projets très vastes
Lorsque vous avez un design ou des spécifications approuvés et que vous souhaitez un guide étape par étape pour l'implémentation.
Pour des tâches simples qui peuvent être implémentées directement sans planification préalable.
Analyse de sécurité
SûrThe skill only provides instructions for planning implementation steps. It does not involve executing any code, accessing the network, or performing destructive actions. There are no declared tools, so no execution risk.
Aucun point d'attention détecté
Exemples
I have an approved product_design.md for a user authentication module. Please create an implementation_plan.md with atomic steps, including TDD and verification.How would I implement a real-time dashboard? Provide an implementation plan with step-by-step tasks, file paths, and verification checks.name: planning-implementation description: Converts approved designs or detailed requirements into actionable, atomic implementation steps. Use when the user approves a design or asks "how to implement".
Planning & Implementation Breakdown
When to use this skill
- User has approved a
product_design.md. - User provides a detailed requirement and asks for a plan.
- User asks "how to implement" a specific complex feature.
Workflow
-
Read Context & Standards
- Read
product_design.mdor the user's specific requirements. - MANDATORY: Check
managing-environmentskill for Project Setup & Dependency standards (Docker/pyproject.toml).
- Read
-
Atomic Task Decomposition
- Break the project down into a linear series of steps.
- Atomic Rule: Each step must be small enough to be completed by an AI agent in 2-5 minutes (e.g., "Create button component" is good; "Build entire frontend" is bad).
- No Code: This phase is for planning the code, not writing it.
-
Generate Documentation
- Create or update
implementation_plan.md. - Format:
# Implementation Plan - [Project Name] - [ ] Step 1: Environment Setup - Initialize project (e.g., `npm create vite@latest`). - Install dependencies. - [ ] Step 2: Foundation - Create basic directory structure. - Setup global styles/theme. - [ ] Step 3: [Feature A] - Component X - Create file... - Implement logic... ...
- Create or update
-
Best Practices
- TDD: Include steps for creating tests before implementation where appropriate.
- Verification: Include a verification step after major implementation blocks (e.g., "Run tests", "Check browser").
Instructions
- Granularity: If a step feels like it has "sub-steps", break it apart.
- Clarity: Use exact file paths and command examples in the plan where possible.
- Output: The primary deliverable is the
implementation_plan.md.
Resources
- [None]
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.