gaia-framework 1.48.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 +7 -5
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# GAIA — Generative Agile Intelligence Architecture
|
|
2
2
|
|
|
3
|
-
[]()
|
|
4
4
|
[]()
|
|
5
|
-
[]()
|
|
6
6
|
[]()
|
|
7
|
+
[](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 **
|
|
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
|

|
|
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
|
-
- **
|
|
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.48.
|
|
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.48.
|
|
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
|
|