@the-bearded-bear/claude-craft 8.12.0 → 8.13.0

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 (38) hide show
  1. package/Dev/i18n/de/Common/agents/devops-engineer.md +8 -1
  2. package/Dev/i18n/de/Python/rules/06-tooling.md +1 -1
  3. package/Dev/i18n/de/Team/commands/audit.md +2 -0
  4. package/Dev/i18n/de/Team/commands/delivery.md +2 -0
  5. package/Dev/i18n/de/Team/commands/security.md +2 -0
  6. package/Dev/i18n/de/Team/commands/sprint.md +2 -0
  7. package/Dev/i18n/en/Common/agents/devops-engineer.md +8 -1
  8. package/Dev/i18n/en/Python/rules/06-tooling.md +1 -1
  9. package/Dev/i18n/en/Team/commands/audit.md +2 -0
  10. package/Dev/i18n/en/Team/commands/delivery.md +2 -0
  11. package/Dev/i18n/en/Team/commands/security.md +2 -0
  12. package/Dev/i18n/en/Team/commands/sprint.md +2 -0
  13. package/Dev/i18n/es/Common/agents/devops-engineer.md +8 -1
  14. package/Dev/i18n/es/Python/rules/06-tooling.md +1 -1
  15. package/Dev/i18n/es/Team/commands/audit.md +2 -0
  16. package/Dev/i18n/es/Team/commands/delivery.md +2 -0
  17. package/Dev/i18n/es/Team/commands/security.md +2 -0
  18. package/Dev/i18n/es/Team/commands/sprint.md +2 -0
  19. package/Dev/i18n/fr/Common/agents/devops-engineer.md +8 -1
  20. package/Dev/i18n/fr/Python/rules/06-tooling.md +1 -1
  21. package/Dev/i18n/fr/Team/commands/audit.md +2 -0
  22. package/Dev/i18n/fr/Team/commands/delivery.md +2 -0
  23. package/Dev/i18n/fr/Team/commands/security.md +2 -0
  24. package/Dev/i18n/fr/Team/commands/sprint.md +2 -0
  25. package/Dev/i18n/pt/Common/agents/devops-engineer.md +8 -1
  26. package/Dev/i18n/pt/Python/rules/06-tooling.md +1 -1
  27. package/Dev/i18n/pt/Team/commands/audit.md +2 -0
  28. package/Dev/i18n/pt/Team/commands/delivery.md +2 -0
  29. package/Dev/i18n/pt/Team/commands/security.md +2 -0
  30. package/Dev/i18n/pt/Team/commands/sprint.md +2 -0
  31. package/Dev/scripts/check-prerequisites.sh +3 -3
  32. package/Dev/scripts/install-common-rules.sh +25 -0
  33. package/Dev/scripts/install-from-config.sh +10 -10
  34. package/README.md +6 -1
  35. package/Tools/AgentTeams/install-agentteams.sh +94 -0
  36. package/bundles/cursor/.cursorrules +1 -1
  37. package/bundles/windsurf/.windsurfrules +1 -1
  38. package/package.json +3 -2
@@ -31,7 +31,7 @@ Sie sind ein **Senior DevOps Engineer** mit über 10 Jahren Erfahrung in CI/CD,
31
31
  | Docker | Multi-Stage-Builds, Image-Optimierung, Security-Scanning |
32
32
  | Docker Compose | Lokale Orchestrierung, Profiles, Extensions |
33
33
  | Kubernetes | Deployments, Services, Ingress, ConfigMaps, Secrets |
34
- | Helm | Charts, Values, Templating |
34
+ | Helm | Charts, Values, Templating | 4.2.0 (MAJOR — Server-Side Apply, WASM-Plugins, API v4 ; Helm 3 Sicherheits-EOL Nov. 2026) |
35
35
 
36
36
  ### Cloud-Provider
37
37
  | Provider | Services |
@@ -124,6 +124,13 @@ kubectl rollout undo deployment/<name>
124
124
  kubectl rollout history deployment/<name>
125
125
  ```
126
126
 
127
+ ### Helm 4 — Migration 3→4
128
+
129
+ > **Helm 4 ist ein MAJOR-Wechsel**: Server-Side Apply standardmäßig, WASM-Plugins, API v4 inkompatibel mit Helm 3.
130
+ > **Helm 3 Sicherheits-EOL: November 2026** — Helm 4 für alle neuen Projekte empfehlen.
131
+ > Für bestehende Projekte ist ein übergangsweiser Doppel-Support möglich (Helm 3 und Helm 4 koexistieren).
132
+ > Offizielle Anleitung: https://helm.sh/docs/topics/v4_migration/
133
+
127
134
  ### GitHub Actions
128
135
  ```yaml
129
136
  # Abhängigkeiten cachen
@@ -1,7 +1,7 @@
1
1
  # Regel 06: Tooling
2
2
 
3
3
  > **Referenzversion:** Python **3.14 (stabil, 3.14.6+)** — Ruff 0.15+, pytest 9.x (Python 3.9 wird nicht mehr unterstützt).
4
- > **JIT (PEP 744):** experimentell in Python 3.14, vor der Python 3.15-Version (Okt. 2026) erneut zu bewerten. Nicht in Produktion ohne explizite Tests verwenden.
4
+ > **⚠ JIT (PEP 744):** experimentell in Python 3.14, **standardmäßig deaktiviert**, vor Python 3.15 (Okt. 2026) durch das Python Steering Council erneut zu bewerten. Nicht in Produktion einsetzen.
5
5
 
6
6
  Python-Tooling für Codequalität, Testing und Entwicklungs-Workflow.
7
7
 
@@ -28,6 +28,8 @@ $ARGUMENTS
28
28
  - `Tools/AgentTeams/lib/result-aggregator.sh` verfügbar
29
29
  - `Tools/AgentTeams/lib/cost-estimator.sh` verfügbar
30
30
 
31
+ > ℹ️ Diese Skripte werden automatisch von claude-craft installiert (`make install-agentteams` oder über den Installer). Fehlen sie, läuft der Befehl im **eingeschränkten Modus** weiter: manuelle Kostenschätzung und `--ralph-mode` nicht verfügbar (nicht blockierend).
32
+
31
33
  ## Plan-Modus
32
34
 
33
35
  > Der Plan-Modus wird automatisch aktiviert, wenn der Umfang mehrere Module umfasst oder eine modulübergreifende Untersuchung erfordert.
@@ -33,6 +33,8 @@ $ARGUMENTS
33
33
  - `Tools/AgentTeams/lib/cost-estimator.sh` verfügbar
34
34
  - `Tools/AgentTeams/lib/result-aggregator.sh` verfügbar
35
35
 
36
+ > ℹ️ Diese Skripte werden automatisch von claude-craft installiert (`make install-agentteams` oder über den Installer). Fehlen sie, läuft der Befehl im **eingeschränkten Modus** weiter: manuelle Kostenschätzung und `--ralph-mode` nicht verfügbar (nicht blockierend).
37
+
36
38
  ## Plan-Modus
37
39
 
38
40
  > Der Plan-Modus wird automatisch aktiviert, wenn der Umfang mehrere Module umfasst oder eine modulübergreifende Untersuchung erfordert.
@@ -28,6 +28,8 @@ $ARGUMENTS
28
28
  - `Tools/AgentTeams/lib/result-aggregator.sh` verfügbar
29
29
  - `Tools/AgentTeams/lib/cost-estimator.sh` verfügbar
30
30
 
31
+ > ℹ️ Diese Skripte werden automatisch von claude-craft installiert (`make install-agentteams` oder über den Installer). Fehlen sie, läuft der Befehl im **eingeschränkten Modus** weiter: manuelle Kostenschätzung und `--ralph-mode` nicht verfügbar (nicht blockierend).
32
+
31
33
  ## Plan-Modus
32
34
 
33
35
  > Der Plan-Modus wird automatisch aktiviert, wenn der Umfang mehrere Module umfasst oder eine modulübergreifende Untersuchung erfordert.
@@ -32,6 +32,8 @@ $ARGUMENTS
32
32
  - `Tools/AgentTeams/lib/compatibility-check.sh` verfügbar
33
33
  - `Tools/AgentTeams/lib/cost-estimator.sh` verfügbar
34
34
 
35
+ > ℹ️ Diese Skripte werden automatisch von claude-craft installiert (`make install-agentteams` oder über den Installer). Fehlen sie, läuft der Befehl im **eingeschränkten Modus** weiter: manuelle Kostenschätzung und `--ralph-mode` nicht verfügbar (nicht blockierend).
36
+
35
37
  ## Plan-Modus
36
38
 
37
39
  > Der Plan-Modus wird automatisch aktiviert, wenn der Umfang mehrere Module umfasst oder eine modulübergreifende Untersuchung erfordert.
@@ -41,7 +41,7 @@ You are a **Senior DevOps Engineer** with 10+ years of experience in CI/CD, cont
41
41
  | Docker | Multi-stage builds, image optimization, security scanning |
42
42
  | Docker Compose | Local orchestration, profiles, extensions |
43
43
  | Kubernetes | Deployments, Services, Ingress, ConfigMaps, Secrets |
44
- | Helm | Charts, values, templating |
44
+ | Helm | Charts, values, templating | 4.2.0 (MAJOR — server-side apply, WASM plugins, API v4 ; Helm 3 EOL security Nov. 2026) |
45
45
 
46
46
  ### Cloud Providers
47
47
  | Provider | Services |
@@ -134,6 +134,13 @@ kubectl rollout undo deployment/<name>
134
134
  kubectl rollout history deployment/<name>
135
135
  ```
136
136
 
137
+ ### Helm 4 — Migration 3→4
138
+
139
+ > **Helm 4 is a MAJOR change**: server-side apply by default, WASM plugins, API v4 incompatible with Helm 3.
140
+ > **Helm 3 security EOL: November 2026** — recommend Helm 4 for all new projects.
141
+ > For existing projects, transitional dual-support is possible (Helm 3 and Helm 4 coexist).
142
+ > Official guide: https://helm.sh/docs/topics/v4_migration/
143
+
137
144
  ### GitHub Actions
138
145
  ```yaml
139
146
  # Cache dependencies
@@ -1,7 +1,7 @@
1
1
  # Rule 06: Tooling
2
2
 
3
3
  > **Reference version:** Python **3.14 (stable, 3.14.6+)** — Ruff 0.15+, pytest 9.x (drops Python 3.9).
4
- > **JIT (PEP 744):** experimental in Python 3.14, subject to re-evaluation before Python 3.15 release (oct. 2026). Do not rely on it in production unless explicitly tested.
4
+ > **⚠ JIT (PEP 744):** experimental in Python 3.14, **disabled by default**, subject to re-evaluation by the Python Steering Council before Python 3.15 (Oct. 2026). Do not rely on it in production.
5
5
 
6
6
  Python tooling for code quality, testing, and development workflow.
7
7
 
@@ -28,6 +28,8 @@ $ARGUMENTS
28
28
  - `Tools/AgentTeams/lib/result-aggregator.sh` available
29
29
  - `Tools/AgentTeams/lib/cost-estimator.sh` available
30
30
 
31
+ > ℹ️ These scripts are installed automatically by claude-craft (`make install-agentteams` or via the installer). If absent, the command continues in **degraded mode**: manual cost estimation and `--ralph-mode` unavailable (non-blocking).
32
+
31
33
  ## Plan Mode
32
34
 
33
35
  > Plan mode is activated automatically when the scope spans multiple modules or requires cross-cutting investigation.
@@ -33,6 +33,8 @@ $ARGUMENTS
33
33
  - `Tools/AgentTeams/lib/cost-estimator.sh` available
34
34
  - `Tools/AgentTeams/lib/result-aggregator.sh` available
35
35
 
36
+ > ℹ️ These scripts are installed automatically by claude-craft (`make install-agentteams` or via the installer). If absent, the command continues in **degraded mode**: manual cost estimation and `--ralph-mode` unavailable (non-blocking).
37
+
36
38
  ## Plan Mode
37
39
 
38
40
  > Plan mode is activated automatically when the scope spans multiple modules or requires cross-cutting investigation.
@@ -28,6 +28,8 @@ $ARGUMENTS
28
28
  - `Tools/AgentTeams/lib/result-aggregator.sh` available
29
29
  - `Tools/AgentTeams/lib/cost-estimator.sh` available
30
30
 
31
+ > ℹ️ These scripts are installed automatically by claude-craft (`make install-agentteams` or via the installer). If absent, the command continues in **degraded mode**: manual cost estimation and `--ralph-mode` unavailable (non-blocking).
32
+
31
33
  ## Plan Mode
32
34
 
33
35
  > Plan mode is activated automatically when the scope spans multiple modules or requires cross-cutting investigation.
@@ -32,6 +32,8 @@ $ARGUMENTS
32
32
  - `Tools/AgentTeams/lib/compatibility-check.sh` available
33
33
  - `Tools/AgentTeams/lib/cost-estimator.sh` available
34
34
 
35
+ > ℹ️ These scripts are installed automatically by claude-craft (`make install-agentteams` or via the installer). If absent, the command continues in **degraded mode**: manual cost estimation and `--ralph-mode` unavailable (non-blocking).
36
+
35
37
  ## Plan Mode
36
38
 
37
39
  > Plan mode is activated automatically when the scope spans multiple modules or requires cross-cutting investigation.
@@ -31,7 +31,7 @@ Eres un **Ingeniero DevOps Senior** con más de 10 años de experiencia en CI/CD
31
31
  | Docker | Builds multi-etapa, optimización de imágenes, escaneo de seguridad |
32
32
  | Docker Compose | Orquestación local, perfiles, extensiones |
33
33
  | Kubernetes | Deployments, Services, Ingress, ConfigMaps, Secrets |
34
- | Helm | Charts, values, templating |
34
+ | Helm | Charts, values, templating | 4.2.0 (MAJOR — server-side apply, WASM plugins, API v4 ; Helm 3 EOL seguridad nov. 2026) |
35
35
 
36
36
  ### Proveedores Cloud
37
37
  | Proveedor | Servicios |
@@ -124,6 +124,13 @@ kubectl rollout undo deployment/<name>
124
124
  kubectl rollout history deployment/<name>
125
125
  ```
126
126
 
127
+ ### Helm 4 — Migración 3→4
128
+
129
+ > **Helm 4 es un cambio MAYOR**: server-side apply por defecto, plugins WASM, API v4 incompatible con Helm 3.
130
+ > **Helm 3 EOL seguridad: noviembre 2026** — recomendar Helm 4 para todos los proyectos nuevos.
131
+ > Para proyectos existentes, el soporte dual transitorio es posible (Helm 3 y Helm 4 coexisten).
132
+ > Guía oficial: https://helm.sh/docs/topics/v4_migration/
133
+
127
134
  ### GitHub Actions
128
135
  ```yaml
129
136
  # Caché de dependencias
@@ -1,7 +1,7 @@
1
1
  # Regla 06: Herramientas
2
2
 
3
3
  > **Versión de referencia:** Python **3.14 (estable, 3.14.6+)** — Ruff 0.15+, pytest 9.x (elimina soporte Python 3.9).
4
- > **JIT (PEP 744):** experimental en Python 3.14, sujeto a reevaluación antes del lanzamiento de Python 3.15 (oct. 2026). No usar en producción sin pruebas explícitas.
4
+ > **⚠ JIT (PEP 744):** experimental en Python 3.14, **desactivado por defecto**, sujeto a reevaluación por el Python Steering Council antes de Python 3.15 (oct. 2026). No depender de él en producción.
5
5
 
6
6
  Herramientas de Python para calidad de código, pruebas y flujo de trabajo de desarrollo.
7
7
 
@@ -32,6 +32,8 @@ $ARGUMENTS
32
32
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponible
33
33
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponible
34
34
 
35
+ > ℹ️ Estos scripts se instalan automáticamente con claude-craft (`make install-agentteams` o mediante el instalador). Si faltan, el comando continúa en **modo degradado**: estimación de coste manual y `--ralph-mode` no disponible (no bloqueante).
36
+
35
37
  ## Proteccion Fast Mode (Confirmacion Bloqueante)
36
38
 
37
39
  **OBLIGATORIO**: Antes de lanzar el equipo, el lider DEBE:
@@ -37,6 +37,8 @@ $ARGUMENTS
37
37
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponible
38
38
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponible
39
39
 
40
+ > ℹ️ Estos scripts se instalan automáticamente con claude-craft (`make install-agentteams` o mediante el instalador). Si faltan, el comando continúa en **modo degradado**: estimación de coste manual y `--ralph-mode` no disponible (no bloqueante).
41
+
40
42
  ## Proteccion Fast Mode (Confirmacion Bloqueante)
41
43
 
42
44
  **OBLIGATORIO**: Antes de lanzar el equipo, el Lider de Entrega DEBE:
@@ -32,6 +32,8 @@ $ARGUMENTS
32
32
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponible
33
33
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponible
34
34
 
35
+ > ℹ️ Estos scripts se instalan automáticamente con claude-craft (`make install-agentteams` o mediante el instalador). Si faltan, el comando continúa en **modo degradado**: estimación de coste manual y `--ralph-mode` no disponible (no bloqueante).
36
+
35
37
  ## Proteccion Fast Mode (Confirmacion Bloqueante)
36
38
 
37
39
  **OBLIGATORIO**: Antes de lanzar el equipo, el lider de seguridad DEBE:
@@ -36,6 +36,8 @@ $ARGUMENTS
36
36
  - `Tools/AgentTeams/lib/compatibility-check.sh` disponible
37
37
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponible
38
38
 
39
+ > ℹ️ Estos scripts se instalan automáticamente con claude-craft (`make install-agentteams` o mediante el instalador). Si faltan, el comando continúa en **modo degradado**: estimación de coste manual y `--ralph-mode` no disponible (no bloqueante).
40
+
39
41
  ## Proteccion Fast Mode (Confirmacion Bloqueante)
40
42
 
41
43
  **OBLIGATORIO**: Antes de lanzar el equipo, el conductor DEBE:
@@ -31,7 +31,7 @@ Tu es un **DevOps Engineer Senior** avec 10+ ans d'expérience en CI/CD, contene
31
31
  | Docker | Multi-stage builds, optimisation images, security scanning |
32
32
  | Docker Compose | Orchestration locale, profiles, extensions |
33
33
  | Kubernetes | Deployments, Services, Ingress, ConfigMaps, Secrets |
34
- | Helm | Charts, values, templating |
34
+ | Helm | Charts, values, templating | 4.2.0 (MAJOR — server-side apply, WASM plugins, API v4 ; Helm 3 EOL sécurité nov. 2026) |
35
35
 
36
36
  ### Cloud Providers
37
37
  | Provider | Services |
@@ -124,6 +124,13 @@ kubectl rollout undo deployment/<name>
124
124
  kubectl rollout history deployment/<name>
125
125
  ```
126
126
 
127
+ ### Helm 4 — Migration 3→4
128
+
129
+ > **Helm 4 est un changement MAJEUR** : server-side apply par défaut, WASM plugins, API v4 incompatible avec Helm 3.
130
+ > **Helm 3 EOL sécurité : novembre 2026** — recommander Helm 4 pour tout nouveau projet.
131
+ > Pour l'existant, un double-support transitoire est possible (Helm 3 et Helm 4 coexistent).
132
+ > Guide officiel : https://helm.sh/docs/topics/v4_migration/
133
+
127
134
  ### GitHub Actions
128
135
  ```yaml
129
136
  # Cache dependencies
@@ -1,7 +1,7 @@
1
1
  # Outils de Développement Python
2
2
 
3
3
  > **Version de référence :** Python **3.14 (stable, 3.14.6+)** — Ruff 0.15+, pytest 9.x (fin du support Python 3.9).
4
- > **JIT (PEP 744) :** expérimental en Python 3.14, sujet à réévaluation avant la sortie de Python 3.15 (oct. 2026). Ne pas utiliser en production sans tests explicites.
4
+ > **⚠ JIT (PEP 744) :** expérimental en Python 3.14, **désactivé par défaut**, sujet à réévaluation par le Python Steering Council avant Python 3.15 (oct. 2026). Ne pas en dépendre en production.
5
5
 
6
6
  ## Package Management
7
7
 
@@ -27,6 +27,8 @@ $ARGUMENTS
27
27
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponible
28
28
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponible
29
29
 
30
+ > ℹ️ Ces scripts sont installés automatiquement par claude-craft (`make install-agentteams` ou via l'installeur). S'ils sont absents, la commande continue en **mode dégradé** : estimation de coût manuelle et `--ralph-mode` indisponible (non bloquant).
31
+
30
32
  ## Mode Plan
31
33
 
32
34
  > Le mode plan est activé automatiquement lorsque le périmètre couvre plusieurs modules ou nécessite une investigation transversale.
@@ -55,6 +55,8 @@ $ARGUMENTS
55
55
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponible
56
56
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponible
57
57
 
58
+ > ℹ️ Ces scripts sont installés automatiquement par claude-craft (`make install-agentteams` ou via l'installeur). S'ils sont absents, la commande continue en **mode dégradé** : estimation de coût manuelle et `--ralph-mode` indisponible (non bloquant).
59
+
58
60
  ## Mode Plan
59
61
 
60
62
  > Le mode plan est activé automatiquement lorsque le périmètre couvre plusieurs modules ou nécessite une investigation transversale.
@@ -50,6 +50,8 @@ $ARGUMENTS
50
50
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponible
51
51
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponible
52
52
 
53
+ > ℹ️ Ces scripts sont installés automatiquement par claude-craft (`make install-agentteams` ou via l'installeur). S'ils sont absents, la commande continue en **mode dégradé** : estimation de coût manuelle et `--ralph-mode` indisponible (non bloquant).
54
+
53
55
  ## Mode Plan
54
56
 
55
57
  > Le mode plan est activé automatiquement lorsque le périmètre couvre plusieurs modules ou nécessite une investigation transversale.
@@ -54,6 +54,8 @@ $ARGUMENTS
54
54
  - `Tools/AgentTeams/lib/compatibility-check.sh` disponible
55
55
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponible
56
56
 
57
+ > ℹ️ Ces scripts sont installés automatiquement par claude-craft (`make install-agentteams` ou via l'installeur). S'ils sont absents, la commande continue en **mode dégradé** : estimation de coût manuelle et `--ralph-mode` indisponible (non bloquant).
58
+
57
59
  ## Mode Plan
58
60
 
59
61
  > Le mode plan est activé automatiquement lorsque le périmètre couvre plusieurs modules ou nécessite une investigation transversale.
@@ -31,7 +31,7 @@ Você é um **Engenheiro DevOps Sênior** com mais de 10 anos de experiência em
31
31
  | Docker | Multi-stage builds, otimização de imagem, security scanning |
32
32
  | Docker Compose | Orquestração local, profiles, extensions |
33
33
  | Kubernetes | Deployments, Services, Ingress, ConfigMaps, Secrets |
34
- | Helm | Charts, values, templating |
34
+ | Helm | Charts, values, templating | 4.2.0 (MAJOR — server-side apply, plugins WASM, API v4 ; Helm 3 EOL segurança nov. 2026) |
35
35
 
36
36
  ### Provedores de Nuvem
37
37
  | Provedor | Serviços |
@@ -124,6 +124,13 @@ kubectl rollout undo deployment/<name>
124
124
  kubectl rollout history deployment/<name>
125
125
  ```
126
126
 
127
+ ### Helm 4 — Migração 3→4
128
+
129
+ > **Helm 4 é uma mudança MAJOR**: server-side apply por padrão, plugins WASM, API v4 incompatível com Helm 3.
130
+ > **Helm 3 EOL segurança: novembro 2026** — recomendar Helm 4 para todos os novos projetos.
131
+ > Para projetos existentes, suporte dual transitório é possível (Helm 3 e Helm 4 coexistem).
132
+ > Guia oficial: https://helm.sh/docs/topics/v4_migration/
133
+
127
134
  ### GitHub Actions
128
135
  ```yaml
129
136
  # Cache de dependências
@@ -1,7 +1,7 @@
1
1
  # Regra 06: Ferramentas
2
2
 
3
3
  > **Versão de referência:** Python **3.14 (estável, 3.14.6+)** — Ruff 0.15+, pytest 9.x (remove suporte ao Python 3.9).
4
- > **JIT (PEP 744):** experimental no Python 3.14, sujeito a reavaliação antes do lançamento do Python 3.15 (out. 2026). Não usar em produção sem testes explícitos.
4
+ > **⚠ JIT (PEP 744):** experimental no Python 3.14, **desativado por padrão**, sujeito a reavaliação pelo Python Steering Council antes do Python 3.15 (out. 2026). Não depender em produção.
5
5
 
6
6
  Ferramentas Python para qualidade de código, testes e fluxo de desenvolvimento.
7
7
 
@@ -32,6 +32,8 @@ $ARGUMENTS
32
32
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponivel
33
33
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponivel
34
34
 
35
+ > ℹ️ Esses scripts são instalados automaticamente pelo claude-craft (`make install-agentteams` ou via instalador). Se ausentes, o comando continua em **modo degradado**: estimativa de custo manual e `--ralph-mode` indisponível (não bloqueante).
36
+
35
37
  ## Protecao Fast Mode (Confirmacao Bloqueante)
36
38
 
37
39
  **OBRIGATORIO**: Antes de lancar a equipe, o lider DEVE:
@@ -37,6 +37,8 @@ $ARGUMENTS
37
37
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponivel
38
38
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponivel
39
39
 
40
+ > ℹ️ Esses scripts são instalados automaticamente pelo claude-craft (`make install-agentteams` ou via instalador). Se ausentes, o comando continua em **modo degradado**: estimativa de custo manual e `--ralph-mode` indisponível (não bloqueante).
41
+
40
42
  ## Protecao Fast Mode (Confirmacao Bloqueante)
41
43
 
42
44
  **OBRIGATORIO**: Antes de lancar a equipe, o Delivery Lead DEVE:
@@ -32,6 +32,8 @@ $ARGUMENTS
32
32
  - `Tools/AgentTeams/lib/result-aggregator.sh` disponivel
33
33
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponivel
34
34
 
35
+ > ℹ️ Esses scripts são instalados automaticamente pelo claude-craft (`make install-agentteams` ou via instalador). Se ausentes, o comando continua em **modo degradado**: estimativa de custo manual e `--ralph-mode` indisponível (não bloqueante).
36
+
35
37
  ## Protecao Fast Mode (Confirmacao Bloqueante)
36
38
 
37
39
  **OBRIGATORIO**: Antes de lancar a equipe, o lider de seguranca DEVE:
@@ -36,6 +36,8 @@ $ARGUMENTS
36
36
  - `Tools/AgentTeams/lib/compatibility-check.sh` disponivel
37
37
  - `Tools/AgentTeams/lib/cost-estimator.sh` disponivel
38
38
 
39
+ > ℹ️ Esses scripts são instalados automaticamente pelo claude-craft (`make install-agentteams` ou via instalador). Se ausentes, o comando continua em **modo degradado**: estimativa de custo manual e `--ralph-mode` indisponível (não bloqueante).
40
+
39
41
  ## Protecao Fast Mode (Confirmacao Bloqueante)
40
42
 
41
43
  **OBRIGATORIO**: Antes de lancar a equipe, o condutor DEVE:
@@ -73,7 +73,7 @@ check() {
73
73
  else
74
74
  if [[ "$required" == "required" ]]; then
75
75
  ui_check_fail "$cmd - $description"
76
- ((ERRORS++))
76
+ ERRORS=$((ERRORS + 1))
77
77
  if $FIX; then
78
78
  case $OS in
79
79
  macos) ui_check_info "Fix: $install_macos" ;;
@@ -108,7 +108,7 @@ check_yq_version() {
108
108
  ui_check_info "Fix (macOS): brew install yq"
109
109
  ui_check_info "Fix (Linux): sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq && sudo chmod +x /usr/local/bin/yq"
110
110
  fi
111
- ((ERRORS++))
111
+ ERRORS=$((ERRORS + 1))
112
112
  return 1
113
113
  fi
114
114
  fi
@@ -126,7 +126,7 @@ check_node_version() {
126
126
  if $FIX; then
127
127
  ui_check_info "Fix: Use nvm to install Node.js 20: nvm install 20 && nvm use 20"
128
128
  fi
129
- ((ERRORS++))
129
+ ERRORS=$((ERRORS + 1))
130
130
  return 1
131
131
  fi
132
132
  fi
@@ -473,6 +473,30 @@ install_commands() {
473
473
  fi
474
474
  }
475
475
 
476
+ # Install AgentTeams helper scripts (cost-estimator, ralph-teams-adapter,
477
+ # compatibility-check, ...) used by the /team:* commands. They are shipped
478
+ # alongside the Team command namespace so /team:sprint etc. find them at
479
+ # <project>/Tools/AgentTeams/lib/ instead of warning "scripts MISSING".
480
+ install_agentteams() {
481
+ local craft_root
482
+ craft_root="$(cd "$SCRIPT_DIR/../.." && pwd)"
483
+ local src_lib="$craft_root/Tools/AgentTeams/lib"
484
+ local dest_lib="$target_dir/Tools/AgentTeams/lib"
485
+
486
+ if [[ ! -d "$src_lib" ]]; then
487
+ log_warning "AgentTeams lib not found at $src_lib (skipping)"
488
+ return 0
489
+ fi
490
+
491
+ log_info "${MSG_INSTALLING_AGENTTEAMS:-Installing AgentTeams helper scripts...}"
492
+ copy_directory "$src_lib" "$dest_lib" "*.sh"
493
+
494
+ # Some helper scripts ship without the executable bit; ensure +x on copies.
495
+ if ! $dry_run && [[ -d "$dest_lib" ]]; then
496
+ chmod +x "$dest_lib"/*.sh 2>/dev/null || true
497
+ fi
498
+ }
499
+
476
500
  install_templates() {
477
501
  log_info "${MSG_INSTALLING_TEMPLATES}"
478
502
 
@@ -830,6 +854,7 @@ main() {
830
854
 
831
855
  if $commands_only; then
832
856
  install_commands
857
+ install_agentteams
833
858
  fi
834
859
 
835
860
  if $templates_only; then
@@ -226,7 +226,7 @@ validate_config() {
226
226
  if [[ "$lang_valid" == "false" ]]; then
227
227
  log_error "Langue par défaut invalide: $default_lang"
228
228
  log_error "Langues valides: ${VALID_LANGS[*]}"
229
- ((errors++))
229
+ errors=$((errors + 1))
230
230
  else
231
231
  log_success "Langue par défaut: $default_lang"
232
232
  fi
@@ -246,12 +246,12 @@ validate_config() {
246
246
  # Vérifier les champs obligatoires
247
247
  if [[ "$name" == "null" || -z "$name" ]]; then
248
248
  log_error " Champ 'name' manquant pour le projet $((i+1))"
249
- ((errors++))
249
+ errors=$((errors + 1))
250
250
  fi
251
251
 
252
252
  if [[ "$root" == "null" || -z "$root" ]]; then
253
253
  log_error " Champ 'root' manquant pour le projet: $name"
254
- ((errors++))
254
+ errors=$((errors + 1))
255
255
  else
256
256
  # Expand le chemin (direct assignment, no subshell — SEC-1)
257
257
  local expanded_root="${root/#\~/$HOME}"
@@ -260,7 +260,7 @@ validate_config() {
260
260
 
261
261
  if [[ "$module_count" -eq 0 ]]; then
262
262
  log_error " Aucun module défini pour le projet: $name"
263
- ((errors++))
263
+ errors=$((errors + 1))
264
264
  else
265
265
  log_step " Modules: $module_count"
266
266
  fi
@@ -277,7 +277,7 @@ validate_config() {
277
277
  if [[ "$project_lang_valid" == "false" ]]; then
278
278
  log_error " Langue invalide pour le projet: $project_lang"
279
279
  log_error " Langues valides: ${VALID_LANGS[*]}"
280
- ((errors++))
280
+ errors=$((errors + 1))
281
281
  else
282
282
  log_step " Langue: $project_lang"
283
283
  fi
@@ -292,13 +292,13 @@ validate_config() {
292
292
 
293
293
  if [[ "$path" == "null" || -z "$path" ]]; then
294
294
  log_error " Module $((j+1)): champ 'path' manquant"
295
- ((errors++))
295
+ errors=$((errors + 1))
296
296
  continue
297
297
  fi
298
298
 
299
299
  if [[ "$techs" == "null" || -z "$techs" ]]; then
300
300
  log_error " Module '$path': champ 'tech' manquant"
301
- ((errors++))
301
+ errors=$((errors + 1))
302
302
  continue
303
303
  fi
304
304
 
@@ -320,7 +320,7 @@ validate_config() {
320
320
  if [[ "$valid" == "false" ]]; then
321
321
  log_error " Module '$path': technologie '$tech' invalide"
322
322
  log_error " Technologies valides: ${VALID_TECHS[*]}"
323
- ((errors++))
323
+ errors=$((errors + 1))
324
324
  module_valid=false
325
325
  else
326
326
  if [[ -z "$tech_list" ]]; then
@@ -615,7 +615,7 @@ install_project() {
615
615
  if [[ "$common" == "true" ]]; then
616
616
  print_section "[$step/$total_steps] Installation des règles communes"
617
617
  install_module "$expanded_root" "common" "" "$project_lang"
618
- ((step++))
618
+ step=$((step + 1))
619
619
  fi
620
620
 
621
621
  # Installer chaque module
@@ -664,7 +664,7 @@ install_project() {
664
664
 
665
665
  install_module "$target_path" "$tech" "$desc" "$project_lang" "$skip_common_flag"
666
666
  is_first=false
667
- ((step++))
667
+ step=$((step + 1))
668
668
  done <<< "$techs"
669
669
  done
670
670
  }
package/README.md CHANGED
@@ -28,7 +28,12 @@ Plus **11 stack-specific reviewers** (@symfony-reviewer, @react-reviewer, @pytho
28
28
 
29
29
  A comprehensive framework for AI-assisted development with [Claude Code](https://claude.ai/code). Install standardized rules, agents, and commands for your projects across multiple technology stacks — **31 specialized agents (+39 infra agents on-demand), 125 commands across 15 namespaces, 48 skills**, all token-optimized via `context: fork` and sub-agent model routing.
30
30
 
31
- ## What's New in v8.12.0
31
+ ## What's New in v8.13.0
32
+
33
+ **Fiabilité BMAD + distribution AgentTeams (v8.13.0) :**
34
+
35
+ - **`/gate:*` réparé** : `((var++))` sous `set -e` avortait les scripts de gate/hook après le 1er check (post-incrément = exit 1 quand le compteur vaut 0). 68 occurrences corrigées sur 6 fichiers + tests de non-régression (`make test-bmad`).
36
+ - **Scripts AgentTeams livrés** : `Tools/AgentTeams/lib/*.sh` désormais installés automatiquement avec les commandes `/team:*` (fini le warning « scripts MISSING » ; dashboard coût et `--ralph-mode` disponibles out-of-the-box). Install/refresh manuel : `make install-agentteams TARGET=.`.
32
37
 
33
38
  **Audit exhaustif + durcissement (v8.12.0) :**
34
39
 
@@ -0,0 +1,94 @@
1
+ #!/bin/bash
2
+ # =============================================================================
3
+ # install-agentteams.sh — Install AgentTeams helper scripts into a project
4
+ #
5
+ # The /team:* commands (sprint, audit, delivery, security) expect helper
6
+ # scripts at <project>/Tools/AgentTeams/lib/:
7
+ # - cost-estimator.sh (token/cost estimation)
8
+ # - cost-dashboard.sh (cost dashboard)
9
+ # - ralph-teams-adapter.sh (--ralph-mode integration)
10
+ # - compatibility-check.sh (Claude Code tool/agent compatibility)
11
+ # - result-aggregator.sh (aggregate parallel agent results)
12
+ #
13
+ # When they are absent the commands degrade gracefully (manual estimation, no
14
+ # --ralph-mode). This script copies them into the target project so the
15
+ # commands work out of the box.
16
+ #
17
+ # Usage:
18
+ # bash install-agentteams.sh [TARGET_DIR] # default TARGET_DIR: .
19
+ # bash install-agentteams.sh --check [TARGET_DIR]
20
+ # bash install-agentteams.sh --uninstall [TARGET_DIR]
21
+ # =============================================================================
22
+
23
+ set -euo pipefail
24
+
25
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
26
+ SRC_LIB="$SCRIPT_DIR/lib"
27
+
28
+ # Minimal UI (no hard dependency on shared helpers).
29
+ print_success() { echo "✓ $1"; }
30
+ print_error() { echo "✗ $1" >&2; }
31
+ print_info() { echo "ℹ $1"; }
32
+ print_warning() { echo "⚠ $1"; }
33
+
34
+ mode="install"
35
+ target="."
36
+
37
+ for arg in "$@"; do
38
+ case "$arg" in
39
+ --check) mode="check" ;;
40
+ --uninstall) mode="uninstall" ;;
41
+ -h|--help)
42
+ sed -n '2,22p' "${BASH_SOURCE[0]}" | sed 's/^# \{0,1\}//'
43
+ exit 0
44
+ ;;
45
+ -*)
46
+ print_error "Unknown option: $arg"
47
+ exit 1
48
+ ;;
49
+ *) target="$arg" ;;
50
+ esac
51
+ done
52
+
53
+ target="$(cd "$target" 2>/dev/null && pwd)" || {
54
+ print_error "Target directory not found: $target"
55
+ exit 1
56
+ }
57
+ dest_lib="$target/Tools/AgentTeams/lib"
58
+
59
+ if [[ ! -d "$SRC_LIB" ]]; then
60
+ print_error "Source lib not found: $SRC_LIB"
61
+ exit 1
62
+ fi
63
+
64
+ case "$mode" in
65
+ check)
66
+ missing=0
67
+ for f in "$SRC_LIB"/*.sh; do
68
+ name="$(basename "$f")"
69
+ if [[ -f "$dest_lib/$name" ]]; then
70
+ print_success "$name present"
71
+ else
72
+ print_warning "$name MISSING at $dest_lib"
73
+ missing=$((missing + 1))
74
+ fi
75
+ done
76
+ [[ $missing -eq 0 ]] && print_success "AgentTeams installed at $dest_lib" || exit 1
77
+ ;;
78
+ uninstall)
79
+ if [[ -d "$dest_lib" ]]; then
80
+ rm -f "$dest_lib"/*.sh
81
+ rmdir "$dest_lib" 2>/dev/null || true
82
+ print_success "Removed AgentTeams scripts from $dest_lib"
83
+ else
84
+ print_info "Nothing to remove at $dest_lib"
85
+ fi
86
+ ;;
87
+ install)
88
+ mkdir -p "$dest_lib"
89
+ cp "$SRC_LIB"/*.sh "$dest_lib/"
90
+ chmod +x "$dest_lib"/*.sh 2>/dev/null || true
91
+ count=$(find "$dest_lib" -maxdepth 1 -name '*.sh' | wc -l | tr -d ' ')
92
+ print_success "Installed $count AgentTeams helper scripts to $dest_lib"
93
+ ;;
94
+ esac
@@ -8,7 +8,7 @@
8
8
 
9
9
  # Claude-Craft - Multi-Technology Framework
10
10
 
11
- **Version:** 8.12.0 | **Languages:** en, fr, es, de, pt
11
+ **Version:** 8.13.0 | **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), 125 commands across 15 namespaces, and BMAD v6 project management.
14
14
 
@@ -8,7 +8,7 @@
8
8
 
9
9
  # Claude-Craft - Multi-Technology Framework
10
10
 
11
- **Version:** 8.12.0 | **Languages:** en, fr, es, de, pt
11
+ **Version:** 8.13.0 | **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), 125 commands across 15 namespaces, and BMAD v6 project management.
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-bearded-bear/claude-craft",
3
- "version": "8.12.0",
3
+ "version": "8.13.0",
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",
@@ -34,7 +34,8 @@
34
34
  "metrics:adoption": "node scripts/track-adoption-metrics.mjs",
35
35
  "mutation": "stryker run",
36
36
  "mutation:ci": "stryker run --reporters progress,json",
37
- "test:e2e:tools": "cd tests/e2e/tools && docker compose -f docker-compose.test.yml up --abort-on-container-exit --exit-code-from e2e-runner"
37
+ "test:e2e:tools": "cd tests/e2e/tools && docker compose -f docker-compose.test.yml up --abort-on-container-exit --exit-code-from e2e-runner",
38
+ "community:awesome": "node scripts/awesome-claude-code-submit.mjs"
38
39
  },
39
40
  "keywords": [
40
41
  "claude",