gaia-framework 1.62.0 → 1.64.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.
package/CLAUDE.md CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- # GAIA Framework v1.62.0
2
+ # GAIA Framework v1.64.0
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.62.0"
463
+ framework_version: "1.64.0"
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.62.0"
6
+ framework_version: "1.64.0"
7
7
 
8
8
  # User settings
9
9
  user_name: "jlouage"
@@ -7,7 +7,7 @@ modules:
7
7
  path: "_gaia/core"
8
8
  type: built-in
9
9
  - name: lifecycle
10
- version: "1.39.0"
10
+ version: "1.37.0"
11
11
  path: "_gaia/lifecycle"
12
12
  type: built-in
13
13
  - name: dev
@@ -2,7 +2,7 @@
2
2
  inherits: "{project-root}/_gaia/_config/global.yaml"
3
3
 
4
4
  module_name: "lifecycle"
5
- module_version: "1.39.0"
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"
@@ -82,7 +82,7 @@
82
82
  /gaia-review-api (optional, if APIs) → /gaia-adversarial → /gaia-test-design → /gaia-test-framework (optional) → /gaia-create-epics → /gaia-threat-model → /gaia-infra-design → /gaia-trace → /gaia-ci-setup → /gaia-readiness-check</action>
83
83
  </step>
84
84
 
85
- <step n="7" title="Bootstrap Agent Ground Truth" optional="true">
85
+ <step n="7" title="Bootstrap Val Ground Truth" optional="true">
86
86
  <action>Check if Val is installed: verify {project-root}/_gaia/lifecycle/agents/validator.md exists AND {memory_path}/validator-sidecar/ directory exists</action>
87
87
  <check if="validator.md not found OR validator-sidecar/ not found">Skip Step 7 silently — Val is not installed. Brownfield onboarding continues without ground truth bootstrap.</check>
88
88
 
@@ -102,74 +102,6 @@
102
102
 
103
103
  <action>Write extracted project facts to {memory_path}/validator-sidecar/ground-truth.md. If ground-truth.md already exists with content: merge new facts with existing entries — add new facts, update changed facts, flag removed facts — never destructive overwrite. Follow merge semantics from ground-truth-management conflict-resolution section. If ground-truth.md is empty or new: write all extracted facts as initial seed entries with verification count = 1.</action>
104
104
  <action>Report: "Seeded {N} ground-truth entries from brownfield artifacts + filesystem scan"</action>
105
-
106
- <!-- Step 7d/7e/7f: Tier 1 Agent Ground Truth Bootstrap (E9-S12) -->
107
-
108
- <ask>Bootstrap Tier 1 agent ground truth (Theo, Derek, Nate)? [y/n]</ask>
109
-
110
- <action>JIT load ground-truth-management skill sections from {project-root}/_gaia/lifecycle/skills/ground-truth-management.md: entry-structure, conflict-resolution, brownfield-extraction. All ground-truth entries must follow the canonical entry format from the entry-structure section. When the same fact appears in multiple source documents with conflicting values (e.g., different version numbers), annotate the entry with "conflicting sources: {source1} says X, {source2} says Y" and use the higher-precedence source (brownfield-assessment.md > project-documentation.md for tech stack facts).</action>
111
-
112
- <!-- Step 7d: Theo (Architect) ground truth extraction (AC1) -->
113
- <action>Step 7d — Theo ground truth extraction.
114
- Read {planning_artifacts}/architecture.md and extract:
115
- — Tech stack (languages, frameworks, runtime versions) → variable-inventory entries
116
- — ADRs (architecture decision records — ID, title, status, rationale) → structural-pattern entries
117
- — Component inventory (modules, packages, services) → file-inventory entries
118
- — Dependency map (internal and external dependencies) → cross-reference entries
119
-
120
- If {planning_artifacts}/architecture.md does not exist: fall back to {planning_artifacts}/brownfield-assessment.md for Theo. Extract tech stack, file counts, and project structure from the brownfield assessment instead.
121
-
122
- Token budget guard: Theo has a 150K token budget (150,000 tokens). Estimate extraction size (characters / 4). If estimated tokens exceed 60% threshold (90,000 tokens), trim to highest-signal entries — prioritize ADRs and tech stack over detailed file inventories.
123
-
124
- Write extracted entries to {memory_path}/architect-sidecar/ground-truth.md.
125
- If the {memory_path}/architect-sidecar/ directory does not exist, create it along with a new ground-truth.md file with standard headers.
126
- If ground-truth.md already exists with content: follow merge semantics from the conflict-resolution section — add new entries, update changed entries, preserve existing entries. Never perform a destructive overwrite.</action>
127
-
128
- <!-- Step 7e: Derek (Product Manager) ground truth extraction (AC2) -->
129
- <action>Step 7e — Derek ground truth extraction.
130
- Read {planning_artifacts}/prd.md and extract:
131
- — Functional requirements (feature list, requirement IDs) → structural-pattern entries
132
- — User stories and acceptance criteria summaries → cross-reference entries
133
-
134
- If {planning_artifacts}/prd.md does not exist: fall back to {planning_artifacts}/prd-brownfield-gaps.md as the alternate PRD path for Derek.
135
-
136
- Read {planning_artifacts}/epics-and-stories.md and extract for Derek:
137
- — Epic overview (epic IDs, titles, story counts) → file-inventory entries
138
- — Story-to-epic mappings → cross-reference entries
139
-
140
- Read {test_artifacts}/nfr-assessment.md (if present) and extract for Derek:
141
- — Quality baselines (performance targets, security posture, test coverage) → variable-inventory entries
142
- If {test_artifacts}/nfr-assessment.md does not exist: log warning "nfr-assessment.md not found in test_artifacts — skipping quality baselines for Derek" and continue without error.
143
-
144
- Token budget guard: Derek has a 100K token budget (100,000 tokens). Estimate extraction size (characters / 4). If estimated tokens exceed 60% threshold (60,000 tokens), trim to highest-signal entries — prioritize functional requirements and epic summaries over detailed story mappings.
145
-
146
- Write extracted entries to {memory_path}/pm-sidecar/ground-truth.md.
147
- If the {memory_path}/pm-sidecar/ directory does not exist, create it along with a new ground-truth.md file with standard headers.
148
- If ground-truth.md already exists with content: follow merge semantics from the conflict-resolution section — add new entries, update changed entries, preserve existing entries. Never perform a destructive overwrite.</action>
149
-
150
- <!-- Step 7f: Nate (Scrum Master) ground truth extraction (AC3) -->
151
- <action>Step 7f — Nate ground truth extraction.
152
- Read {implementation_artifacts}/sprint-status.yaml (if it exists) and extract for Nate:
153
- — Current sprint ID, story count, points total → variable-inventory entries
154
- — Story status distribution → structural-pattern entries
155
-
156
- Read {memory_path}/sm-sidecar/velocity-data.md (if it exists) and extract for Nate:
157
- — Velocity history (sprint-over-sprint) → variable-inventory entries
158
- — Capacity data → variable-inventory entries
159
-
160
- If neither {implementation_artifacts}/sprint-status.yaml nor {memory_path}/sm-sidecar/velocity-data.md exists: complete this step gracefully with a log message "insufficient sprint data, velocity unavailable" and write ground-truth.md omitting velocity entries. Do not raise an error.
161
-
162
- Token budget guard: Nate has a 100K token budget (100,000 tokens). Estimate extraction size (characters / 4). If estimated tokens exceed 60% threshold (60,000 tokens), trim to highest-signal entries — prioritize current sprint status over historical velocity data.
163
-
164
- Write extracted entries to {memory_path}/sm-sidecar/ground-truth.md.
165
- If the {memory_path}/sm-sidecar/ directory does not exist, create it along with a new ground-truth.md file with standard headers.
166
- If ground-truth.md already exists with content: follow merge semantics from the conflict-resolution section — add new entries, update changed entries, preserve existing entries. Never perform a destructive overwrite.</action>
167
-
168
- <!-- Summary report (AC6) -->
169
- <action>After all Tier 1 extractions complete, output a summary report:
170
- "Seeded {N} entries for Theo, {M} entries for Derek, {K} entries for Nate"
171
- If sprint data was absent for Nate, append a note: "(sprint data absent — velocity entries omitted)"
172
- Include token budget status for each agent (GREEN/YELLOW/RED).</action>
173
105
  </step>
174
106
 
175
107
  <next-step command="/gaia-review-api">
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.62.0"
9
+ readonly VERSION="1.64.0"
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.62.0",
3
+ "version": "1.64.0",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"