From 969833e6e3b62febecda9b900b6a8cae2bd6aae8 Mon Sep 17 00:00:00 2001 From: Michael Bleigh Date: Fri, 26 Sep 2025 13:39:19 -0700 Subject: [PATCH] chore(docs): adds sidebar.json for docs organization (#9985) Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- docs/sidebar.json | 69 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 docs/sidebar.json diff --git a/docs/sidebar.json b/docs/sidebar.json new file mode 100644 index 0000000000..75b85208c9 --- /dev/null +++ b/docs/sidebar.json @@ -0,0 +1,69 @@ +[ + { + "label": "Overview", + "items": [ + { "label": "Welcome", "slug": "docs" }, + { "label": "Execution and Deployment", "slug": "docs/deployment" }, + { "label": "Architecture Overview", "slug": "docs/architecture" } + ] + }, + { + "label": "CLI", + "items": [ + { "label": "Introduction", "slug": "docs/cli" }, + { "label": "Authentication", "slug": "docs/cli/authentication" }, + { "label": "Commands", "slug": "docs/cli/commands" }, + { "label": "Configuration", "slug": "docs/cli/configuration" }, + { "label": "Checkpointing", "slug": "docs/checkpointing" }, + { "label": "Enterprise", "slug": "docs/cli/enterprise" }, + { "label": "Extensions", "slug": "docs/extension" }, + { "label": "Headless Mode", "slug": "docs/headless" }, + { "label": "IDE Integration", "slug": "docs/ide-integration" }, + { + "label": "IDE Companion Spec", + "slug": "docs/ide-companion-spec" + }, + { "label": "Telemetry", "slug": "docs/telemetry" }, + { "label": "Themes", "slug": "docs/cli/themes" }, + { "label": "Token Caching", "slug": "docs/cli/token-caching" }, + { "label": "Trusted Folders", "slug": "docs/trusted-folders" }, + { "label": "Tutorials", "slug": "docs/cli/tutorials" } + ] + }, + { + "label": "Core", + "items": [ + { "label": "Introduction", "slug": "docs/core" }, + { "label": "Tools API", "slug": "docs/core/tools-api" }, + { "label": "Memory Import Processor", "slug": "docs/core/memport" } + ] + }, + { + "label": "Tools", + "items": [ + { "label": "Overview", "slug": "docs/tools" }, + { "label": "File System", "slug": "docs/tools/file-system" }, + { "label": "Multi-File Read", "slug": "docs/tools/multi-file" }, + { "label": "Shell", "slug": "docs/tools/shell" }, + { "label": "Web Fetch", "slug": "docs/tools/web-fetch" }, + { "label": "Web Search", "slug": "docs/tools/web-search" }, + { "label": "Memory", "slug": "docs/tools/memory" }, + { "label": "MCP Servers", "slug": "docs/tools/mcp-server" }, + { "label": "Sandboxing", "slug": "docs/sandbox" } + ] + }, + { + "label": "Development", + "items": [ + { "label": "NPM", "slug": "docs/npm" }, + { "label": "Releases", "slug": "docs/releases" } + ] + }, + { + "label": "Support", + "items": [ + { "label": "Troubleshooting", "slug": "docs/troubleshooting" }, + { "label": "Terms of Service", "slug": "docs/tos-privacy" } + ] + } +]