gaia-framework 1.1.4 → 1.1.6

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
@@ -1,6 +1,6 @@
1
1
  # GAIA — Generative Agile Intelligence Architecture
2
2
 
3
- AI agent framework for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) that orchestrates software product development through 25 specialized agents, 56 workflows, and 8 shared skills — from initial research all the way to deployment.
3
+ AI agent framework for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) that orchestrates software product development through 25 specialized agents, 57 workflows, and 8 shared skills — from initial research all the way to deployment.
4
4
 
5
5
  GAIA gives you a team of AI agents with distinct personas, structured workflows that follow a proven product lifecycle, built-in quality gates, checkpoint/resume for long-running sessions, and persistent agent memory across conversations.
6
6
 
@@ -49,7 +49,7 @@ The script resolves sources in this order: `--source` flag, `$GAIA_SOURCE` env v
49
49
  4. Creates `.resolved/` directories for pre-built configs
50
50
  5. Prompts for project name and user name, writes them to `global.yaml`
51
51
  6. Copies `CLAUDE.md` to your project root (the framework instruction file)
52
- 7. Installs 99 slash commands to `.claude/commands/`
52
+ 7. Installs 100 slash commands to `.claude/commands/`
53
53
  8. Appends GAIA entries to `.gitignore`
54
54
 
55
55
  ### Updating an existing installation
@@ -140,8 +140,8 @@ _gaia/
140
140
  │ └── workflows/ # Brainstorming, party mode, advanced elicitation
141
141
  ├── lifecycle/ # Product lifecycle (5 phases)
142
142
  │ ├── agents/ # 11 lifecycle agents
143
- │ ├── workflows/ # 34 workflows across 5 phases + anytime + quick-flow
144
- │ ├── templates/ # 15 document templates (PRD, architecture, API docs, brownfield, etc.)
143
+ │ ├── workflows/ # 35 workflows across 5 phases + anytime + quick-flow
144
+ │ ├── templates/ # 16 document templates (PRD, architecture, API docs, brownfield, etc.)
145
145
  │ └── teams/ # Pre-built team compositions
146
146
  ├── dev/ # Developer tooling
147
147
  │ ├── agents/ # 6 stack-specific developers + base
@@ -163,10 +163,10 @@ _gaia/
163
163
  |-----------|-------|
164
164
  | Modules | 5 (core, lifecycle, dev, creative, testing) |
165
165
  | Agents | 25 with distinct personas |
166
- | Workflows | 56 covering the full product lifecycle |
166
+ | Workflows | 57 covering the full product lifecycle |
167
167
  | Standalone tasks | 16 (reviews, audits, utilities) |
168
168
  | Shared skills | 8 with 47 loadable sections |
169
- | Slash commands | 99 |
169
+ | Slash commands | 100 |
170
170
  | Knowledge fragments | 45 (testing, stack patterns) |
171
171
  | Agent memory sidecars | 9 |
172
172
  | Output artifact dirs | 4 |
@@ -270,6 +270,7 @@ Workflows are structured multi-step processes. Each has a `workflow.yaml` config
270
270
  |---------|----------|-------|--------|
271
271
  | `/gaia-sprint-plan` | Sprint Planning | Nate | `docs/implementation-artifacts/` |
272
272
  | `/gaia-sprint-status` | Sprint Status | Nate | `docs/implementation-artifacts/` |
273
+ | `/gaia-epic-status` | Epic Status | Nate | `docs/implementation-artifacts/` |
273
274
  | `/gaia-create-story` | Create Story | Derek | `docs/implementation-artifacts/` |
274
275
  | `/gaia-validate-story` | Validate Story | Derek | `docs/implementation-artifacts/` |
275
276
  | `/gaia-dev-story` | Dev Story | Stack dev | `docs/implementation-artifacts/` |
@@ -512,6 +513,7 @@ Document templates in `_gaia/lifecycle/templates/` provide standardized structur
512
513
  | `dependency-map-template.md` | brownfield-onboarding | Service, infrastructure, and library dependencies |
513
514
  | `nfr-assessment-template.md` | brownfield-onboarding | Non-functional requirements baselines |
514
515
  | `ux-design-assessment-template.md` | brownfield-onboarding | UI patterns and accessibility assessment |
516
+ | `epic-status-template.md` | epic-status | Epic completion dashboard with progress bars |
515
517
  | `brownfield-onboarding-template.md` | brownfield-onboarding | Developer knowledge base index |
516
518
 
517
519
  ---
@@ -553,7 +555,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
553
555
 
554
556
  ```yaml
555
557
  framework_name: "GAIA"
556
- framework_version: "1.1.4"
558
+ framework_version: "1.1.6"
557
559
 
558
560
  user_name: "your-name"
559
561
  project_name: "your-project"
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.1.4"
9
+ readonly VERSION="1.1.6"
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.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"