gaia-framework 1.15.0 → 1.17.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/README.md +2 -1
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -358,6 +358,7 @@ Available at any point in the lifecycle.
|
|
|
358
358
|
| `/gaia-brainstorming` | Brainstorming | Facilitated brainstorming session |
|
|
359
359
|
| `/gaia-party` | Party Mode | Multi-agent group discussion |
|
|
360
360
|
| `/gaia-advanced-elicitation` | Advanced Elicitation | Deep requirements elicitation |
|
|
361
|
+
| `/gaia-memory-hygiene` | Memory Hygiene | Detect stale or contradicted decisions in agent memory sidecars |
|
|
361
362
|
|
|
362
363
|
### Brownfield Onboarding (Deep Dive)
|
|
363
364
|
|
|
@@ -634,7 +635,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
|
|
|
634
635
|
|
|
635
636
|
```yaml
|
|
636
637
|
framework_name: "GAIA"
|
|
637
|
-
framework_version: "1.
|
|
638
|
+
framework_version: "1.17.0"
|
|
638
639
|
|
|
639
640
|
user_name: "your-name"
|
|
640
641
|
project_name: "your-project"
|
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.
|
|
9
|
+
readonly VERSION="1.17.0"
|
|
10
10
|
readonly GITHUB_REPO="https://github.com/J-louage/Gaia-framework.git"
|
|
11
11
|
readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
|
|
12
12
|
|