gaia-framework 1.1.13 → 1.1.14

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, 57 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, 58 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 100 slash commands to `.claude/commands/`
52
+ 7. Installs 101 slash commands to `.claude/commands/`
53
53
  8. Appends GAIA entries to `.gitignore`
54
54
 
55
55
  ### Updating an existing installation
@@ -140,7 +140,7 @@ _gaia/
140
140
  │ └── workflows/ # Brainstorming, party mode, advanced elicitation
141
141
  ├── lifecycle/ # Product lifecycle (5 phases)
142
142
  │ ├── agents/ # 11 lifecycle agents
143
- │ ├── workflows/ # 35 workflows across 5 phases + anytime + quick-flow
143
+ │ ├── workflows/ # 36 workflows across 5 phases + anytime + quick-flow
144
144
  │ ├── templates/ # 16 document templates (PRD, architecture, API docs, brownfield, etc.)
145
145
  │ └── teams/ # Pre-built team compositions
146
146
  ├── dev/ # Developer tooling
@@ -273,6 +273,7 @@ Workflows are structured multi-step processes. Each has a `workflow.yaml` config
273
273
  | `/gaia-epic-status` | Epic Status | Nate | `docs/implementation-artifacts/` |
274
274
  | `/gaia-create-story` | Create Story | Derek | `docs/implementation-artifacts/` |
275
275
  | `/gaia-validate-story` | Validate Story | Derek | `docs/implementation-artifacts/` |
276
+ | `/gaia-fix-story` | Fix Story | Nate | `docs/implementation-artifacts/` |
276
277
  | `/gaia-dev-story` | Dev Story | Stack dev | `docs/implementation-artifacts/` |
277
278
  | `/gaia-code-review` | Code Review | Stack dev | `docs/implementation-artifacts/` |
278
279
  | `/gaia-qa-tests` | QA Generate Tests | Vera | `docs/implementation-artifacts/` |
@@ -555,7 +556,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
555
556
 
556
557
  ```yaml
557
558
  framework_name: "GAIA"
558
- framework_version: "1.1.13"
559
+ framework_version: "1.1.14"
559
560
 
560
561
  user_name: "your-name"
561
562
  project_name: "your-project"
@@ -606,6 +607,9 @@ A full product lifecycle from idea to deployment:
606
607
  /gaia-create-epics → break into epics and stories
607
608
  /gaia-readiness-check → verify everything is ready
608
609
  /gaia-sprint-plan → plan the first sprint
610
+ /gaia-create-story → create detailed stories
611
+ /gaia-validate-story → validate story completeness
612
+ /gaia-fix-story → fix issues from validation
609
613
  /gaia-dev-story → implement stories
610
614
  /gaia-code-review → review the code
611
615
  /gaia-qa-tests → generate tests
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.13"
9
+ readonly VERSION="1.1.14"
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.13",
3
+ "version": "1.1.14",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"