gaia-framework 1.4.2 → 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
@@ -458,6 +458,34 @@ The adversarial review is a cynical, critical examination designed to find flaws
458
458
 
459
459
  At each point you can accept or skip. It can also be run independently anytime with `/gaia-adversarial` on any artifact.
460
460
 
461
+ ### Lifecycle-Integrated Reviews
462
+
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):
476
+
477
+ | Review Command | Trigger Point | When Prompted | Recommended For |
478
+ |---|---|---|---|
479
+ | `/gaia-review-api` | After `/gaia-create-arch` | End of architecture design (step 9) | Projects with REST APIs |
480
+ | `/gaia-review-a11y` | After `/gaia-create-ux` | End of UX design (step 8) | User-facing applications |
481
+ | `/gaia-edge-cases` | After `/gaia-create-epics` | End of epic/story creation (step 8) | Before sprint planning |
482
+ | `/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-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 |
486
+
487
+ All reviews can also be run independently anytime on any artifact or codebase.
488
+
461
489
  ### Editorial & Documentation
462
490
 
463
491
  | Command | Task | Description |
@@ -602,7 +630,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
602
630
 
603
631
  ```yaml
604
632
  framework_name: "GAIA"
605
- framework_version: "1.4.2"
633
+ framework_version: "1.6.0"
606
634
 
607
635
  user_name: "your-name"
608
636
  project_name: "your-project"
@@ -651,32 +679,34 @@ Pre-built team compositions for different project types:
651
679
 
652
680
  # Phase 2: Planning
653
681
  /gaia-create-prd → write the PRD (optional: adversarial review)
654
- /gaia-create-ux → design the UX
682
+ /gaia-create-ux → design the UX (optional: accessibility review)
655
683
 
656
684
  # Phase 3: Solutioning
657
- /gaia-create-arch → design the architecture (optional: adversarial review)
685
+ /gaia-create-arch → design the architecture (optional: API review, adversarial review)
658
686
  /gaia-test-design → create test plan (optional: scaffold test framework)
659
- /gaia-create-epics → break into epics and stories (optional: adversarial review)
687
+ /gaia-create-epics → break into epics and stories (optional: edge cases, adversarial review)
660
688
  /gaia-trace → generate traceability matrix
661
689
  /gaia-ci-setup → scaffold CI pipeline
662
690
  /gaia-readiness-check → verify everything is ready (optional: adversarial review)
663
691
 
664
692
  # Phase 4: Implementation (repeat per sprint)
665
- /gaia-sprint-plan → plan the sprint
693
+ /gaia-sprint-plan → plan the sprint (optional: mobile testing)
666
694
  /gaia-create-story → create detailed stories
667
695
  /gaia-validate-story → validate story completeness
668
696
  /gaia-fix-story → fix issues from validation
669
697
  /gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
670
- /gaia-dev-story → implement stories
671
- /gaia-code-review → review the code
672
- /gaia-qa-tests → generate tests
673
- /gaia-security-review → security audit
698
+ /gaia-dev-story → implement stories (optional: performance review)
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)
674
704
  /gaia-triage-findings → triage dev findings into backlog
675
705
  /gaia-retro → sprint retrospective
676
706
 
677
707
  # Phase 5: Deployment
678
708
  /gaia-release-plan → plan the release
679
- /gaia-deploy-checklist → pre-deploy verification (enforced gates)
709
+ /gaia-deploy-checklist → pre-deploy verification (optional: a11y testing)
680
710
  /gaia-post-deploy → post-deploy health check
681
711
  ```
682
712
 
@@ -703,21 +733,23 @@ Pre-built team compositions for different project types:
703
733
  /gaia-readiness-check → verify everything is ready (optional: adversarial review)
704
734
 
705
735
  # Phase 4: Implementation (repeat per sprint)
706
- /gaia-sprint-plan → plan the sprint
736
+ /gaia-sprint-plan → plan the sprint (optional: mobile testing)
707
737
  /gaia-create-story → create detailed stories
708
738
  /gaia-validate-story → validate story completeness
709
739
  /gaia-fix-story → fix issues from validation
710
740
  /gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
711
- /gaia-dev-story → implement gap stories
712
- /gaia-code-review → review the code
713
- /gaia-qa-tests → generate tests
714
- /gaia-security-review → security audit
741
+ /gaia-dev-story → implement gap stories (optional: performance review)
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)
715
747
  /gaia-triage-findings → triage dev findings into backlog
716
748
  /gaia-retro → sprint retrospective
717
749
 
718
750
  # Phase 5: Deployment
719
751
  /gaia-release-plan → plan the release
720
- /gaia-deploy-checklist → pre-deploy verification (enforced gates)
752
+ /gaia-deploy-checklist → pre-deploy verification (optional: a11y testing)
721
753
  /gaia-post-deploy → post-deploy health check
722
754
  ```
723
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.4.2"
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.4.2",
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"