Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ aragora/
│ ├── agents/ # Agent implementations (API + CLI)
│ ├── debate/ # Debate orchestration (Arena, phases, consensus)
│ ├── memory/ # Memory systems (Continuum, 4-tier)
│ ├── knowledge/ # Knowledge Mound with 14 adapters
│ ├── server/ # HTTP/WebSocket API (275+ endpoints)
│ ├── knowledge/ # Knowledge Mound with 41 adapters
│ ├── server/ # HTTP/WebSocket API (3,000+ operations)
│ ├── control_plane/ # Enterprise orchestration
│ ├── connectors/ # 130+ external integrations
│ ├── cli/ # CLI commands
Expand Down
11 changes: 5 additions & 6 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ Aragora is **98% GA-ready**. The platform has shipped all core infrastructure an

**Remaining blockers before GA:**
- External penetration test (vendor-dependent; kickoff target Mar 3, 2026)
- 3 beta users running `aragora review` on real PRs
- GitHub Actions pre-merge gate (in progress)
- Agent-first beta: OpenClaw instances running reviews via REST API on real PRs
- Public demo at aragora.ai/demo

**EU AI Act enforcement date: August 2, 2026** — the compliance CLI and audit trail infrastructure
Expand Down Expand Up @@ -68,7 +67,7 @@ Aragora is the control plane for multi-agent vetted decisionmaking across organi
### Integrations
- Slack, Discord, Microsoft Teams bots
- Email-to-debate routing
- REST API with 275+ endpoints
- REST API with 3,000+ operations across 2,900+ paths
- WebSocket real-time API
- MCP server for Claude Desktop

Expand Down Expand Up @@ -143,7 +142,7 @@ Aragora is the control plane for multi-agent vetted decisionmaking across organi

### Extended Integrations
- [x] Zapier / Make.com connectors
- [ ] GitHub Actions for CI/CD debates (pre-merge gate — in progress)
- [x] GitHub Actions for CI/CD debates (`aragora-review-gate.yml` shipped)
- [ ] Jupyter notebook integration
- [ ] VS Code extension

Expand Down Expand Up @@ -196,8 +195,8 @@ Enterprise teams evaluating AI governance solutions will be making decisions in
for capturing this cohort is now.

### Q2 2026 Priorities
- [ ] 3 beta users with `aragora review` running on real production PRs
- [ ] GitHub Actions pre-merge gate (CI/CD integration)
- [ ] Agent-first beta: OpenClaw instances running `aragora review` on real PRs via REST API
- [x] GitHub Actions pre-merge gate (`aragora-review-gate.yml` shipped)
- [ ] Public demo at aragora.ai/demo
- [ ] EU AI Act compliance package — full audit bundle documentation and customer playbook
- [ ] SOC 2 Type II audit engagement kickoff (controls are ready; external auditor engagement pending)
Expand Down
2 changes: 1 addition & 1 deletion docs/EXTENDED_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ print(f"Consensus: {result.consensus_reached} ({result.confidence:.0%})")
├─────────────────────────────────────────────────────────────────┤
│ │
│ ┌──────────────────────────────────────────────────────────┐ │
│ │ AGENT LAYER (30+ Agent Types) │ │
│ │ AGENT LAYER (43 Agent Types) │ │
│ │ Claude | GPT | Gemini | Grok | Mistral | DeepSeek | Qwen │ │
│ │ + Kimi, Yi, Local Models (Ollama) │ │
│ └───────────────────────────┬──────────────────────────────┘ │
Expand Down
2 changes: 1 addition & 1 deletion docs/FEATURE_GAP_LIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

| Feature | Status | Notes |
|---------|--------|-------|
| 3 beta users with `aragora review` | Not started | Need real PRs reviewed end-to-end via Aragora. Review gate workflow merged (#648). |
| Agent-first beta via REST API | **In progress** | OpenClaw instances as non-human beta users calling `POST /api/v1/debates`. Self-hosted runner fleet deployed for end-to-end dogfooding and CI validation. |
| GitHub Actions pre-merge gate | **Merged (#648)** | `aragora-review.yml` deployed. Gates on critical findings. Needs branch protection config + beta testing with real repos. |
| Public demo at aragora.ai/demo | **Demo page + share URLs live** | Standalone demo page merged (#648). Share URL persistence fixed. Needs frontend routing verification at aragora.ai/demo. |
| EU AI Act compliance package | **Substantially complete** | Art. 9/12/13/14/15 dedicated bundles + CLI export + compliance scoring + demo script + customer playbook. **Deadline: Aug 2, 2026.** |
Expand Down
6 changes: 3 additions & 3 deletions docs/architecture/system-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ flowchart TB
subgraph Server["Server Layer"]
HTTP["HTTP API (3,000+ operations)"]
WS["WebSocket Streams (22 modules)"]
Handlers["90 HTTP Handlers"]
Handlers["640+ HTTP Handlers"]
TTS["TTS / Voice Stream"]
end

Expand All @@ -36,7 +36,7 @@ flowchart TB
PromptBuilder["Prompt Builder"]
end

subgraph Agents["Agents Layer (30+ Agent Types)"]
subgraph Agents["Agents Layer (43 Agent Types)"]
direction LR
APIAgents["API Agents"]
CLIAgents["CLI Agents"]
Expand Down Expand Up @@ -66,7 +66,7 @@ flowchart TB

subgraph Knowledge["Knowledge Mound"]
Bridges["KnowledgeBridgeHub"]
Adapters["14 Adapters"]
Adapters["41 Adapters"]
Sync["Sync and Revalidation"]
Federation["Federation"]
SemanticSearch["Semantic Search"]
Expand Down
2 changes: 1 addition & 1 deletion docs/status/EXECUTION_PLAN_90D.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ mapping, gap analysis, and build-vs-integrate recommendations.
│ debate/ - Arena, PhaseExecutor, Consensus, Convergence
│ agents/ - CLI + API agents, Airlock, Fallback
│ memory/ - Continuum (4-tier), ConsensusMemory
│ knowledge/ - KnowledgeMound (28 registered adapters)
│ knowledge/ - KnowledgeMound (41 registered adapters)
│ workflow/ - DAG engine, 50+ templates
│ rbac/ - Permissions, roles, middleware
│ resilience.py - CircuitBreaker
Expand Down
Loading