gaia-framework 1.47.0 → 1.48.2

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,11 +1,12 @@
1
1
  # GAIA — Generative Agile Intelligence Architecture
2
2
 
3
- [![Framework](https://img.shields.io/badge/framework-v1.41.0-blue)]()
3
+ [![Framework](https://img.shields.io/badge/framework-v1.48.2-blue)]()
4
4
  [![License](https://img.shields.io/badge/license-AGPL--3.0-green)]()
5
- [![Agents](https://img.shields.io/badge/agents-25-purple)]()
5
+ [![Agents](https://img.shields.io/badge/agents-26-purple)]()
6
6
  [![Workflows](https://img.shields.io/badge/workflows-73-orange)]()
7
+ [![Claude Code](https://img.shields.io/badge/Claude_Code-compatible-blueviolet?style=flat&logo=anthropic)](https://docs.anthropic.com/en/docs/claude-code)
7
8
 
8
- AI agent framework for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) that orchestrates software product development through **25 specialized agents**, **73 workflows**, and **11 shared skills** — from initial research all the way to deployment.
9
+ AI agent framework for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) that orchestrates software product development through **26 specialized agents**, **73 workflows**, and **11 shared skills** — from initial research all the way to deployment.
9
10
 
10
11
  ![GAIA Lifecycle Activity Diagram](GAIA_Lifecycle_Activity_Diagram.png)
11
12
 
@@ -20,7 +21,7 @@ Without guardrails, every AI session starts from zero. There's no traceability f
20
21
  **What this gives you:**
21
22
 
22
23
  - **A structured lifecycle, not ad-hoc prompting** — 5 phases from analysis to deployment, with quality gates that enforce standards at every transition
23
- - **25 specialized agents** — each with a persona, domain expertise, and persistent memory that improves over time
24
+ - **26 specialized agents** — each with a persona, domain expertise, and persistent memory that improves over time
24
25
  - **Enforced quality gates** — 17 gates that HALT workflows when standards aren't met (not advisory — hard stops)
25
26
  - **6-gate review process** — every story passes code review, QA, security, test automation, test review, and performance review before completion
26
27
  - **Full traceability** — every line of code traces back through stories, epics, architecture decisions, and requirements to the original product brief
@@ -204,6 +205,7 @@ All developer agents extend a shared base with common dev patterns. Each adds st
204
205
  | Java Dev | Hugo | Spring Boot, JPA, microservices | `/gaia-agent-dev-java` |
205
206
  | Python Dev | Ravi | Django, FastAPI, data pipelines | `/gaia-agent-dev-python` |
206
207
  | Mobile Dev | Talia | React Native, Swift, Kotlin | `/gaia-agent-dev-mobile` |
208
+ | Go Dev | Kai | Go, Gin, Fiber, gRPC | `/gaia-agent-dev-go` |
207
209
 
208
210
  ### Creative Agents
209
211
 
@@ -458,7 +460,7 @@ The single source of truth is `_gaia/_config/global.yaml`:
458
460
 
459
461
  ```yaml
460
462
  framework_name: "GAIA"
461
- framework_version: "1.47.0"
463
+ framework_version: "1.48.2"
462
464
  user_name: "your-name"
463
465
  project_name: "your-project"
464
466
  ```
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.47.0"
9
+ readonly VERSION="1.48.2"
10
10
  readonly GITHUB_REPO="https://github.com/jlouage/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.47.0",
3
+ "version": "1.48.2",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"