gaia-framework 1.10.1 → 1.11.0
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 +3 -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, 62 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,7 @@ 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-tech-debt-review` | Tech Debt Review | Nate | `docs/implementation-artifacts/` |
|
|
284
285
|
| `/gaia-change-request` | Change Request | Derek | `docs/planning-artifacts/` |
|
|
285
286
|
| `/gaia-add-stories` | Add Stories | Derek | `docs/planning-artifacts/` |
|
|
286
287
|
| `/gaia-correct-course` | Correct Course | Nate | `docs/implementation-artifacts/` |
|
|
@@ -633,7 +634,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
|
|
|
633
634
|
|
|
634
635
|
```yaml
|
|
635
636
|
framework_name: "GAIA"
|
|
636
|
-
framework_version: "1.
|
|
637
|
+
framework_version: "1.11.0"
|
|
637
638
|
|
|
638
639
|
user_name: "your-name"
|
|
639
640
|
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.11.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
|
|