gaia-framework 1.5.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 +36 -17
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -460,7 +460,20 @@ 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,
|
|
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 6 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
|
+
| `/gaia-review-perf` | Performance Review | PASSED / FAILED | N+1 queries, memory, bundle size, caching, complexity. Auto-passes if no performance-relevant code changes |
|
|
475
|
+
|
|
476
|
+
**Optional prompts** (offered at natural lifecycle points — user can accept or skip):
|
|
464
477
|
|
|
465
478
|
| Review Command | Trigger Point | When Prompted | Recommended For |
|
|
466
479
|
|---|---|---|---|
|
|
@@ -468,9 +481,9 @@ In addition to the adversarial review, 5 other review tasks are integrated as op
|
|
|
468
481
|
| `/gaia-review-a11y` | After `/gaia-create-ux` | End of UX design (step 8) | User-facing applications |
|
|
469
482
|
| `/gaia-edge-cases` | After `/gaia-create-epics` | End of epic/story creation (step 8) | Before sprint planning |
|
|
470
483
|
| `/gaia-review-deps` | During `/gaia-brownfield` | After dependency map (step 5) | Brownfield projects |
|
|
471
|
-
| `/gaia-review-perf` |
|
|
472
|
-
|
|
473
|
-
`/gaia-
|
|
484
|
+
| `/gaia-review-perf` | Review Gate member | Required (auto-passes if no perf-relevant changes) | See Review Gate members table above |
|
|
485
|
+
| `/gaia-a11y-testing` | During `/gaia-deploy-checklist` | After loading context (step 2) | Frontend/user-facing applications |
|
|
486
|
+
| `/gaia-mobile-testing` | During `/gaia-sprint-plan` | After story selection (step 4) | Mobile/responsive applications |
|
|
474
487
|
|
|
475
488
|
All reviews can also be run independently anytime on any artifact or codebase.
|
|
476
489
|
|
|
@@ -618,7 +631,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
|
|
|
618
631
|
|
|
619
632
|
```yaml
|
|
620
633
|
framework_name: "GAIA"
|
|
621
|
-
framework_version: "1.
|
|
634
|
+
framework_version: "1.7.0"
|
|
622
635
|
|
|
623
636
|
user_name: "your-name"
|
|
624
637
|
project_name: "your-project"
|
|
@@ -678,21 +691,24 @@ Pre-built team compositions for different project types:
|
|
|
678
691
|
/gaia-readiness-check → verify everything is ready (optional: adversarial review)
|
|
679
692
|
|
|
680
693
|
# Phase 4: Implementation (repeat per sprint)
|
|
681
|
-
/gaia-sprint-plan → plan the sprint
|
|
694
|
+
/gaia-sprint-plan → plan the sprint (optional: mobile testing)
|
|
682
695
|
/gaia-create-story → create detailed stories
|
|
683
696
|
/gaia-validate-story → validate story completeness
|
|
684
697
|
/gaia-fix-story → fix issues from validation
|
|
685
698
|
/gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
|
|
686
|
-
/gaia-dev-story → implement stories
|
|
687
|
-
/gaia-code-review → review the code
|
|
688
|
-
/gaia-qa-tests → generate tests
|
|
689
|
-
/gaia-security-review → security audit
|
|
699
|
+
/gaia-dev-story → implement stories
|
|
700
|
+
/gaia-code-review → review the code ─┐
|
|
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)
|
|
690
706
|
/gaia-triage-findings → triage dev findings into backlog
|
|
691
707
|
/gaia-retro → sprint retrospective
|
|
692
708
|
|
|
693
709
|
# Phase 5: Deployment
|
|
694
710
|
/gaia-release-plan → plan the release
|
|
695
|
-
/gaia-deploy-checklist → pre-deploy verification (
|
|
711
|
+
/gaia-deploy-checklist → pre-deploy verification (optional: a11y testing)
|
|
696
712
|
/gaia-post-deploy → post-deploy health check
|
|
697
713
|
```
|
|
698
714
|
|
|
@@ -719,21 +735,24 @@ Pre-built team compositions for different project types:
|
|
|
719
735
|
/gaia-readiness-check → verify everything is ready (optional: adversarial review)
|
|
720
736
|
|
|
721
737
|
# Phase 4: Implementation (repeat per sprint)
|
|
722
|
-
/gaia-sprint-plan → plan the sprint
|
|
738
|
+
/gaia-sprint-plan → plan the sprint (optional: mobile testing)
|
|
723
739
|
/gaia-create-story → create detailed stories
|
|
724
740
|
/gaia-validate-story → validate story completeness
|
|
725
741
|
/gaia-fix-story → fix issues from validation
|
|
726
742
|
/gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
|
|
727
|
-
/gaia-dev-story → implement gap stories
|
|
728
|
-
/gaia-code-review → review the code
|
|
729
|
-
/gaia-qa-tests → generate tests
|
|
730
|
-
/gaia-security-review → security audit
|
|
743
|
+
/gaia-dev-story → implement gap stories
|
|
744
|
+
/gaia-code-review → review the code ─┐
|
|
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)
|
|
731
750
|
/gaia-triage-findings → triage dev findings into backlog
|
|
732
751
|
/gaia-retro → sprint retrospective
|
|
733
752
|
|
|
734
753
|
# Phase 5: Deployment
|
|
735
754
|
/gaia-release-plan → plan the release
|
|
736
|
-
/gaia-deploy-checklist → pre-deploy verification (
|
|
755
|
+
/gaia-deploy-checklist → pre-deploy verification (optional: a11y testing)
|
|
737
756
|
/gaia-post-deploy → post-deploy health check
|
|
738
757
|
```
|
|
739
758
|
|
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.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
|
|