gaia-framework 1.58.1 → 1.58.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.
package/CLAUDE.md CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- # GAIA Framework v1.58.1
2
+ # GAIA Framework v1.58.2
3
3
 
4
4
  This project uses the **GAIA** (Generative Agile Intelligence Architecture) framework — an AI agent framework for Claude Code that orchestrates software product development through 26 specialized agents, 65 workflows, and 8 shared skills.
5
5
 
package/README.md CHANGED
@@ -460,7 +460,7 @@ The single source of truth is `_gaia/_config/global.yaml`:
460
460
 
461
461
  ```yaml
462
462
  framework_name: "GAIA"
463
- framework_version: "1.58.1"
463
+ framework_version: "1.58.2"
464
464
  user_name: "your-name"
465
465
  project_name: "your-project"
466
466
  ```
@@ -3,7 +3,7 @@
3
3
  # After modifying this file, run /gaia-build-configs to regenerate resolved configs.
4
4
 
5
5
  framework_name: "GAIA"
6
- framework_version: "1.58.1"
6
+ framework_version: "1.58.2"
7
7
 
8
8
  # User settings
9
9
  user_name: "jlouage"
@@ -3,11 +3,11 @@
3
3
 
4
4
  modules:
5
5
  - name: core
6
- version: "1.12.1"
6
+ version: "1.12.0"
7
7
  path: "_gaia/core"
8
8
  type: built-in
9
9
  - name: lifecycle
10
- version: "1.37.1"
10
+ version: "1.37.0"
11
11
  path: "_gaia/lifecycle"
12
12
  type: built-in
13
13
  - name: dev
@@ -19,6 +19,6 @@ modules:
19
19
  path: "_gaia/creative"
20
20
  type: built-in
21
21
  - name: testing
22
- version: "1.8.1"
22
+ version: "1.8.0"
23
23
  path: "_gaia/testing"
24
24
  type: built-in
@@ -2,7 +2,7 @@
2
2
  inherits: "{project-root}/_gaia/_config/global.yaml"
3
3
 
4
4
  module_name: "core"
5
- module_version: "1.12.1"
5
+ module_version: "1.12.0"
6
6
 
7
7
  engine_path: "{project-root}/_gaia/core/engine/workflow.xml"
8
8
  tasks_path: "{project-root}/_gaia/core/tasks"
@@ -171,10 +171,7 @@ execution modes (normal/yolo/planning), checkpoints, and quality gates.
171
171
  <execution-modes>
172
172
  <mode name="normal">
173
173
  Pause at every template-output for user confirmation.
174
- Prompt: "[c] Continue | [y] Switch to YOLO | [e] Edit output | [v] Review with Val"
175
- The [v] option is shown when Val integration is enabled (val_integration.template_output_review: true in global.yaml,
176
- validator.md exists, and validator-sidecar/ exists). When [v] is selected, the engine invokes val-validate-artifact
177
- as a subagent to validate the saved artifact. If Val is not enabled, only [c]/[y]/[e] are shown.
174
+ Prompt: "[c] Continue | [y] Switch to YOLO | [e] Edit output"
178
175
  Pause at every ask tag — present the question and WAIT for user response.
179
176
  NEVER infer or skip an ask, even if the answer appears available from context.
180
177
  Pause when a subagent returns — show results summary and wait for [c]ontinue.
@@ -1,9 +1,3 @@
1
- ---
2
- template: 'brainstorming'
3
- version: 1.0.0
4
- used_by: ['brainstorming']
5
- ---
6
-
7
1
  # Brainstorming Session: {topic}
8
2
 
9
3
  **Date:** {date}
@@ -2,7 +2,7 @@
2
2
  inherits: "{project-root}/_gaia/_config/global.yaml"
3
3
 
4
4
  module_name: "lifecycle"
5
- module_version: "1.37.1"
5
+ module_version: "1.37.0"
6
6
 
7
7
  planning_artifacts: "{project-root}/docs/planning-artifacts"
8
8
  implementation_artifacts: "{project-root}/docs/implementation-artifacts"
@@ -7,7 +7,6 @@ config_source: "{project-root}/_gaia/lifecycle/config.yaml"
7
7
  installed_path: "{project-root}/_gaia/lifecycle/workflows/1-analysis/create-product-brief"
8
8
  instructions: "{installed_path}/instructions.xml"
9
9
  validation: "{installed_path}/checklist.md"
10
- template: "{project-root}/_gaia/lifecycle/templates/product-brief-template.md"
11
10
  input_file_patterns:
12
11
  brainstorm:
13
12
  whole: "{planning_artifacts}/project-brainstorm.md"
@@ -7,7 +7,6 @@ config_source: "{project-root}/_gaia/lifecycle/config.yaml"
7
7
  installed_path: "{project-root}/_gaia/lifecycle/workflows/4-implementation/code-review"
8
8
  instructions: "{installed_path}/instructions.xml"
9
9
  validation: "{installed_path}/checklist.md"
10
- template: "{project-root}/_gaia/lifecycle/templates/review-template.md"
11
10
  input_file_patterns:
12
11
  architecture:
13
12
  whole: "{planning_artifacts}/architecture.md"
@@ -8,7 +8,6 @@ config_source: "{project-root}/_gaia/lifecycle/config.yaml"
8
8
  installed_path: "{project-root}/_gaia/lifecycle/workflows/4-implementation/sprint-planning"
9
9
  instructions: "{installed_path}/instructions.xml"
10
10
  validation: "{installed_path}/checklist.md"
11
- template: "{project-root}/_gaia/lifecycle/templates/sprint-plan-template.md"
12
11
  input_file_patterns:
13
12
  epics:
14
13
  whole: "{planning_artifacts}/epics-and-stories.md"
@@ -7,7 +7,6 @@ config_source: "{project-root}/_gaia/lifecycle/config.yaml"
7
7
  installed_path: "{project-root}/_gaia/lifecycle/workflows/5-deployment/deployment-checklist"
8
8
  instructions: "{installed_path}/instructions.xml"
9
9
  validation: "{installed_path}/checklist.md"
10
- template: "{project-root}/_gaia/lifecycle/templates/deployment-template.md"
11
10
  input_file_patterns:
12
11
  architecture:
13
12
  whole: "{planning_artifacts}/architecture.md"
@@ -2,7 +2,7 @@
2
2
  inherits: "{project-root}/_gaia/_config/global.yaml"
3
3
 
4
4
  module_name: "testing"
5
- module_version: "1.8.1"
5
+ module_version: "1.8.0"
6
6
 
7
7
  test_artifacts: "{project-root}/docs/test-artifacts"
8
8
  knowledge_path: "{project-root}/_gaia/testing/knowledge"
@@ -7,6 +7,5 @@ config_source: "{project-root}/_gaia/testing/config.yaml"
7
7
  installed_path: "{project-root}/_gaia/testing/workflows/test-design"
8
8
  instructions: "{installed_path}/instructions.xml"
9
9
  validation: "{installed_path}/checklist.md"
10
- template: "{project-root}/_gaia/lifecycle/templates/test-plan-template.md"
11
10
  output:
12
11
  primary: "{test_artifacts}/test-plan.md"
package/gaia-install.sh CHANGED
@@ -6,7 +6,7 @@ set -euo pipefail
6
6
  # Installs, updates, validates, and reports on GAIA installations.
7
7
  # ─────────────────────────────────────────────────────────────────────────────
8
8
 
9
- readonly VERSION="1.58.1"
9
+ readonly VERSION="1.58.2"
10
10
  readonly GITHUB_REPO="https://github.com/jlouage/Gaia-framework.git"
11
11
  readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gaia-framework",
3
- "version": "1.58.1",
3
+ "version": "1.58.2",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"