Our review
Automatically generates a detailed implementation plan based on previous phases of a structured workflow, with no user interaction.
Strengths
- Automates creation of reproducible implementation plans
- Integrates with a multi-phase workflow with persistent state
- Produces structured documentation (components, tasks, tests)
Limitations
- Depends on previous phases (architecture, clarification) which must be completed
- Rigid output format (Markdown with predefined sections)
- Requires prior setup of the workflow state
When working in an automated sequential workflow and need to generate an implementation plan without manual intervention.
For ad-hoc projects without a defined workflow structure, or when you need iterative planning with human validation at each step.
Security analysis
SafeThe skill only uses Read, Write, and Glob tools to read a state file, generate a markdown plan, and update a JSON state file. No destructive commands, network access, or secret exfiltration are involved.
No concerns found
Examples
Run Phase 5 of the dev workflow for issue #42: auto-generate the implementation plan from the workflow state.Using the architecture chosen in the previous phase, automatically create the implementation plan in docs/specs/feature-auth.md.name: dev:auto:plan description: Générer plan d'implémentation automatiquement - Mode AUTO (Phase 5) model: sonnet allowed-tools:
- Write
- Read
- Glob version: 1.0.0 license: MIT
Objectif
Instructions à Exécuter
IMPORTANT : Exécute ce workflow étape par étape :
Phase 5 du workflow automatisé : générer un plan d'implémentation détaillé basé sur l'architecture choisie SANS interaction.
Instructions
1. Lire le contexte
Déterminer le chemin du workflow state :
workflow_state_file=".claude/data/workflows/issue-${issue_number}-dev-workflow-state.json"
- Lire le workflow state pour récupérer :
- La feature description
- Les décisions de clarification (Phase 3)
- L'architecture choisie (Phase 4)
- Si phases précédentes non complétées, exit avec erreur code 1
2. Générer le plan
Créer le fichier docs/specs/feature-{nom-kebab-case}.md avec le contenu suivant :
# Plan d'implémentation : {Feature Name}
## Résumé
**Feature :** {description}
**Approche :** {nom de l'approche choisie}
**Date :** {date du jour}
## Contexte
### Problème résolu
{description du problème}
### Décisions prises
- {décision 1}
- {décision 2}
## Architecture
### Composants
| Composant | Responsabilité | Fichier |
|-----------|---------------|---------|
| {nom} | {description} | `{chemin}` |
### Diagramme de flux
{représentation ASCII du flux}
## Plan d'implémentation
### Étape 1 : {titre}
- [ ] {tâche 1}
- [ ] {tâche 2}
**Fichiers :**
- `{chemin}` : {description}
### Étape 2 : {titre}
- [ ] {tâche 1}
- [ ] {tâche 2}
**Fichiers :**
- `{chemin}` : {description}
...
## Tests
### Tests unitaires
- [ ] {test 1}
- [ ] {test 2}
### Tests d'intégration
- [ ] {test 1}
3. Sauvegarder le chemin du plan
Mettre à jour le workflow state :
{
"currentPhase": 5,
"phases": {
"5": {
"status": "completed",
"completedAt": "{ISO timestamp}",
"durationMs": {durée},
"planPath": "docs/specs/feature-{nom-kebab-case}.md",
"components": ["{liste des composants}"],
"implementationSteps": {nombre}
}
}
}
Règles
- ✅ Mode automatique : aucune interaction
- ✅ Générer le plan basé sur les phases précédentes
- ✅ Créer le fichier
docs/specs/avec chemin correct - ✅ Documenter chaque étape d'implémentation
- ❌ Jamais demander confirmation
- ✅ Exit 1 si phases précédentes manquantes
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.