gaia-framework 1.9.0 → 1.10.1
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 +4 -2
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> **WARNING: This framework is currently in BETA. Workflows, commands, and APIs may change without notice. Use in production at your own risk.**
|
|
4
4
|
|
|
5
|
-
AI agent framework for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) that orchestrates software product development through 25 specialized agents,
|
|
5
|
+
AI agent framework for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) that orchestrates software product development through 25 specialized agents, 61 workflows, and 8 shared skills — from initial research all the way to deployment.
|
|
6
6
|
|
|
7
7
|
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.
|
|
8
8
|
|
|
@@ -281,6 +281,8 @@ Workflows are structured multi-step processes. Each has a `workflow.yaml` config
|
|
|
281
281
|
| `/gaia-qa-tests` | QA Generate Tests | Vera | `docs/implementation-artifacts/` |
|
|
282
282
|
| `/gaia-security-review` | Security Review | Zara | `docs/implementation-artifacts/` |
|
|
283
283
|
| `/gaia-triage-findings` | Triage Findings | Nate | `docs/implementation-artifacts/` |
|
|
284
|
+
| `/gaia-change-request` | Change Request | Derek | `docs/planning-artifacts/` |
|
|
285
|
+
| `/gaia-add-stories` | Add Stories | Derek | `docs/planning-artifacts/` |
|
|
284
286
|
| `/gaia-correct-course` | Correct Course | Nate | `docs/implementation-artifacts/` |
|
|
285
287
|
| `/gaia-retro` | Retrospective | Nate | `docs/implementation-artifacts/` |
|
|
286
288
|
|
|
@@ -631,7 +633,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
|
|
|
631
633
|
|
|
632
634
|
```yaml
|
|
633
635
|
framework_name: "GAIA"
|
|
634
|
-
framework_version: "1.
|
|
636
|
+
framework_version: "1.10.0"
|
|
635
637
|
|
|
636
638
|
user_name: "your-name"
|
|
637
639
|
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.
|
|
9
|
+
readonly VERSION="1.10.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
|
|