gaia-framework 1.36.4 → 1.36.6
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/README.md +2 -3
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GAIA — Generative Agile Intelligence Architecture
|
|
2
2
|
|
|
3
|
-
[]()
|
|
4
4
|
[]()
|
|
5
5
|
[]()
|
|
6
6
|
[]()
|
|
@@ -344,7 +344,6 @@ Testing workflows are **integrated into the main lifecycle** — they are not op
|
|
|
344
344
|
| `/gaia-memory-hygiene` | Memory Hygiene | Sonnet | Detect stale decisions in agent memory |
|
|
345
345
|
| `/gaia-val-validate` | Validate Artifact | Opus | Validate artifact against codebase and ground truth |
|
|
346
346
|
| `/gaia-val-validate-plan` | Validate Plan | Opus | Validate implementation plan before execution |
|
|
347
|
-
| `/gaia-val-save` | Save Val Session | Sonnet | Persist Val session decisions and findings |
|
|
348
347
|
| `/gaia-refresh-ground-truth` | Refresh Ground Truth | Sonnet | Rescan filesystem and update ground truth |
|
|
349
348
|
|
|
350
349
|
### Review & Utility Tasks
|
|
@@ -459,7 +458,7 @@ The single source of truth is `_gaia/_config/global.yaml`:
|
|
|
459
458
|
|
|
460
459
|
```yaml
|
|
461
460
|
framework_name: "GAIA"
|
|
462
|
-
framework_version: "1.36.
|
|
461
|
+
framework_version: "1.36.6"
|
|
463
462
|
user_name: "your-name"
|
|
464
463
|
project_name: "your-project"
|
|
465
464
|
```
|
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.36.
|
|
9
|
+
readonly VERSION="1.36.6"
|
|
10
10
|
readonly GITHUB_REPO="https://github.com/jlouage/Gaia-framework.git"
|
|
11
11
|
readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
|
|
12
12
|
|