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 +1 -1
- package/README.md +1 -1
- package/_gaia/_config/global.yaml +1 -1
- package/_gaia/_config/manifest.yaml +3 -3
- package/_gaia/core/config.yaml +1 -1
- package/_gaia/core/engine/workflow.xml +1 -4
- package/_gaia/core/workflows/brainstorming/template.md +0 -6
- package/_gaia/lifecycle/config.yaml +1 -1
- package/_gaia/lifecycle/workflows/1-analysis/create-product-brief/workflow.yaml +0 -1
- package/_gaia/lifecycle/workflows/4-implementation/code-review/workflow.yaml +0 -1
- package/_gaia/lifecycle/workflows/4-implementation/sprint-planning/workflow.yaml +0 -1
- package/_gaia/lifecycle/workflows/5-deployment/deployment-checklist/workflow.yaml +0 -1
- package/_gaia/testing/config.yaml +1 -1
- package/_gaia/testing/workflows/test-design/workflow.yaml +0 -1
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
# GAIA Framework v1.58.
|
|
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
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
modules:
|
|
5
5
|
- name: core
|
|
6
|
-
version: "1.12.
|
|
6
|
+
version: "1.12.0"
|
|
7
7
|
path: "_gaia/core"
|
|
8
8
|
type: built-in
|
|
9
9
|
- name: lifecycle
|
|
10
|
-
version: "1.37.
|
|
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.
|
|
22
|
+
version: "1.8.0"
|
|
23
23
|
path: "_gaia/testing"
|
|
24
24
|
type: built-in
|
package/_gaia/core/config.yaml
CHANGED
|
@@ -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
|
|
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.
|
|
@@ -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.
|
|
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"
|
|
@@ -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.
|
|
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
|
|