gaia-framework 1.4.2 → 1.5.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 +22 -6
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -458,6 +458,22 @@ 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, 5 other review tasks are integrated as optional prompts at natural lifecycle points:
|
|
464
|
+
|
|
465
|
+
| Review Command | Trigger Point | When Prompted | Recommended For |
|
|
466
|
+
|---|---|---|---|
|
|
467
|
+
| `/gaia-review-api` | After `/gaia-create-arch` | End of architecture design (step 9) | Projects with REST APIs |
|
|
468
|
+
| `/gaia-review-a11y` | After `/gaia-create-ux` | End of UX design (step 8) | User-facing applications |
|
|
469
|
+
| `/gaia-edge-cases` | After `/gaia-create-epics` | End of epic/story creation (step 8) | Before sprint planning |
|
|
470
|
+
| `/gaia-review-deps` | During `/gaia-brownfield` | After dependency map (step 5) | Brownfield projects |
|
|
471
|
+
| `/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.
|
|
474
|
+
|
|
475
|
+
All reviews can also be run independently anytime on any artifact or codebase.
|
|
476
|
+
|
|
461
477
|
### Editorial & Documentation
|
|
462
478
|
|
|
463
479
|
| Command | Task | Description |
|
|
@@ -602,7 +618,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
|
|
|
602
618
|
|
|
603
619
|
```yaml
|
|
604
620
|
framework_name: "GAIA"
|
|
605
|
-
framework_version: "1.
|
|
621
|
+
framework_version: "1.5.0"
|
|
606
622
|
|
|
607
623
|
user_name: "your-name"
|
|
608
624
|
project_name: "your-project"
|
|
@@ -651,12 +667,12 @@ Pre-built team compositions for different project types:
|
|
|
651
667
|
|
|
652
668
|
# Phase 2: Planning
|
|
653
669
|
/gaia-create-prd → write the PRD (optional: adversarial review)
|
|
654
|
-
/gaia-create-ux → design the UX
|
|
670
|
+
/gaia-create-ux → design the UX (optional: accessibility review)
|
|
655
671
|
|
|
656
672
|
# Phase 3: Solutioning
|
|
657
|
-
/gaia-create-arch → design the architecture (optional: adversarial review)
|
|
673
|
+
/gaia-create-arch → design the architecture (optional: API review, adversarial review)
|
|
658
674
|
/gaia-test-design → create test plan (optional: scaffold test framework)
|
|
659
|
-
/gaia-create-epics → break into epics and stories (optional: adversarial review)
|
|
675
|
+
/gaia-create-epics → break into epics and stories (optional: edge cases, adversarial review)
|
|
660
676
|
/gaia-trace → generate traceability matrix
|
|
661
677
|
/gaia-ci-setup → scaffold CI pipeline
|
|
662
678
|
/gaia-readiness-check → verify everything is ready (optional: adversarial review)
|
|
@@ -667,7 +683,7 @@ Pre-built team compositions for different project types:
|
|
|
667
683
|
/gaia-validate-story → validate story completeness
|
|
668
684
|
/gaia-fix-story → fix issues from validation
|
|
669
685
|
/gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
|
|
670
|
-
/gaia-dev-story → implement stories
|
|
686
|
+
/gaia-dev-story → implement stories (optional: performance review)
|
|
671
687
|
/gaia-code-review → review the code
|
|
672
688
|
/gaia-qa-tests → generate tests
|
|
673
689
|
/gaia-security-review → security audit
|
|
@@ -708,7 +724,7 @@ Pre-built team compositions for different project types:
|
|
|
708
724
|
/gaia-validate-story → validate story completeness
|
|
709
725
|
/gaia-fix-story → fix issues from validation
|
|
710
726
|
/gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
|
|
711
|
-
/gaia-dev-story → implement gap stories
|
|
727
|
+
/gaia-dev-story → implement gap stories (optional: performance review)
|
|
712
728
|
/gaia-code-review → review the code
|
|
713
729
|
/gaia-qa-tests → generate tests
|
|
714
730
|
/gaia-security-review → security audit
|
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.5.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
|
|