gaia-framework 1.6.0 → 1.7.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 CHANGED
@@ -462,7 +462,7 @@ At each point you can accept or skip. It can also be run independently anytime w
462
462
 
463
463
  In addition to the adversarial review, several other tasks are integrated into the lifecycle at natural trigger points:
464
464
 
465
- **Review Gate members** (required — story cannot move to `done` without all 5 passing):
465
+ **Review Gate members** (required — story cannot move to `done` without all 6 passing):
466
466
 
467
467
  | Review Command | Gate Row | Verdict | What It Checks |
468
468
  |---|---|---|---|
@@ -471,6 +471,7 @@ In addition to the adversarial review, several other tasks are integrated into t
471
471
  | `/gaia-security-review` | Security Review | PASSED / FAILED | OWASP Top 10, secrets, auth patterns |
472
472
  | `/gaia-test-automate` | Test Automation | PASSED / FAILED | Coverage gaps, uncovered code paths |
473
473
  | `/gaia-test-review` | Test Review | PASSED / FAILED | Test quality, flakiness, isolation, determinism |
474
+ | `/gaia-review-perf` | Performance Review | PASSED / FAILED | N+1 queries, memory, bundle size, caching, complexity. Auto-passes if no performance-relevant code changes |
474
475
 
475
476
  **Optional prompts** (offered at natural lifecycle points — user can accept or skip):
476
477
 
@@ -480,7 +481,7 @@ In addition to the adversarial review, several other tasks are integrated into t
480
481
  | `/gaia-review-a11y` | After `/gaia-create-ux` | End of UX design (step 8) | User-facing applications |
481
482
  | `/gaia-edge-cases` | After `/gaia-create-epics` | End of epic/story creation (step 8) | Before sprint planning |
482
483
  | `/gaia-review-deps` | During `/gaia-brownfield` | After dependency map (step 5) | Brownfield projects |
483
- | `/gaia-review-perf` | After `/gaia-dev-story` | After post-complete gate (step 11) | Hot paths, data-heavy stories |
484
+ | `/gaia-review-perf` | Review Gate member | Required (auto-passes if no perf-relevant changes) | See Review Gate members table above |
484
485
  | `/gaia-a11y-testing` | During `/gaia-deploy-checklist` | After loading context (step 2) | Frontend/user-facing applications |
485
486
  | `/gaia-mobile-testing` | During `/gaia-sprint-plan` | After story selection (step 4) | Mobile/responsive applications |
486
487
 
@@ -630,7 +631,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
630
631
 
631
632
  ```yaml
632
633
  framework_name: "GAIA"
633
- framework_version: "1.6.0"
634
+ framework_version: "1.7.0"
634
635
 
635
636
  user_name: "your-name"
636
637
  project_name: "your-project"
@@ -695,12 +696,13 @@ Pre-built team compositions for different project types:
695
696
  /gaia-validate-story → validate story completeness
696
697
  /gaia-fix-story → fix issues from validation
697
698
  /gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
698
- /gaia-dev-story → implement stories (optional: performance review)
699
+ /gaia-dev-story → implement stories
699
700
  /gaia-code-review → review the code ─┐
700
- /gaia-qa-tests → generate tests │ Review Gate
701
- /gaia-security-review → security audit │ (all 5 must
702
- /gaia-test-automate → expand test coverage │ PASS before
703
- /gaia-test-review → review test quality ─┘ story → done)
701
+ /gaia-qa-tests → generate tests │
702
+ /gaia-security-review → security audit │ Review Gate
703
+ /gaia-test-automate → expand test coverage │ (all 6 must
704
+ /gaia-test-review → review test quality PASS before
705
+ /gaia-review-perf → performance review ─┘ story → done)
704
706
  /gaia-triage-findings → triage dev findings into backlog
705
707
  /gaia-retro → sprint retrospective
706
708
 
@@ -738,12 +740,13 @@ Pre-built team compositions for different project types:
738
740
  /gaia-validate-story → validate story completeness
739
741
  /gaia-fix-story → fix issues from validation
740
742
  /gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
741
- /gaia-dev-story → implement gap stories (optional: performance review)
743
+ /gaia-dev-story → implement gap stories
742
744
  /gaia-code-review → review the code ─┐
743
- /gaia-qa-tests → generate tests │ Review Gate
744
- /gaia-security-review → security audit │ (all 5 must
745
- /gaia-test-automate → expand test coverage │ PASS before
746
- /gaia-test-review → review test quality ─┘ story → done)
745
+ /gaia-qa-tests → generate tests │
746
+ /gaia-security-review → security audit │ Review Gate
747
+ /gaia-test-automate → expand test coverage │ (all 6 must
748
+ /gaia-test-review → review test quality PASS before
749
+ /gaia-review-perf → performance review ─┘ story → done)
747
750
  /gaia-triage-findings → triage dev findings into backlog
748
751
  /gaia-retro → sprint retrospective
749
752
 
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.6.0"
9
+ readonly VERSION="1.7.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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gaia-framework",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"