| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"
- const sidebars: SidebarsConfig = {
- tutorialSidebar: [
- "index",
- {
- type: "category",
- label: "Getting Started",
- items: [
- "getting-started/installing",
- "getting-started/concepts",
- {
- type: "doc",
- id: "getting-started/setting-up",
- label: "Setup",
- },
- "getting-started/your-first-task",
- ],
- },
- {
- type: "category",
- label: "Using Kilo Code",
- items: [
- "basic-usage/the-chat-interface",
- "basic-usage/model-selection-guide",
- "basic-usage/using-modes",
- "basic-usage/autocomplete",
- "basic-usage/context-mentions",
- {
- type: "category",
- label: "Basic Features",
- items: [
- "basic-usage/orchestrator-mode",
- "basic-usage/task-todo-list",
- "basic-usage/git-commit-generation",
- "features/browser-use",
- "features/code-actions",
- "features/system-notifications",
- "features/more-features",
- ],
- },
- {
- type: "category",
- label: "AI Model Providers",
- items: [
- "basic-usage/connecting-providers",
- "getting-started/connecting-api-provider",
- "features/api-configuration-profiles",
- "providers/kilocode",
- {
- type: "category",
- label: "Other Providers",
- items: [
- "providers/anthropic",
- "providers/bedrock",
- "providers/chutes-ai",
- "providers/claude-code",
- "providers/deepseek",
- "providers/fireworks",
- "providers/vertex",
- "providers/glama",
- "providers/gemini",
- "providers/groq",
- "providers/human-relay",
- "providers/lmstudio",
- "providers/mistral",
- "providers/ollama",
- "providers/openai",
- "providers/openai-compatible",
- "providers/openrouter",
- "providers/requesty",
- "providers/unbound",
- "providers/v0",
- "providers/vercel-ai-gateway",
- "providers/virtual-quota-fallback",
- "providers/vscode-lm",
- "providers/xai",
- ],
- },
- ],
- },
- "basic-usage/adding-tokens",
- ],
- },
- {
- type: "category",
- label: "Core Concepts",
- items: [
- "features/auto-approving-actions",
- "features/suggested-responses",
- "basic-usage/how-tools-work",
- "features/enhance-prompt",
- "features/checkpoints",
- "tips-and-tricks",
- ],
- },
- {
- type: "category",
- label: "Kilo for Teams",
- items: [
- "teams/getting-started",
- "teams/roles-permissions",
- "teams/dashboard",
- "teams/team-management",
- "teams/billing",
- "teams/analytics",
- "teams/migration",
- ],
- },
- {
- type: "category",
- label: "Advanced Usage",
- items: [
- "advanced-usage/prompt-engineering",
- {
- type: "category",
- label: "Customizing Kilo Code",
- items: [
- "advanced-usage/custom-rules",
- "advanced-usage/custom-instructions",
- "features/slash-commands/workflows",
- ],
- },
- {
- type: "category",
- label: "Advanced Context Features",
- items: [
- "advanced-usage/memory-bank",
- "features/codebase-indexing",
- "advanced-usage/large-projects",
- ],
- },
- {
- type: "category",
- label: "Advanced AI Features",
- items: [
- "features/fast-edits",
- "features/model-temperature",
- "advanced-usage/rate-limits-costs",
- "advanced-usage/free-and-budget-models",
- "features/footgun-prompting",
- ],
- },
- "features/experimental/experimental-features",
- ],
- },
- {
- type: "category",
- label: "Customization",
- items: ["features/settings-management", "features/custom-modes"],
- },
- {
- type: "category",
- label: "Extending Kilo Code",
- items: [
- "advanced-usage/local-models",
- {
- type: "category",
- label: "Model Context Protocol (MCP)",
- items: [
- "features/mcp/overview",
- "features/mcp/using-mcp-in-kilo-code",
- "features/mcp/what-is-mcp",
- "features/mcp/server-transports",
- "features/mcp/mcp-vs-api",
- ],
- },
- "features/shell-integration",
- "extending/contributing-to-kilo",
- "extending/development-environment",
- ],
- },
- {
- type: "category",
- label: "Tools Reference",
- items: [
- "features/tools/tool-use-overview",
- "features/tools/access-mcp-resource",
- "features/tools/apply-diff",
- "features/tools/ask-followup-question",
- "features/tools/attempt-completion",
- "features/tools/browser-action",
- "features/tools/execute-command",
- "features/tools/list-code-definition-names",
- "features/tools/list-files",
- "features/tools/new-task",
- "features/tools/read-file",
- "features/tools/search-files",
- "features/tools/switch-mode",
- "features/tools/update-todo-list",
- "features/tools/use-mcp-tool",
- "features/tools/write-to-file",
- ],
- },
- ],
- }
- export default sidebars
|