@the-bearded-bear/claude-craft 8.19.1 → 8.19.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/Dev/i18n/base/Common/skills/documentation/SKILL.md +0 -19
  2. package/Dev/i18n/base/Common/skills/ecosystem-tools/SKILL.md +0 -12
  3. package/Dev/i18n/base/Common/skills/git-workflow/SKILL.md +0 -17
  4. package/Dev/i18n/base/Common/skills/kiss-dry-yagni/SKILL.md +0 -11
  5. package/Dev/i18n/base/Common/skills/parallel-worktrees/SKILL.md +0 -11
  6. package/Dev/i18n/base/Common/skills/security/SKILL.md +0 -20
  7. package/Dev/i18n/base/Common/skills/solid-principles/SKILL.md +0 -18
  8. package/Dev/i18n/base/Common/skills/testing/SKILL.md +0 -25
  9. package/Dev/i18n/base/Common/skills/workflow-analysis/SKILL.md +0 -10
  10. package/Dev/i18n/de/Common/agents/tdd-coach.md +1 -1
  11. package/Dev/i18n/de/Common/commands/getting-started.md +6 -8
  12. package/Dev/i18n/de/Common/templates/settings.json.template +4 -4
  13. package/Dev/i18n/de/QA/commands/fix.md +1 -1
  14. package/Dev/i18n/de/ReactNative/agents/reactnative-reviewer.md +4 -4
  15. package/Dev/i18n/de/ReactNative/rules/06-tooling.md +6 -6
  16. package/Dev/i18n/en/Common/agents/tdd-coach.md +1 -1
  17. package/Dev/i18n/en/Common/commands/getting-started.md +6 -8
  18. package/Dev/i18n/en/Common/templates/settings.json.template +4 -4
  19. package/Dev/i18n/en/QA/commands/fix.md +1 -1
  20. package/Dev/i18n/en/ReactNative/agents/reactnative-reviewer.md +4 -4
  21. package/Dev/i18n/en/ReactNative/rules/06-tooling.md +4 -4
  22. package/Dev/i18n/es/Common/agents/tdd-coach.md +1 -1
  23. package/Dev/i18n/es/Common/commands/getting-started.md +6 -8
  24. package/Dev/i18n/es/Common/templates/settings.json.template +4 -4
  25. package/Dev/i18n/es/QA/commands/fix.md +1 -1
  26. package/Dev/i18n/es/ReactNative/agents/reactnative-reviewer.md +4 -4
  27. package/Dev/i18n/es/ReactNative/rules/06-tooling.md +6 -6
  28. package/Dev/i18n/fr/Common/agents/tdd-coach.md +1 -1
  29. package/Dev/i18n/fr/Common/commands/getting-started.md +6 -8
  30. package/Dev/i18n/fr/Common/templates/settings.json.template +4 -4
  31. package/Dev/i18n/fr/QA/commands/fix.md +1 -1
  32. package/Dev/i18n/fr/ReactNative/agents/reactnative-reviewer.md +4 -4
  33. package/Dev/i18n/fr/ReactNative/rules/06-tooling.md +6 -6
  34. package/Dev/i18n/pt/Common/agents/tdd-coach.md +1 -1
  35. package/Dev/i18n/pt/Common/commands/getting-started.md +6 -8
  36. package/Dev/i18n/pt/Common/templates/settings.json.template +4 -4
  37. package/Dev/i18n/pt/QA/commands/fix.md +1 -1
  38. package/Dev/i18n/pt/ReactNative/agents/reactnative-reviewer.md +4 -4
  39. package/Dev/i18n/pt/ReactNative/rules/06-tooling.md +6 -6
  40. package/Project/i18n/de/scaffold/CLAUDE.md +208 -0
  41. package/Project/i18n/de/scaffold/project-management__README.md +40 -0
  42. package/Project/i18n/de/scaffold/project-management__backlog__index.md +58 -0
  43. package/Project/i18n/en/scaffold/CLAUDE.md +208 -0
  44. package/Project/i18n/en/scaffold/project-management__README.md +40 -0
  45. package/Project/i18n/en/scaffold/project-management__backlog__index.md +58 -0
  46. package/Project/i18n/es/scaffold/CLAUDE.md +208 -0
  47. package/Project/i18n/es/scaffold/project-management__README.md +40 -0
  48. package/Project/i18n/es/scaffold/project-management__backlog__index.md +58 -0
  49. package/Project/i18n/fr/scaffold/CLAUDE.md +208 -0
  50. package/Project/i18n/fr/scaffold/project-management__README.md +40 -0
  51. package/Project/i18n/fr/scaffold/project-management__backlog__index.md +58 -0
  52. package/Project/i18n/pt/scaffold/CLAUDE.md +208 -0
  53. package/Project/i18n/pt/scaffold/project-management__README.md +40 -0
  54. package/Project/i18n/pt/scaffold/project-management__backlog__index.md +58 -0
  55. package/Project/install-project-commands.sh +85 -312
  56. package/README.md +4 -4
  57. package/bundles/cursor/.cursorrules +3 -3
  58. package/bundles/windsurf/.windsurfrules +3 -3
  59. package/cli/lib/tech-registry.js +2 -2
  60. package/package.json +2 -2
@@ -51,6 +51,10 @@ get_source_dir() {
51
51
 
52
52
  SRC_DIR=$(get_source_dir)
53
53
 
54
+ # Scaffold content (project CLAUDE.md/README/index) sourced per-language with English fallback
55
+ SCAFFOLD_DIR="$SRC_DIR/scaffold"
56
+ if [ ! -d "$SCAFFOLD_DIR" ]; then SCAFFOLD_DIR="$I18N_DIR/en/scaffold"; fi
57
+
54
58
  ui_box "🚀 Project Commands - v${VERSION}"
55
59
  echo ""
56
60
  ui_info "Language: $lang"
@@ -131,329 +135,21 @@ if [ -d "$TPL_SRC" ]; then
131
135
  fi
132
136
 
133
137
  # Créer l'index initial du backlog
134
- cat > "$PROJECT_DIR/project-management/backlog/index.md" << 'INDEXMD'
135
- # Backlog Index
136
-
137
- > Dernière mise à jour: $(date +%Y-%m-%d)
138
-
139
- ---
140
-
141
- ## Résumé Global
142
-
143
- | Type | 🔴 To Do | 🟡 In Progress | ⏸️ Blocked | 🟢 Done | Total |
144
- |------|----------|----------------|------------|---------|-------|
145
- | EPICs | 0 | 0 | 0 | 0 | 0 |
146
- | User Stories | 0 | 0 | 0 | 0 | 0 |
147
- | Tasks | 0 | 0 | 0 | 0 | 0 |
148
-
149
- ---
150
-
151
- ## EPICs
152
-
153
- | ID | Nom | Statut | Priorité | US | Progression |
154
- |----|-----|--------|----------|-----|-------------|
155
- | - | Aucun EPIC créé | - | - | - | - |
156
-
157
- ---
158
-
159
- ## Sprint Actuel
160
-
161
- _Aucun sprint actif_
162
-
163
- ---
164
-
165
- ## Backlog Priorisé (Hors Sprint)
166
-
167
- | US | EPIC | Points | Priorité | Statut |
168
- |----|------|--------|----------|--------|
169
- | - | - | - | - | - |
170
-
171
- ---
172
-
173
- ## Légende Statuts
174
-
175
- | Icône | Statut | Description |
176
- |-------|--------|-------------|
177
- | 🔴 | To Do | Pas encore commencé |
178
- | 🟡 | In Progress | En cours de réalisation |
179
- | ⏸️ | Blocked | Bloqué par un obstacle |
180
- | 🟢 | Done | Terminé |
181
-
182
- ### Workflow
183
-
184
- ```
185
- 🔴 To Do ──→ 🟡 In Progress ──→ 🟢 Done
186
- │ │
187
- │ ↓
188
- └────→ ⏸️ Blocked ←────┘
189
-
190
-
191
- 🟡 In Progress
192
- ```
193
- INDEXMD
138
+ cat "$SCAFFOLD_DIR/project-management__backlog__index.md" > "$PROJECT_DIR/project-management/backlog/index.md"
194
139
  ui_success "Index backlog créé"
195
140
 
196
141
  # Créer CLAUDE.md
197
- cat > "$PROJECT_DIR/CLAUDE.md" << 'CLAUDEMD'
198
- # Configuration Claude Code - Gestion de Projet
199
-
200
- ## Agents disponibles
201
-
202
- ### 🎯 Product Owner (`@po`)
203
- Expert en gestion de backlog, personas, User Stories et priorisation.
204
- - Certifié CSPO (Certified Scrum Product Owner)
205
- - Maîtrise : INVEST, 3C, Gherkin, SMART, MoSCoW, MMF
206
-
207
- ### 🔧 Tech Lead (`@tech`)
208
- Expert en architecture, décomposition technique et facilitation Scrum.
209
- - Certifié CSM (Certified Scrum Master)
210
- - Maîtrise : Symfony, Flutter, API Platform, Architecture hexagonale
211
-
212
- ## Commandes personnalisées
213
-
214
- ### Génération & Gestion de Backlog (`/project:`)
215
-
216
- | Commande | Description |
217
- |----------|-------------|
218
- | `/project:generate-backlog` | Génère le backlog complet |
219
- | `/project:decompose-tasks N` | Décompose le sprint N en tâches |
220
- | `/project:analyze-backlog` | Analyser le backlog existant |
221
- | `/project:migrate-backlog` | Migrer un backlog existant |
222
- | `/project:sync-backlog` | Synchroniser l'index du backlog |
223
-
224
- ### Gestion des EPICs (`/project:`)
225
-
226
- | Commande | Description |
227
- |----------|-------------|
228
- | `/project:add-epic "Nom"` | Créer un nouvel EPIC |
229
- | `/project:list-epics` | Lister tous les EPICs |
230
- | `/project:update-epic EPIC-XXX` | Modifier un EPIC |
231
-
232
- ### Gestion des User Stories (`/project:`)
233
-
234
- | Commande | Description |
235
- |----------|-------------|
236
- | `/project:add-story EPIC-XXX "Nom"` | Créer une User Story |
237
- | `/project:list-stories` | Lister les User Stories |
238
- | `/project:update-story US-XXX` | Modifier une US |
239
- | `/project:update-stories` | Mettre à jour plusieurs US |
240
-
241
- ### Gestion des Tasks (`/project:`)
242
-
243
- | Commande | Description |
244
- |----------|-------------|
245
- | `/project:add-task US-XXX "[TYPE] Desc" Xh` | Créer une tâche |
246
- | `/project:list-tasks` | Lister les tâches |
247
- | `/project:move-task TASK-XXX statut` | Changer le statut |
248
-
249
- ### Visualisation & Exécution (`/project:`)
250
-
251
- | Commande | Description |
252
- |----------|-------------|
253
- | `/project:board` | Afficher le Kanban du sprint |
254
- | `/project:batch-status` | Statut par lot des éléments |
255
- | `/project:run-sprint N` | Exécuter un sprint complet |
256
- | `/project:run-epic EPIC-XXX` | Exécuter un EPIC complet |
257
- | `/project:run-queue` | Exécuter la file d'attente |
258
- | `/project:generate-prd` | Générer le PRD |
259
- | `/project:generate-tech-spec` | Générer la spécification technique |
260
-
261
- ### Sprint (`/sprint:`)
262
-
263
- | Commande | Description |
264
- |----------|-------------|
265
- | `/sprint:status` | Métriques détaillées du sprint |
266
- | `/sprint:transition US-XXX statut` | Changer statut/sprint d'une US |
267
- | `/sprint:next-story` | Prochaine story prête pour le dev |
268
- | `/sprint:auto-route` | Routage automatique des stories |
269
- | `/sprint:dev US-XXX` | Développer une story |
270
-
271
- ### Quality Gates (`/gate:`)
272
-
273
- | Commande | Description |
274
- |----------|-------------|
275
- | `/gate:validate-backlog` | Valide la conformité du backlog (score /100) |
276
- | `/gate:validate-prd` | Valider le PRD |
277
- | `/gate:validate-techspec` | Valider la spécification technique |
278
- | `/gate:validate-story US-XXX` | Valider une User Story (DoD) |
279
- | `/gate:validate-sprint N` | Valider un sprint |
280
- | `/gate:report` | Rapport de qualité complet |
281
-
282
- ## Stack technique
283
-
284
- ```yaml
285
- web: Symfony UX + Turbo (Twig, Stimulus, Live Components)
286
- mobile: Flutter (Dart, Material/Cupertino)
287
- api: API Platform (REST, OpenAPI)
288
- database: PostgreSQL + Doctrine ORM
289
- infrastructure: Docker
290
- tests: PHPUnit, Flutter Test
291
- quality: PHPStan max, Dart analyzer
292
- ```
293
-
294
- ## Structure projet
295
-
296
- ```
297
- project-management/
298
- ├── README.md # Vue d'ensemble
299
- ├── personas.md # Définition des personas (min 3)
300
- ├── definition-of-done.md # DoD du projet
301
- ├── dependencies-matrix.md # Matrice des dépendances (Mermaid)
302
- ├── backlog/
303
- │ ├── epics/
304
- │ │ └── EPIC-XXX-nom.md # Avec MMF
305
- │ └── user-stories/
306
- │ └── US-XXX-nom.md # INVEST + 3C + Gherkin SMART
307
- └── sprints/
308
- └── sprint-XXX-but/
309
- ├── sprint-goal.md # Sprint Goal + Cérémonies + Rétro
310
- ├── sprint-dependencies.md
311
- ├── tasks/
312
- │ ├── README.md
313
- │ └── US-XXX-tasks.md # Tâches détaillées
314
- └── task-board.md # Kanban
315
- ```
316
-
317
- ## Standards SCRUM appliqués
318
-
319
- ### Fondamentaux
320
- - **3 Piliers** : Transparence, Inspection, Adaptation
321
- - **Manifeste Agile** : 4 valeurs, 12 principes
322
- - **Sprint** : 2 semaines fixe
323
- - **Vélocité** : 20-40 points/sprint
324
-
325
- ### User Stories
326
- - Format : "En tant que [P-XXX]... Je veux... Afin de..."
327
- - Validation **INVEST** : Independent, Negotiable, Valuable, Estimable, Sized ≤8pts, Testable
328
- - Les **3 C** : Carte, Conversation, Confirmation
329
- - **Vertical Slicing** : Symfony + Flutter + API + PostgreSQL
330
-
331
- ### Critères d'Acceptance
332
- - Format **Gherkin** : GIVEN [contexte] / WHEN [acteur] [action] / THEN [résultat]
333
- - Validation **SMART** : Spécifique, Mesurable, Atteignable, Réaliste, Temporel
334
- - Minimum : 1 nominal + 2 alternatifs + 2 erreurs
335
-
336
- ### Epics
337
- - **MMF** (Minimum Marketable Feature) obligatoire
338
- - Dépendances avec graphe **Mermaid**
339
-
340
- ### Sprints
341
- - Sprint 1 = **Walking Skeleton** (fonctionnalité complète minimale)
342
- - **Sprint Goal** en une phrase
343
- - **Cérémonies** : Planning (Part 1 & 2), Daily, Review, Rétro, Affinage
344
- - **Directive Fondamentale** de la Rétrospective incluse
345
-
346
- ### Tâches
347
- - Estimation en **heures** (0.5h - 8h max)
348
- - Types : [DB], [BE], [FE-WEB], [FE-MOB], [TEST], [DOC], [REV], [OPS]
349
- - Dépendances avec graphe **Mermaid**
350
- - Statuts : 🔲 À faire | 🔄 En cours | 👀 Review | ✅ Done | 🚫 Bloqué
351
-
352
- ## Workflow recommandé
353
-
354
- ```bash
355
- # 1. Initialiser le backlog
356
- /project:generate-backlog
357
-
358
- # 2. Valider la conformité
359
- /gate:validate-backlog
360
-
361
- # 3. Planifier le sprint 1
362
- /project:decompose-tasks 001
363
-
364
- # 4. Obtenir la prochaine story
365
- /sprint:next-story
366
-
367
- # 5. Développer une story
368
- /sprint:dev US-XXX
369
-
370
- # 6. Suivre le sprint
371
- /sprint:status
372
-
373
- # 7. Préparer le sprint suivant
374
- /project:decompose-tasks 002
375
- ```
376
-
377
- ## Conventions de nommage
378
-
379
- | Élément | Format | Exemple |
380
- |---------|--------|---------|
381
- | Epic | EPIC-XXX-nom | EPIC-001-authentification |
382
- | User Story | US-XXX-nom | US-001-inscription |
383
- | Persona | P-XXX | P-001 |
384
- | Sprint | sprint-XXX-but | sprint-001-walking_skeleton |
385
- | Tâche | T-XXX-YY | T-001-05 |
386
-
387
- ## Qualité du code
388
-
389
- ### Backend (Symfony)
390
- - PHPStan niveau max
391
- - Tests > 80% couverture
392
- - Architecture hexagonale
393
- - PSR-12
394
-
395
- ### Mobile (Flutter)
396
- - Dart analyzer strict
397
- - Widget tests
398
- - BLoC/Riverpod
399
- - Material Design 3
400
-
401
- ### API (API Platform)
402
- - OpenAPI auto-généré
403
- - Validation constraints
404
- - Serialization groups
405
- - Security voters
406
- CLAUDEMD
142
+ cat "$SCAFFOLD_DIR/CLAUDE.md" > "$PROJECT_DIR/CLAUDE.md"
407
143
 
408
144
  ui_success "CLAUDE.md créé"
409
145
 
410
146
  # Créer un fichier README dans project-management
411
- cat > "$PROJECT_DIR/project-management/README.md" << 'READMEMD'
412
- # Gestion de Projet
413
-
414
- Ce répertoire contient la gestion de projet.
415
-
416
- ## Structure
417
-
418
- ```
419
- project-management/
420
- ├── backlog/
421
- │ ├── index.md # Index avec tous les statuts
422
- │ ├── epics/ # EPICs du projet
423
- │ ├── user-stories/ # User Stories
424
- │ └── tasks/ # Tasks non assignées à un sprint
425
- ├── sprints/
426
- │ └── sprint-XXX/
427
- │ ├── sprint-goal.md # Objectif et infos du sprint
428
- │ ├── board.md # Kanban board
429
- │ └── tasks/ # Tasks du sprint
430
- └── metrics/
431
- ├── velocity.md # Vélocité par sprint
432
- └── burndown.md # Burndown charts
433
- ```
434
-
435
- ## Workflow
436
-
437
- 1. `/project:add-epic` - Créer un EPIC
438
- 2. `/project:add-story` - Ajouter des User Stories
439
- 3. `/sprint:transition US-XXX sprint-N` - Planifier le sprint
440
- 4. `/project:add-task` ou `/project:decompose-tasks` - Créer les tâches
441
- 5. `/project:board` - Suivre l'avancement
442
- 6. `/project:move-task` - Mettre à jour les statuts
443
-
444
- ## Statuts
445
-
446
- | Icône | Statut | Description |
447
- |-------|--------|-------------|
448
- | 🔴 | To Do | Pas encore commencé |
449
- | 🟡 | In Progress | En cours |
450
- | ⏸️ | Blocked | Bloqué |
451
- | 🟢 | Done | Terminé |
452
- READMEMD
147
+ cat "$SCAFFOLD_DIR/project-management__README.md" > "$PROJECT_DIR/project-management/README.md"
453
148
  ui_success "README project-management créé"
454
149
 
455
150
  echo ""
456
151
  echo "=================================================="
152
+ if [ "$lang" = "fr" ]; then
457
153
  echo "✅ Installation terminée !"
458
154
  echo ""
459
155
  echo "📋 Commandes disponibles :"
@@ -529,3 +225,80 @@ echo ""
529
225
  echo "📊 Workflow strict des statuts :"
530
226
  echo " 🔴 To Do → 🟡 In Progress → 🟢 Done"
531
227
  echo " (⏸️ Blocked possible à tout moment)"
228
+ else
229
+ echo "✅ Installation complete!"
230
+ echo ""
231
+ echo "📋 Available commands:"
232
+ echo ""
233
+ echo " Generation (/project:):"
234
+ echo " /project:generate-backlog - Generate the full backlog"
235
+ echo " /project:decompose-tasks [N] - Break sprint N into tasks"
236
+ echo " /project:generate-prd - Generate the PRD"
237
+ echo " /project:generate-tech-spec - Generate the technical spec"
238
+ echo ""
239
+ echo " EPICs (/project:):"
240
+ echo " /project:add-epic - Create an EPIC"
241
+ echo " /project:list-epics - List EPICs"
242
+ echo " /project:update-epic - Edit an EPIC"
243
+ echo ""
244
+ echo " User Stories (/project:):"
245
+ echo " /project:add-story - Create a User Story"
246
+ echo " /project:list-stories - List User Stories"
247
+ echo " /project:update-story - Edit a User Story"
248
+ echo ""
249
+ echo " Tasks (/project:):"
250
+ echo " /project:add-task - Create a task"
251
+ echo " /project:list-tasks - List tasks"
252
+ echo " /project:move-task - Change status"
253
+ echo ""
254
+ echo " Visualization (/project:):"
255
+ echo " /project:board - Sprint Kanban"
256
+ echo " /project:run-sprint - Run a sprint"
257
+ echo " /project:run-epic - Run an EPIC"
258
+ echo " /project:batch-status - Batch status"
259
+ echo ""
260
+ echo " Sprint (/sprint:):"
261
+ echo " /sprint:status - Sprint metrics"
262
+ echo " /sprint:transition - Change status/sprint"
263
+ echo " /sprint:next-story - Next ready story"
264
+ echo " /sprint:auto-route - Automatic routing"
265
+ echo " /sprint:dev - Develop a story"
266
+ echo ""
267
+ echo " Quality Gates (/gate:):"
268
+ echo " /gate:validate-backlog - Validate SCRUM compliance"
269
+ echo " /gate:validate-prd - Validate the PRD"
270
+ echo " /gate:validate-techspec - Validate the technical spec"
271
+ echo " /gate:validate-story - Validate a User Story (DoD)"
272
+ echo " /gate:validate-sprint - Validate a sprint"
273
+ echo " /gate:report - Quality report"
274
+ echo ""
275
+ echo "🤖 Available agents:"
276
+ echo " @po - Product Owner (backlog, User Stories, prioritization)"
277
+ echo " @tech - Tech Lead (architecture, tasks, estimation)"
278
+ echo ""
279
+ echo "📁 Structure created:"
280
+ echo " $PROJECT_DIR/"
281
+ echo " ├── CLAUDE.md"
282
+ echo " ├── .claude/"
283
+ echo " │ ├── commands/project/ (22 commands)"
284
+ echo " │ ├── commands/sprint/ (5 commands)"
285
+ echo " │ ├── commands/gate/ (6 commands)"
286
+ echo " │ ├── agents/ (2 agents)"
287
+ echo " │ └── templates/project/ (5 templates)"
288
+ echo " └── project-management/"
289
+ echo " ├── backlog/"
290
+ echo " │ ├── index.md"
291
+ echo " │ ├── epics/"
292
+ echo " │ └── user-stories/"
293
+ echo " ├── sprints/"
294
+ echo " └── metrics/"
295
+ echo ""
296
+ echo "🚀 Getting started:"
297
+ echo " cd $PROJECT_DIR"
298
+ echo " claude"
299
+ echo " > /project:add-epic \"My first EPIC\""
300
+ echo ""
301
+ echo "📊 Strict status workflow:"
302
+ echo " 🔴 To Do → 🟡 In Progress → 🟢 Done"
303
+ echo " (⏸️ Blocked possible at any time)"
304
+ fi
package/README.md CHANGED
@@ -41,7 +41,7 @@ A comprehensive framework for AI-assisted development with [Claude Code](https:/
41
41
  **Revue documentation (2026-06-26, v8.17.2) :**
42
42
 
43
43
  - **Nouveau tutoriel phare** : `docs/guides/*/10-complete-workflow.md` réécrit en walkthrough narré de bout en bout (idée → backlog → sprint → livraison) pour grands débutants — glossaire, modes d'exécution, gates, discipline `/clear`, exemple *TaskFlow* + annexe multi-stack. Disponible en 5 langues, lié depuis le README et `guides/index.md`.
44
- - **Fraîcheur** : compteurs et versions réalignés sur le SSOT (125 core / 219 total commandes, 70 agents, 55 skills, 11 stacks ; Claude Code 2.1.97 min / 2.1.193 rec ; Flutter 3.44, RN 0.86, Symfony 8.1). Suppression de `/bmad:init` (→ `/workflow:init`).
44
+ - **Fraîcheur** : compteurs et versions réalignés sur le SSOT (125 core / 219 total commandes, 70 agents, 55 skills, 11 stacks ; Claude Code 2.1.97 min / 2.1.193 rec ; Flutter 3.44, RN 0.85, Symfony 8.1). Suppression de `/bmad:init` (→ `/workflow:init`).
45
45
  - **Sans doublon** : index des guides de migration, en-têtes « narré vs full » (COMMANDS/AGENTS), bannière PLANNED sur MCP-SERVERS, cross-links entre docs concurrentielles, stub `docs/SECURITY.md` supprimé.
46
46
 
47
47
  ## What's New in v8.17.1
@@ -52,7 +52,7 @@ A comprehensive framework for AI-assisted development with [Claude Code](https:/
52
52
 
53
53
  **Audit exhaustif multi-agents + mises à jour 2026-06-24 (v8.17.0) :**
54
54
 
55
- - **Versions infra** : Docker 29.6.0, OpenTofu 1.12.2, Ansible 2.21.1, Helm 4.2.2, Node.js 24.x Active LTS.
55
+ - **Versions infra** : Docker 29.6.1, OpenTofu 1.12.2, Ansible 2.21.1, Helm 4.2.2, Node.js 24.x Active LTS.
56
56
  - **Sécurité** : OWASP Top 10:2025 complet (10/10 catégories dans la règle 11) ; RS256 marqué DEPRECATED ; guidance Argon2id précisée ; hook templates `protect-files.json` / `quality-gate.json` corrigés (anti-pattern `$TOOL_INPUT` → lecture stdin JSON).
57
57
  - **Modèles** : IDs canoniques dans la table d'effort (Opus 4.8 / **Sonnet 5** sorti 2026-06-30, intro $2/$10 / Haiku 4.5). Sonnet 5 remplace 4.6 comme Sonnet courant. Fable 5 / Mythos 5 suspendus (directive export-control US, 2026-06-12) — retirés des recommandations.
58
58
  - **CLI** : `/goal`, `/usage`, `/workflows` documentés dans CLI-REFERENCE.md.
@@ -158,13 +158,13 @@ Claude Code is powerful on its own. Claude Craft makes it **consistent and team-
158
158
  | **Python** | 3.14+ / FastAPI | `--tech=python` |
159
159
  | **Angular** | 22 | `--tech=angular` |
160
160
  | **Vue.js** | 3.5+ (3.6 beta Vapor) | `--tech=vuejs` |
161
- | **React Native** | 0.86 (New Architecture) | `--tech=reactnative` |
161
+ | **React Native** | 0.85 (New Architecture) | `--tech=reactnative` |
162
162
  | **C# / .NET** | 10 LTS / C# 14 | `--tech=csharp` |
163
163
  | **Laravel** | 13.x / PHP 8.3+ (8.5 recommandé) | `--tech=laravel` |
164
164
  | **PHP** | 8.5 | `--tech=php` |
165
165
  | **Paperclip** | 2026.609.0 | `--tech=paperclip` |
166
166
 
167
- | **Docker** | 29.6.0 (CVE-2026-33997) | `--tech=docker` |
167
+ | **Docker** | 29.6.1 (CVE-2026-33997) | `--tech=docker` |
168
168
  | **Coolify** | v4.1.2 | `--tech=coolify` |
169
169
  | **Kubernetes** | 1.36.1 | `--tech=kubernetes` |
170
170
  | **OpenTofu** | 1.12.2 | `--tech=opentofu` |
@@ -8,7 +8,7 @@
8
8
 
9
9
  # Claude-Craft - Multi-Technology Framework
10
10
 
11
- **Version:** 8.19.1 | **Languages:** en, fr, es, de, pt
11
+ **Version:** 8.19.2 | **Languages:** en, fr, es, de, pt
12
12
 
13
13
  A comprehensive AI-assisted development framework for Claude Code with 11 technology stacks, 31 specialized agents (+39 infra agents on-demand), 126 commands across 15 namespaces, and BMAD v6 project management.
14
14
 
@@ -22,7 +22,7 @@ A comprehensive AI-assisted development framework for Claude Code with 11 techno
22
22
  | **Symfony / PHP** | 8.1 / PHP 8.4+ | Clean Architecture | DDD, Hexagonal, API Platform, HTTP-less apps, JsonStreamer |
23
23
  | **Flutter / Dart** | 3.44 / Dart 3.12 | Clean Architecture | BLoC v9, Riverpod 3, Material 3, Impeller |
24
24
  | **React** | 19.2 + Compiler 1.0 | Feature-based | Hooks, Zustand, React Query, Server Components |
25
- | **React Native** | 0.86 (New Architecture) | Feature-based | Navigation 7, Reanimated 4, TurboModules |
25
+ | **React Native** | 0.85 (New Architecture) | Feature-based | Navigation 7, Reanimated 4, TurboModules |
26
26
  | **Angular** | 22 | Domain-driven | Signals, Signal Forms (stable), Zoneless par défaut, OnPush défaut, httpResource (TS 6) |
27
27
  | **Vue.js** | 3.5+ (3.6 beta Vapor) | Composition API | Pinia 3, Vue Router 5, Vite 8, Vitest, Alien Signals |
28
28
  | **Laravel** | 13.x / PHP 8.3+ (8.5 recommandé) | Clean Architecture | Actions, Pest 4, Sanctum, AI SDK, Passkey |
@@ -55,7 +55,7 @@ See `@.claude/INDEX.md` for condensed checklists and patterns.
55
55
 
56
56
  ## Available Commands (15 namespaces, 126 commands)
57
57
 
58
- Core: `/common:*`, `/workflow:*`, `/team:*`, `/qa:*`, `/uiux:*` | Tech: `/symfony:*`, `/react:*`, `/flutter:*`, `/python:*`, `/angular:*`, `/vuejs:*`, `/laravel:*`, `/reactnative:*`, `/csharp:*`, `/php:*` _(et `/paperclip:*` via `--tech=paperclip`)_ | Infra (via `@devops-engineer`): Docker 29.6.0, Coolify v4.1.2, K8s 1.36.1, OpenTofu 1.12.2, Ansible 2.21.1, FrankenPHP 1.12.4, PgBouncer 1.25.2 | Project: `/sprint:*`, `/gate:*`, `/project:*`
58
+ Core: `/common:*`, `/workflow:*`, `/team:*`, `/qa:*`, `/uiux:*` | Tech: `/symfony:*`, `/react:*`, `/flutter:*`, `/python:*`, `/angular:*`, `/vuejs:*`, `/laravel:*`, `/reactnative:*`, `/csharp:*`, `/php:*` _(et `/paperclip:*` via `--tech=paperclip`)_ | Infra (via `@devops-engineer`): Docker 29.6.1, Coolify v4.1.2, K8s 1.36.1, OpenTofu 1.12.2, Ansible 2.21.1, FrankenPHP 1.12.4, PgBouncer 1.25.2 | Project: `/sprint:*`, `/gate:*`, `/project:*`
59
59
 
60
60
  Full reference: [Commands](../docs/COMMANDS.md) | [CLI Reference](../docs/CLI-REFERENCE.md)
61
61
 
@@ -8,7 +8,7 @@
8
8
 
9
9
  # Claude-Craft - Multi-Technology Framework
10
10
 
11
- **Version:** 8.19.1 | **Languages:** en, fr, es, de, pt
11
+ **Version:** 8.19.2 | **Languages:** en, fr, es, de, pt
12
12
 
13
13
  A comprehensive AI-assisted development framework for Claude Code with 11 technology stacks, 31 specialized agents (+39 infra agents on-demand), 126 commands across 15 namespaces, and BMAD v6 project management.
14
14
 
@@ -22,7 +22,7 @@ A comprehensive AI-assisted development framework for Claude Code with 11 techno
22
22
  | **Symfony / PHP** | 8.1 / PHP 8.4+ | Clean Architecture | DDD, Hexagonal, API Platform, HTTP-less apps, JsonStreamer |
23
23
  | **Flutter / Dart** | 3.44 / Dart 3.12 | Clean Architecture | BLoC v9, Riverpod 3, Material 3, Impeller |
24
24
  | **React** | 19.2 + Compiler 1.0 | Feature-based | Hooks, Zustand, React Query, Server Components |
25
- | **React Native** | 0.86 (New Architecture) | Feature-based | Navigation 7, Reanimated 4, TurboModules |
25
+ | **React Native** | 0.85 (New Architecture) | Feature-based | Navigation 7, Reanimated 4, TurboModules |
26
26
  | **Angular** | 22 | Domain-driven | Signals, Signal Forms (stable), Zoneless par défaut, OnPush défaut, httpResource (TS 6) |
27
27
  | **Vue.js** | 3.5+ (3.6 beta Vapor) | Composition API | Pinia 3, Vue Router 5, Vite 8, Vitest, Alien Signals |
28
28
  | **Laravel** | 13.x / PHP 8.3+ (8.5 recommandé) | Clean Architecture | Actions, Pest 4, Sanctum, AI SDK, Passkey |
@@ -55,7 +55,7 @@ See `@.claude/INDEX.md` for condensed checklists and patterns.
55
55
 
56
56
  ## Available Commands (15 namespaces, 126 commands)
57
57
 
58
- Core: `/common:*`, `/workflow:*`, `/team:*`, `/qa:*`, `/uiux:*` | Tech: `/symfony:*`, `/react:*`, `/flutter:*`, `/python:*`, `/angular:*`, `/vuejs:*`, `/laravel:*`, `/reactnative:*`, `/csharp:*`, `/php:*` _(et `/paperclip:*` via `--tech=paperclip`)_ | Infra (via `@devops-engineer`): Docker 29.6.0, Coolify v4.1.2, K8s 1.36.1, OpenTofu 1.12.2, Ansible 2.21.1, FrankenPHP 1.12.4, PgBouncer 1.25.2 | Project: `/sprint:*`, `/gate:*`, `/project:*`
58
+ Core: `/common:*`, `/workflow:*`, `/team:*`, `/qa:*`, `/uiux:*` | Tech: `/symfony:*`, `/react:*`, `/flutter:*`, `/python:*`, `/angular:*`, `/vuejs:*`, `/laravel:*`, `/reactnative:*`, `/csharp:*`, `/php:*` _(et `/paperclip:*` via `--tech=paperclip`)_ | Infra (via `@devops-engineer`): Docker 29.6.1, Coolify v4.1.2, K8s 1.36.1, OpenTofu 1.12.2, Ansible 2.21.1, FrankenPHP 1.12.4, PgBouncer 1.25.2 | Project: `/sprint:*`, `/gate:*`, `/project:*`
59
59
 
60
60
  Full reference: [Commands](../docs/COMMANDS.md) | [CLI Reference](../docs/CLI-REFERENCE.md)
61
61
 
@@ -61,7 +61,7 @@ const TECH_REGISTRY = {
61
61
  namespace: 'reactnative',
62
62
  i18nDir: 'ReactNative',
63
63
  installScript: 'install-reactnative-rules.sh',
64
- version: '0.86',
64
+ version: '0.85',
65
65
  tier: 2,
66
66
  },
67
67
  angular: {
@@ -145,7 +145,7 @@ const TECH_REGISTRY = {
145
145
  namespace: 'docker',
146
146
  i18nDir: 'Docker',
147
147
  installScript: 'install-docker-rules.sh',
148
- version: '29.6.0',
148
+ version: '29.6.1',
149
149
  tier: null,
150
150
  },
151
151
  coolify: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-bearded-bear/claude-craft",
3
- "version": "8.19.1",
3
+ "version": "8.19.2",
4
4
  "description": "A comprehensive framework for AI-assisted development with Claude Code. Install standardized rules, agents, and commands for your projects.",
5
5
  "type": "module",
6
6
  "main": "cli/index.js",
@@ -17,7 +17,7 @@
17
17
  "test:watch": "vitest",
18
18
  "lint": "eslint cli/ scripts/",
19
19
  "lint:fix": "eslint cli/ scripts/ --fix",
20
- "lint:shell": "find Dev/ Infra/ Project/ Tools/ scripts/ .bmad/ -name '*.sh' -type f | xargs shellcheck --severity=warning",
20
+ "lint:shell": "find Dev/ Infra/ Project/ Tools/ scripts/ .bmad/ website/scripts/ -name '*.sh' -type f | xargs shellcheck --severity=warning",
21
21
  "lint:i18n": "bash scripts/verify-i18n-parity.sh",
22
22
  "lint:includes": "node scripts/verify-claude-includes.mjs",
23
23
  "lint:versions": "node scripts/verify-versions.mjs",