gaia-framework 1.3.0 → 1.4.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
@@ -321,6 +321,7 @@ Testing workflows are **integrated into the main lifecycle** — they are not op
321
321
  | Lifecycle Point | Required Testing Workflow | Gate Type |
322
322
  |---|---|---|
323
323
  | After `/gaia-create-arch` | `/gaia-test-design` | HALT at `/gaia-create-epics` |
324
+ | After `/gaia-test-design` | `/gaia-test-framework` (optional) | Prompted if no framework detected |
324
325
  | Before `/gaia-dev-story` (high-risk) | `/gaia-atdd` | HALT (conditional on risk_level) |
325
326
  | Before `/gaia-readiness-check` | `/gaia-trace` + `/gaia-ci-setup` | HALT |
326
327
  | During `/gaia-brownfield` | `/gaia-nfr` + `/gaia-perf-testing` | REQUIRED steps |
@@ -601,7 +602,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
601
602
 
602
603
  ```yaml
603
604
  framework_name: "GAIA"
604
- framework_version: "1.3.0"
605
+ framework_version: "1.4.0"
605
606
 
606
607
  user_name: "your-name"
607
608
  project_name: "your-project"
@@ -638,39 +639,77 @@ Pre-built team compositions for different project types:
638
639
 
639
640
  ---
640
641
 
641
- ## Typical Workflow
642
+ ## Typical Workflows
642
643
 
643
- A full product lifecycle from idea to deployment:
644
+ ### Greenfield New project from idea to deployment
644
645
 
645
646
  ```
647
+ # Phase 1: Analysis
646
648
  /gaia-brainstorm → brainstorm the idea
647
649
  /gaia-product-brief → create a product brief
648
650
  /gaia-market-research → validate market fit
651
+
652
+ # Phase 2: Planning
649
653
  /gaia-create-prd → write the PRD (optional: adversarial review)
650
654
  /gaia-create-ux → design the UX
655
+
656
+ # Phase 3: Solutioning
651
657
  /gaia-create-arch → design the architecture (optional: adversarial review)
652
- /gaia-test-design → create test plan (REQUIRED before epics)
658
+ /gaia-test-design → create test plan (optional: scaffold test framework)
653
659
  /gaia-create-epics → break into epics and stories (optional: adversarial review)
654
- /gaia-trace → generate traceability matrix (REQUIRED before readiness)
655
- /gaia-ci-setup → scaffold CI pipeline (REQUIRED before readiness)
660
+ /gaia-trace → generate traceability matrix
661
+ /gaia-ci-setup → scaffold CI pipeline
656
662
  /gaia-readiness-check → verify everything is ready (optional: adversarial review)
657
- /gaia-sprint-plan → plan the first sprint (risk-aware)
663
+
664
+ # Phase 4: Implementation (repeat per sprint)
665
+ /gaia-sprint-plan → plan the sprint
658
666
  /gaia-create-story → create detailed stories
659
667
  /gaia-validate-story → validate story completeness
660
668
  /gaia-fix-story → fix issues from validation
661
669
  /gaia-atdd → write acceptance tests (REQUIRED for high-risk stories)
662
- /gaia-dev-story → implement stories (gates on ATDD for high-risk)
670
+ /gaia-dev-story → implement stories
663
671
  /gaia-code-review → review the code
664
672
  /gaia-qa-tests → generate tests
665
673
  /gaia-security-review → security audit
666
674
  /gaia-triage-findings → triage dev findings into backlog
675
+ /gaia-retro → sprint retrospective
676
+
677
+ # Phase 5: Deployment
667
678
  /gaia-release-plan → plan the release
668
679
  /gaia-deploy-checklist → pre-deploy verification (enforced gates)
669
680
  /gaia-post-deploy → post-deploy health check
670
- /gaia-retro → sprint retrospective
671
681
  ```
672
682
 
673
- For small changes, skip the ceremony:
683
+ ### Brownfield Onboard an existing project
684
+
685
+ ```
686
+ # Onboarding (scans codebase, generates knowledge base)
687
+ /gaia-brownfield → deep project discovery (10 steps)
688
+ 1. Scan codebase → project-documentation.md
689
+ 2. API documentation (if APIs detected)
690
+ 3. UX assessment (if frontend detected)
691
+ 4. Event catalog (if messaging detected)
692
+ 5. Dependency map
693
+ 6. NFR assessment & baselines
694
+ 7. Performance test plan
695
+ 8. Gap-focused PRD (gaps only, not existing features)
696
+ 9. Architecture with as-is/target diagrams
697
+ 10. Epics/stories for gaps + developer knowledge base
698
+
699
+ # Readiness & Implementation (same as greenfield from here)
700
+ /gaia-trace → generate traceability matrix
701
+ /gaia-ci-setup → scaffold CI pipeline
702
+ /gaia-readiness-check → verify everything is ready (optional: adversarial review)
703
+ /gaia-sprint-plan → plan the first sprint
704
+ /gaia-dev-story → implement gap stories
705
+ /gaia-code-review → review the code
706
+ /gaia-qa-tests → generate tests
707
+ /gaia-security-review → security audit
708
+ /gaia-deploy-checklist → pre-deploy verification
709
+ /gaia-post-deploy → post-deploy health check
710
+ ```
711
+
712
+ ### Quick Flow — Small changes, minimal ceremony
674
713
 
675
714
  ```
676
715
  /gaia-quick-spec → rapid tech spec
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.3.0"
9
+ readonly VERSION="1.4.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.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"