Automatic implementation plan generation

VerifiedSafe

This skill automatically generates a detailed implementation plan based on previous workflow phases (feature description, clarifications, and chosen architecture). It creates a structured markdown file with summary, context, components, steps and tests, then updates the workflow state. Useful for automating phase 5 of a development process without human intervention.

Sby Skills Guide Bot
DevelopmentIntermediate
706/2/2026
Claude Code
#auto-plan#implementation-plan#workflow-automation#feature-planning

Recommended for

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 to use it

When working in an automated sequential workflow and need to generate an implementation plan without manual intervention.

When not to use it

For ad-hoc projects without a defined workflow structure, or when you need iterative planning with human validation at each step.

Security analysis

Safe
Quality score85/100

The 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

Generate plan from issue
Run Phase 5 of the dev workflow for issue #42: auto-generate the implementation plan from the workflow state.
Auto plan after architecture
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
Related skills