gaia-framework 1.1.17 → 1.1.19
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 +5 -3
- package/gaia-install.sh +1 -1
- package/package.json +1 -1
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,
|
|
3
|
+
AI agent framework for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) that orchestrates software product development through 25 specialized agents, 59 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
|
|
|
@@ -163,7 +163,7 @@ _gaia/
|
|
|
163
163
|
|-----------|-------|
|
|
164
164
|
| Modules | 5 (core, lifecycle, dev, creative, testing) |
|
|
165
165
|
| Agents | 25 with distinct personas |
|
|
166
|
-
| Workflows |
|
|
166
|
+
| Workflows | 59 covering the full product lifecycle |
|
|
167
167
|
| Standalone tasks | 16 (reviews, audits, utilities) |
|
|
168
168
|
| Shared skills | 8 with 47 loadable sections |
|
|
169
169
|
| Slash commands | 100 |
|
|
@@ -278,6 +278,7 @@ Workflows are structured multi-step processes. Each has a `workflow.yaml` config
|
|
|
278
278
|
| `/gaia-code-review` | Code Review | Stack dev | `docs/implementation-artifacts/` |
|
|
279
279
|
| `/gaia-qa-tests` | QA Generate Tests | Vera | `docs/implementation-artifacts/` |
|
|
280
280
|
| `/gaia-security-review` | Security Review | Zara | `docs/implementation-artifacts/` |
|
|
281
|
+
| `/gaia-triage-findings` | Triage Findings | Nate | `docs/implementation-artifacts/` |
|
|
281
282
|
| `/gaia-correct-course` | Correct Course | Nate | `docs/implementation-artifacts/` |
|
|
282
283
|
| `/gaia-retro` | Retrospective | Nate | `docs/implementation-artifacts/` |
|
|
283
284
|
|
|
@@ -556,7 +557,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
|
|
|
556
557
|
|
|
557
558
|
```yaml
|
|
558
559
|
framework_name: "GAIA"
|
|
559
|
-
framework_version: "1.1.
|
|
560
|
+
framework_version: "1.1.19"
|
|
560
561
|
|
|
561
562
|
user_name: "your-name"
|
|
562
563
|
project_name: "your-project"
|
|
@@ -614,6 +615,7 @@ A full product lifecycle from idea to deployment:
|
|
|
614
615
|
/gaia-code-review → review the code
|
|
615
616
|
/gaia-qa-tests → generate tests
|
|
616
617
|
/gaia-security-review → security audit
|
|
618
|
+
/gaia-triage-findings → triage dev findings into backlog
|
|
617
619
|
/gaia-release-plan → plan the release
|
|
618
620
|
/gaia-deploy-checklist → pre-deploy verification
|
|
619
621
|
/gaia-post-deploy → post-deploy health check
|
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.
|
|
9
|
+
readonly VERSION="1.1.19"
|
|
10
10
|
readonly GITHUB_REPO="https://github.com/J-louage/Gaia-framework.git"
|
|
11
11
|
readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
|
|
12
12
|
|