@@ -26,11 +26,20 @@ Complete documentation for the Agentic Ops Framework (AOF).
2626### Advanced Concepts
2727- ** [ AgentFleet: Multi-Agent Coordination] ( concepts/fleets.md ) ** - Deep dive into fleets
2828 - Why use fleets in DevOps (consensus, parallel execution, specialization)
29- - 4 coordination modes (peer, hierarchical, pipeline, swarm)
30- - 4 consensus algorithms (majority, unanimous, weighted, first_wins)
29+ - 5 coordination modes (peer, hierarchical, pipeline, swarm, ** tiered ** )
30+ - 5 consensus algorithms (majority, unanimous, weighted, first_wins, ** human_review ** )
3131 - Fleet vs single agent comparison
3232 - Real-world examples (code review, incident response, data pipeline)
3333
34+ ### Architecture
35+ - ** [ Multi-Model Consensus Architecture] ( architecture/multi-model-consensus.md ) ** - Deep dive into multi-model AI
36+ - The problem with single-model analysis
37+ - Tiered execution model (data collection → reasoning → synthesis)
38+ - Consensus engine implementation (5 algorithms)
39+ - Data flow architecture
40+ - Cost optimization strategies
41+ - Use cases (RCA, code review, performance analysis)
42+
3443### Tutorials (Step-by-Step)
35441 . ** [ Build Your First Agent] ( tutorials/first-agent.md ) ** (15 min)
3645 - Agent definition and configuration
@@ -56,6 +65,13 @@ Complete documentation for the Agentic Ops Framework (AOF).
5665 - Consensus-based incident diagnosis
5766 - Customization for different tech stacks (K8s, database, AWS)
5867
68+ 5 . ** [ Multi-Model RCA with Tiered Execution] ( tutorials/multi-model-rca.md ) ** (35 min) ⭐ NEW
69+ - Tiered architecture (data collectors → reasoning models → coordinator)
70+ - Multi-model consensus (Claude + Gemini + GPT-4)
71+ - Cost-optimized data collection (cheap models for Tier 1)
72+ - Weighted consensus with confidence scoring
73+ - Production-ready RCA report generation
74+
5975### Reference Documentation
6076- ** [ Agent YAML Spec] ( reference/agent-spec.md ) ** - Complete Agent specification
6177 - Metadata fields
@@ -72,6 +88,13 @@ Complete documentation for the Agentic Ops Framework (AOF).
7288 - Variable interpolation
7389 - Error handling
7490
91+ - ** [ AgentFleet YAML Spec] ( reference/fleet-spec.md ) ** - Complete Fleet specification
92+ - Coordination modes (peer, hierarchical, pipeline, swarm, tiered)
93+ - Consensus algorithms (majority, unanimous, weighted, first_wins, human_review)
94+ - Tiered configuration (per-tier consensus, final aggregation)
95+ - Shared resources and communication patterns
96+ - Complete examples
97+
7598- ** [ aofctl CLI Reference] ( reference/aofctl.md ) ** - Complete CLI command reference
7699 - Agent commands (apply, get, run, chat, exec, logs, etc.)
77100 - Fleet commands (create, scale, exec, status)
@@ -173,7 +196,7 @@ Essential reading:
173196| Resource | Spec Doc | Example |
174197| ----------| ----------| ---------|
175198| Agent | [ agent-spec.md] ( reference/agent-spec.md ) | [ kubernetes-agent.yaml] ( examples/kubernetes-agent.yaml ) |
176- | AgentFleet | [ agent -spec.md] ( reference/agent -spec.md ) | Coming soon |
199+ | AgentFleet | [ fleet -spec.md] ( reference/fleet -spec.md ) | [ multi-model-rca-fleet.yaml ] ( ../examples/fleets/multi-model-rca-fleet.yaml ) |
177200| AgentFlow | [ agentflow-spec.md] ( reference/agentflow-spec.md ) | [ slack-bot-flow.yaml] ( examples/slack-bot-flow.yaml ) |
178201
179202### Model Providers
@@ -221,13 +244,15 @@ See [Examples README](examples/README.md#contributing-examples) for guidelines.
221244- [x] Main README
222245- [x] Getting Started guide
223246- [x] Core Concepts
224- - [x] AgentFleet multi-agent coordination guide
225- - [x] 4 comprehensive tutorials (including RCA Fleet)
247+ - [x] AgentFleet multi-agent coordination guide (5 modes, 5 consensus algorithms)
248+ - [x] Multi-Model Consensus Architecture guide
249+ - [x] 5 comprehensive tutorials (including Multi-Model RCA)
226250- [x] Complete Agent YAML reference
227251- [x] Complete AgentFlow YAML reference
252+ - [x] Complete AgentFleet YAML reference
228253- [x] Complete CLI reference
229- - [x] 5+ production-ready examples
230- - [x] RCA fleet examples (application, database, Kubernetes)
254+ - [x] 12+ example agents (observability + reasoning)
255+ - [x] Multi-model RCA fleet example
231256
232257### 🚧 Coming Soon
233258- [ ] Advanced patterns guide
@@ -238,16 +263,19 @@ See [Examples README](examples/README.md#contributing-examples) for guidelines.
238263
239264## 🔄 Documentation Updates
240265
241- Last updated: 2024 -12-17
266+ Last updated: 2025 -12-17
242267
243268### Recent Changes
244- - Added AgentFleet multi-agent coordination guide
269+ - ** NEW** : Multi-Model Consensus Architecture guide
270+ - ** NEW** : Multi-Model RCA Tutorial with tiered execution
271+ - ** NEW** : AgentFleet YAML Reference (fleet-spec.md)
272+ - ** NEW** : 8 observability + reasoning example agents
273+ - ** NEW** : Tiered coordination mode (data collectors → reasoning → synthesis)
274+ - ** NEW** : HumanReview consensus algorithm
275+ - Updated AgentFleet concepts with 5 coordination modes
276+ - Updated Docusaurus sidebar with Architecture section
245277- Added RCA Fleet tutorial with consensus patterns
246- - Added application and database RCA fleet examples
247278- Added complete reference documentation
248- - Added 5+ production examples
249- - Added 4 step-by-step tutorials
250- - Added quickstart guide
251279
252280---
253281
0 commit comments