gaia-framework 1.4.0 → 1.4.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/README.md +16 -4
- package/gaia-install.sh +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -602,7 +602,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
|
|
|
602
602
|
|
|
603
603
|
```yaml
|
|
604
604
|
framework_name: "GAIA"
|
|
605
|
-
framework_version: "1.4.
|
|
605
|
+
framework_version: "1.4.2"
|
|
606
606
|
|
|
607
607
|
user_name: "your-name"
|
|
608
608
|
project_name: "your-project"
|
|
@@ -696,16 +696,28 @@ Pre-built team compositions for different project types:
|
|
|
696
696
|
9. Architecture with as-is/target diagrams
|
|
697
697
|
10. Epics/stories for gaps + developer knowledge base
|
|
698
698
|
|
|
699
|
-
#
|
|
699
|
+
# Phase 3: Readiness
|
|
700
|
+
/gaia-test-design → create test plan (optional: scaffold test framework)
|
|
700
701
|
/gaia-trace → generate traceability matrix
|
|
701
702
|
/gaia-ci-setup → scaffold CI pipeline
|
|
702
703
|
/gaia-readiness-check → verify everything is ready (optional: adversarial review)
|
|
703
|
-
|
|
704
|
+
|
|
705
|
+
# Phase 4: Implementation (repeat per sprint)
|
|
706
|
+
/gaia-sprint-plan → plan the sprint
|
|
707
|
+
/gaia-create-story → create detailed stories
|
|
708
|
+
/gaia-validate-story → validate story completeness
|
|
709
|
+
/gaia-fix-story → fix issues from validation
|
|
710
|
+
/gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
|
|
704
711
|
/gaia-dev-story → implement gap stories
|
|
705
712
|
/gaia-code-review → review the code
|
|
706
713
|
/gaia-qa-tests → generate tests
|
|
707
714
|
/gaia-security-review → security audit
|
|
708
|
-
/gaia-
|
|
715
|
+
/gaia-triage-findings → triage dev findings into backlog
|
|
716
|
+
/gaia-retro → sprint retrospective
|
|
717
|
+
|
|
718
|
+
# Phase 5: Deployment
|
|
719
|
+
/gaia-release-plan → plan the release
|
|
720
|
+
/gaia-deploy-checklist → pre-deploy verification (enforced gates)
|
|
709
721
|
/gaia-post-deploy → post-deploy health check
|
|
710
722
|
```
|
|
711
723
|
|
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.4.
|
|
9
|
+
readonly VERSION="1.4.2"
|
|
10
10
|
readonly GITHUB_REPO="https://github.com/J-louage/Gaia-framework.git"
|
|
11
11
|
readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
|
|
12
12
|
|
|
@@ -457,7 +457,7 @@ cmd_update() {
|
|
|
457
457
|
done
|
|
458
458
|
fi
|
|
459
459
|
|
|
460
|
-
# Update version in global.yaml
|
|
460
|
+
# Update version in global.yaml and CLAUDE.md
|
|
461
461
|
if [[ -n "$src_version" && "$src_version" != "$cur_version" ]]; then
|
|
462
462
|
step "Updating framework version: $cur_version → $src_version"
|
|
463
463
|
if [[ "$OPT_DRY_RUN" != true ]]; then
|
|
@@ -467,6 +467,16 @@ cmd_update() {
|
|
|
467
467
|
else
|
|
468
468
|
sed -i "s/^framework_version:.*/framework_version: \"$src_version\"/" "$global_file"
|
|
469
469
|
fi
|
|
470
|
+
# Update version in CLAUDE.md heading
|
|
471
|
+
local claude_file="$TARGET/CLAUDE.md"
|
|
472
|
+
if [[ -f "$claude_file" ]]; then
|
|
473
|
+
if [[ "$(uname)" == "Darwin" ]]; then
|
|
474
|
+
sed -i '' "s/^# GAIA Framework v.*/# GAIA Framework v$src_version/" "$claude_file"
|
|
475
|
+
else
|
|
476
|
+
sed -i "s/^# GAIA Framework v.*/# GAIA Framework v$src_version/" "$claude_file"
|
|
477
|
+
fi
|
|
478
|
+
[[ "$OPT_VERBOSE" == true ]] && detail "Updated CLAUDE.md version heading" || true
|
|
479
|
+
fi
|
|
470
480
|
fi
|
|
471
481
|
fi
|
|
472
482
|
|