From architect
Générer plan d'implémentation détaillé dans docs/specs/ - Phase 4 (supporte le mode automatique)
How this skill is triggered — by the user, by Claude, or both
Slash command
/architect:plansonnetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
**IMPORTANT : Exécute ce workflow étape par étape :**
IMPORTANT : Exécute ce workflow étape par étape :
Phase 4 du workflow de développement : générer un plan d'implémentation détaillé basé sur l'architecture choisie.
En mode interactif, utiliser TaskCreate pour chaque étape :
TaskCreate #1: Lire le contexte du workflow
TaskCreate #2: Créer le répertoire docs/specs
TaskCreate #3: Générer le plan d'implémentation
TaskCreate #4: Afficher le résumé
TaskCreate #5: Mettre à jour le workflow state
.claude/data/.dev-workflow-state.json pour récupérer :
mkdir -p docs/specs
Créer le fichier docs/specs/feature-{nom-kebab-case}.md avec la structure suivante :
# 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}
{
"currentPhase": 4,
"phases": {
"4": {
"status": "completed",
"completedAt": "{ISO timestamp}",
"durationMs": "{durée}",
"planPath": "docs/specs/feature-{nom-kebab-case}.md",
"components": ["{liste des composants}"],
"implementationSteps": "{nombre}"
}
}
}
Plan généré : docs/specs/feature-{nom}.md
Prochaine étape : implémenter selon le plan
L'implémentation nécessite ton approbation explicite.
npx claudepluginhub atournayre/claude-personas --plugin architectCreates structured implementation plans from specs, breaking work into bite-sized tasks with file maps and architecture notes. Run before coding on multi-step features.
Generates atomic-task implementation plans for multi-step projects, with file paths, code examples, TDD steps, and verification for handoff to unfamiliar developers.
Creates step-by-step implementation plans from specs or requirements, decomposing work into small tasks with file structure and test-first guidance.