gaia-framework 1.5.0 → 1.6.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
@@ -460,7 +460,19 @@ At each point you can accept or skip. It can also be run independently anytime w
460
460
 
461
461
  ### Lifecycle-Integrated Reviews
462
462
 
463
- In addition to the adversarial review, 5 other review tasks are integrated as optional prompts at natural lifecycle points:
463
+ In addition to the adversarial review, several other tasks are integrated into the lifecycle at natural trigger points:
464
+
465
+ **Review Gate members** (required — story cannot move to `done` without all 5 passing):
466
+
467
+ | Review Command | Gate Row | Verdict | What It Checks |
468
+ |---|---|---|---|
469
+ | `/gaia-code-review` | Code Review | APPROVE / REQUEST_CHANGES | Correctness, security, performance, readability |
470
+ | `/gaia-qa-tests` | QA Tests | PASSED / FAILED | E2E and API test generation + execution |
471
+ | `/gaia-security-review` | Security Review | PASSED / FAILED | OWASP Top 10, secrets, auth patterns |
472
+ | `/gaia-test-automate` | Test Automation | PASSED / FAILED | Coverage gaps, uncovered code paths |
473
+ | `/gaia-test-review` | Test Review | PASSED / FAILED | Test quality, flakiness, isolation, determinism |
474
+
475
+ **Optional prompts** (offered at natural lifecycle points — user can accept or skip):
464
476
 
465
477
  | Review Command | Trigger Point | When Prompted | Recommended For |
466
478
  |---|---|---|---|
@@ -469,8 +481,8 @@ In addition to the adversarial review, 5 other review tasks are integrated as op
469
481
  | `/gaia-edge-cases` | After `/gaia-create-epics` | End of epic/story creation (step 8) | Before sprint planning |
470
482
  | `/gaia-review-deps` | During `/gaia-brownfield` | After dependency map (step 5) | Brownfield projects |
471
483
  | `/gaia-review-perf` | After `/gaia-dev-story` | After post-complete gate (step 11) | Hot paths, data-heavy stories |
472
-
473
- `/gaia-review-security` is already covered by the triple review gate (`/gaia-security-review`) in Phase 4 and does not need a separate lifecycle prompt.
484
+ | `/gaia-a11y-testing` | During `/gaia-deploy-checklist` | After loading context (step 2) | Frontend/user-facing applications |
485
+ | `/gaia-mobile-testing` | During `/gaia-sprint-plan` | After story selection (step 4) | Mobile/responsive applications |
474
486
 
475
487
  All reviews can also be run independently anytime on any artifact or codebase.
476
488
 
@@ -618,7 +630,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
618
630
 
619
631
  ```yaml
620
632
  framework_name: "GAIA"
621
- framework_version: "1.5.0"
633
+ framework_version: "1.6.0"
622
634
 
623
635
  user_name: "your-name"
624
636
  project_name: "your-project"
@@ -678,21 +690,23 @@ Pre-built team compositions for different project types:
678
690
  /gaia-readiness-check → verify everything is ready (optional: adversarial review)
679
691
 
680
692
  # Phase 4: Implementation (repeat per sprint)
681
- /gaia-sprint-plan → plan the sprint
693
+ /gaia-sprint-plan → plan the sprint (optional: mobile testing)
682
694
  /gaia-create-story → create detailed stories
683
695
  /gaia-validate-story → validate story completeness
684
696
  /gaia-fix-story → fix issues from validation
685
697
  /gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
686
698
  /gaia-dev-story → implement stories (optional: performance review)
687
- /gaia-code-review → review the code
688
- /gaia-qa-tests → generate tests
689
- /gaia-security-review → security audit
699
+ /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)
690
704
  /gaia-triage-findings → triage dev findings into backlog
691
705
  /gaia-retro → sprint retrospective
692
706
 
693
707
  # Phase 5: Deployment
694
708
  /gaia-release-plan → plan the release
695
- /gaia-deploy-checklist → pre-deploy verification (enforced gates)
709
+ /gaia-deploy-checklist → pre-deploy verification (optional: a11y testing)
696
710
  /gaia-post-deploy → post-deploy health check
697
711
  ```
698
712
 
@@ -719,21 +733,23 @@ Pre-built team compositions for different project types:
719
733
  /gaia-readiness-check → verify everything is ready (optional: adversarial review)
720
734
 
721
735
  # Phase 4: Implementation (repeat per sprint)
722
- /gaia-sprint-plan → plan the sprint
736
+ /gaia-sprint-plan → plan the sprint (optional: mobile testing)
723
737
  /gaia-create-story → create detailed stories
724
738
  /gaia-validate-story → validate story completeness
725
739
  /gaia-fix-story → fix issues from validation
726
740
  /gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
727
741
  /gaia-dev-story → implement gap stories (optional: performance review)
728
- /gaia-code-review → review the code
729
- /gaia-qa-tests → generate tests
730
- /gaia-security-review → security audit
742
+ /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)
731
747
  /gaia-triage-findings → triage dev findings into backlog
732
748
  /gaia-retro → sprint retrospective
733
749
 
734
750
  # Phase 5: Deployment
735
751
  /gaia-release-plan → plan the release
736
- /gaia-deploy-checklist → pre-deploy verification (enforced gates)
752
+ /gaia-deploy-checklist → pre-deploy verification (optional: a11y testing)
737
753
  /gaia-post-deploy → post-deploy health check
738
754
  ```
739
755
 
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.5.0"
9
+ readonly VERSION="1.6.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.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"