Skip to main content

Aragora Documentation Hub

Quick navigation for the Aragora platform documentation.

What Are You Trying To Do?

Getting Started

GoalDocument
First time setupGETTING_STARTED.md
Quick API testAPI_QUICK_START.md
Run a debateAPI_EXAMPLES.md

Build an Integration

GoalDocument
Python SDKSDK_GUIDE.md
TypeScript SDKSDK_TYPESCRIPT.md
WebSocket streamingWEBSOCKET_EVENTS.md
Full API referenceAPI_REFERENCE.md

Deploy to Production

GoalDocument
Deployment guideDEPLOYMENT.md
Docker setupdeployment/DOCKER.md
Production readinessPRODUCTION_READINESS.md
CI/CD securityCI_CD_SECURITY.md

Troubleshoot Issues

GoalDocument
General troubleshootingTROUBLESHOOTING.md
Alert runbooksALERT_RUNBOOKS.md
Operations guideOPERATIONS.md

Core System Documentation

Debate Engine

The core multi-agent debate orchestration system.

ARCHITECTURE.md          # Overall system design
└── DEBATE_INTERNALS.md # How debates work
└── algorithms/CONSENSUS.md # Consensus mechanisms

Memory Systems

Multi-tier memory for cross-debate learning.

MEMORY.md                # Overview of memory architecture
├── MEMORY_TIERS.md # Fast/Medium/Slow/Glacial tiers
├── MEMORY_STRATEGY.md # Consolidation and decay strategies
└── MEMORY_ANALYTICS.md # Memory usage metrics

Key Concepts (half-life):

  • Fast tier (1 hour): Immediate context within a debate
  • Medium tier (24 hours): Session-level memory
  • Slow tier (7 days): Cross-session patterns
  • Glacial tier (30 days): Long-term institutional knowledge

Knowledge Mound

Centralized knowledge storage with validation and retrieval.

KNOWLEDGE_MOUND.md            # Architecture and concepts
└── KNOWLEDGE_MOUND_OPERATIONS.md # Operational procedures

Key Features:

  • 28 registered adapters (Continuum, Consensus, Evidence, ELO, etc.)
  • Additional experimental modules (extraction, nomic_cycle, openclaw, ranking)
  • Semantic search with validation feedback
  • RBAC-governed access
  • Contradiction detection

Control Plane

Enterprise orchestration layer for multi-agent systems.

CONTROL_PLANE.md         # Architecture overview
└── CONTROL_PLANE_GUIDE.md # Operational guide

Features: Agent registry, task scheduler, policy governance, health monitoring


Integration Channels

ChannelDocDescription
SlackBOT_INTEGRATIONS.mdSlack bot setup
TelegramCHAT_CONNECTOR_GUIDE.mdTelegram integration
WhatsAppCHAT_CONNECTOR_GUIDE.mdWhatsApp Business
EmailEMAIL_PRIORITIZATION.mdEmail processing
GitHubGITHUB_PR_REVIEW.mdPR review automation

Enterprise Features

FeatureDocDescription
AuthenticationAUTH_GUIDE.mdSSO, MFA, API keys
RBACGOVERNANCE.mdRole-based access control
ComplianceCOMPLIANCE.mdSOC 2, GDPR
BillingBILLING.mdUsage metering and costs
SecuritySECURITY.mdSecurity architecture

API Quick Reference

Endpoint PatternPurposeDoc Section
POST /api/v1/debatesStart debateAPI_EXAMPLES.md#debates
GET /ws/debate/\{id\}Stream eventsWEBSOCKET_EVENTS.md
POST /api/v1/documentsIngest documentsDOCUMENTS.md
GET /api/v1/knowledge/searchSearch knowledgeKNOWLEDGE_MOUND.md

CLI Reference

aragora ask "Question"      # Run a debate
aragora serve # Start server
aragora setup # Interactive setup wizard
aragora backup create # Create database backup
aragora backup restore # Restore from backup

See CLI_REFERENCE.md for full documentation.


Document Index

For the complete document listing, see INDEX.md.

For deprecated documentation, see deprecated/.