From 6a317c524dac2a2d4468277dcd5274b4caaf8014 Mon Sep 17 00:00:00 2001 From: Murat Date: Wed, 26 Aug 2026 23:42:14 +0200 Subject: [PATCH] docs(nav): expose Control Map, Circuit Breaker, Token Budget, Research backlog mkdocs build --strict reported 4 pages that exist in the docs tree but were never wired into the navigation: - CONTROL_MAP.md (referenced from getting-started/configuration.md) - features/circuit-breaker.md - features/token-budget.md - research/RESEARCH-ideas.md Add them under semantically appropriate sections: Control Map under Getting Started, the two feature docs under Features, and a new top-level Research section for the ideas backlog. --- mkdocs.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mkdocs.yml b/mkdocs.yml index 4380c24..1b8057f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -62,6 +62,7 @@ nav: - Installation: getting-started/installation.md - Configuration: getting-started/configuration.md - Quick Start: getting-started/quickstart.md + - Config Key Map: CONTROL_MAP.md - Architecture: - Overview: architecture/overview.md - Memory Layers: architecture/layers.md @@ -86,6 +87,10 @@ nav: - Backup: features/backup.md - Rate Limiting: features/rate-limiting.md - Compression: features/compression.md + - Circuit Breaker: features/circuit-breaker.md + - Token Budget: features/token-budget.md + - Research: + - Ideas Backlog: research/RESEARCH-ideas.md - Wiki: - Overview: wiki/overview.md - FileWiki: wiki/file-wiki.md