Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
f7e6d1f
Roadmap overhaul: milestone-aligned plans, 9 new plan documents, voic…
kovtcharov Apr 1, 2026
2010a4f
Convert plans to MDX, add to docs site, update CLAUDE.md and READMEs
kovtcharov Apr 1, 2026
8901d71
Remove business jargon from plan documents — engineering focus only
kovtcharov Apr 1, 2026
b754432
Rewrite agent-hub as pure engineering doc, remove all business content
kovtcharov Apr 1, 2026
1022563
Fix remaining jargon and broken cross-references across all plan docu…
kovtcharov Apr 1, 2026
4f362a3
Fix remaining jargon and broken cross-references across all plan docu…
kovtcharov Apr 1, 2026
b0138ab
Fix orphaned code fence in skill-format SKILL.md example
kovtcharov Apr 1, 2026
ca66539
Fix ChatSDK references, add Signal to architecture diagram, update co…
kovtcharov Apr 1, 2026
7d6308a
fix: resolve CI failures in Docs Validation and Check Documentation L…
kovtcharov Apr 1, 2026
f86f75f
Fix stale model names, port, line refs, and add missing issue cross-r…
kovtcharov Apr 1, 2026
e393074
Fix stale doc references and port errors in spec files
kovtcharov Apr 1, 2026
a11369d
Fix chat-agent rename notice, stale dates, and wrong MCP port in elec…
kovtcharov Apr 1, 2026
50682d9
Fix stale Chat SDK labels and model name in guides and SDK docs
kovtcharov Apr 1, 2026
f0f0721
Fix port collision, stale mixin list, and completed-extraction note i…
kovtcharov Apr 1, 2026
a8b4698
Merge branch 'main' into kalin/roadmap-plans-2026-04
kovtcharov Apr 11, 2026
6c9b4d2
docs: update roadmap — v0.17.2 shipped, v0.17.3 current, sequenced dates
Apr 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,37 @@ All documentation uses `.mdx` format (Markdown + JSX for Mintlify).

**Specifications:** See `docs/spec/` for 40+ technical specifications.

## Roadmap & Plans

The roadmap is at [`docs/roadmap.mdx`](docs/roadmap.mdx) ([live site](https://amd-gaia.ai/roadmap)). Plan documents are in `docs/plans/`:

**Agent UI:**
- [`docs/plans/agent-ui.mdx`](docs/plans/agent-ui.mdx) - GaiaAgent comprehensive plan (Phases A-D)
- [`docs/plans/setup-wizard.mdx`](docs/plans/setup-wizard.mdx) - First-run onboarding and system scanner
- [`docs/plans/security-model.mdx`](docs/plans/security-model.mdx) - Guardrails, audit trail, credential vault
- [`docs/plans/email-calendar-integration.mdx`](docs/plans/email-calendar-integration.mdx) - Email triage, calendar, meeting notes
- [`docs/plans/messaging-integrations-plan.mdx`](docs/plans/messaging-integrations-plan.mdx) - Signal, Discord, Slack, Telegram adapters
- [`docs/plans/autonomy-engine.mdx`](docs/plans/autonomy-engine.mdx) - Heartbeat, scheduler, background service

**Ecosystem:**
- [`docs/plans/agent-hub.mdx`](docs/plans/agent-hub.mdx) - Agent marketplace and community hub
- [`docs/plans/skill-format.mdx`](docs/plans/skill-format.mdx) - SKILL.md specification
- [`docs/plans/oem-bundling.mdx`](docs/plans/oem-bundling.mdx) - OEM hardware pre-configuration

**Infrastructure:**
- [`docs/plans/installer.mdx`](docs/plans/installer.mdx) - Desktop installer
- [`docs/plans/mcp-client.mdx`](docs/plans/mcp-client.mdx) - MCP client integration
- [`docs/plans/cua.mdx`](docs/plans/cua.mdx) - Computer Use Agent
- [`docs/plans/docker-containers.mdx`](docs/plans/docker-containers.mdx) - Docker deployment

**Key architectural decisions (April 2026):**
- ChatAgent renamed to **GaiaAgent** in v0.20.0 (#696)
- Voice-first is P0 enabling technology (#702)
- No context compaction — memory + RAG handles long conversations
- Configuration dashboard + Observability dashboard as separate Agent UI panels
- MCP servers primary for email/calendar (not browser automation)
- Signal is Phase 1 messaging priority (privacy-first)

## Issue Response Guidelines

When responding to GitHub issues and pull requests, follow these guidelines:
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,12 @@ print(result)
## Key Capabilities

- **Agent Framework** — Base class with tool orchestration, state management, and error recovery
- **RAG System** — Document indexing and semantic search for Q&A
- **Voice Integration** — Whisper ASR + Kokoro TTS for speech interaction
- **Agent UI** — Privacy-first desktop app with chat, file browser, document indexing, and tool execution
- **RAG System** — Document indexing and semantic search for Q&A over 50+ file formats
- **Voice Integration** — Whisper ASR + Kokoro TTS for speech interaction (P0 enabling technology)
- **Vision Models** — Extract text from images with Qwen3-VL-4B
- **MCP Integration** — Connect to any MCP server for external tool access
- **Plugin System** — Distribute agents via PyPI with auto-discovery
- **Web UI Packaging** — Generate modern interfaces for your agents

---

Expand Down Expand Up @@ -171,5 +172,5 @@ We welcome contributions! See our [Contributing Guide](CONTRIBUTING.md) for deta

[MIT License](./LICENSE.md)

Copyright(C) 2024-2025 Advanced Micro Devices, Inc. All rights reserved.
Copyright(C) 2024-2026 Advanced Micro Devices, Inc. All rights reserved.
SPDX-License-Identifier: MIT
2 changes: 1 addition & 1 deletion cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Copyright(C) 2025-2026 Advanced Micro Devices, Inc. All rights reserved. -->
<!-- SPDX-License-Identifier: MIT -->

The [GAIA](https://github.com/amd/gaia) C++ agent framework. Implements the core agentic loop — LLM reasoning, tool execution, multi-step planning, and MCP (Model Context Protocol) client integration — as a lightweight, header-friendly C++ library.
The [GAIA](https://github.com/amd/gaia) C++ agent framework — a native C++17 port of the Python base agent. Part of AMD's open-source AI agent platform for Ryzen AI hardware. See the [Agent UI plan](../docs/plans/agent-ui.mdx) for the consumer desktop experience that this framework supports.

Included demos:

Expand Down
32 changes: 26 additions & 6 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -351,19 +351,39 @@
]
},
{
"group": "Plans",
"group": "Agent UI",
"pages": [
"plans/agent-hub",
"plans/installer",
"plans/desktop-installer",
"plans/agent-ui",
"plans/setup-wizard",
"plans/security-model",
"plans/email-calendar-integration",
"plans/messaging-integrations-plan",
"plans/autonomy-engine"
]
},
{
"group": "Ecosystem",
"pages": [
"plans/agent-hub",
"plans/skill-format",
"plans/oem-bundling"
]
},
{
"group": "Infrastructure",
"pages": [
"plans/mcp-client",
"plans/cua",
"plans/docker-containers",
"plans/image-agent",
"plans/vision-sdk",
"plans/mcp-docs"
]
},
{
"group": "Agents",
"pages": [
"plans/image-agent",
"plans/vision-sdk"
]
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ If the agent doesn't generate a Dockerfile:

#### "Model Not Found"

Verify the Qwen3-Coder model is downloaded:
Verify the Qwen3.5-35B model is downloaded:

1. Open Lemonade UI: http://localhost:8000
2. Check Models section for Qwen3.5-35B-A3B-GGUF
Expand Down
Loading
Loading