sidebars.ts 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"
  2. const sidebars: SidebarsConfig = {
  3. tutorialSidebar: [
  4. "index",
  5. {
  6. type: "category",
  7. label: "Getting Started",
  8. items: [
  9. "getting-started/installing",
  10. "getting-started/concepts",
  11. {
  12. type: "doc",
  13. id: "getting-started/setting-up",
  14. label: "Setup",
  15. },
  16. "getting-started/your-first-task",
  17. ],
  18. },
  19. {
  20. type: "category",
  21. label: "Using Kilo Code",
  22. items: [
  23. "basic-usage/the-chat-interface",
  24. "basic-usage/model-selection-guide",
  25. "basic-usage/using-modes",
  26. {
  27. type: "category",
  28. label: "Autocomplete",
  29. link: {
  30. type: "doc",
  31. id: "basic-usage/autocomplete/index",
  32. },
  33. items: ["basic-usage/autocomplete/mistral-setup"],
  34. },
  35. "basic-usage/context-mentions",
  36. {
  37. type: "category",
  38. label: "Basic Features",
  39. items: [
  40. "basic-usage/orchestrator-mode",
  41. "basic-usage/task-todo-list",
  42. "basic-usage/git-commit-generation",
  43. "features/browser-use",
  44. "features/code-actions",
  45. "features/system-notifications",
  46. "features/more-features",
  47. ],
  48. },
  49. {
  50. type: "category",
  51. label: "AI Model Providers",
  52. items: [
  53. "basic-usage/connecting-providers",
  54. "getting-started/connecting-api-provider",
  55. "features/api-configuration-profiles",
  56. "providers/kilocode",
  57. {
  58. type: "category",
  59. label: "Other Providers",
  60. items: [
  61. "providers/anthropic",
  62. "providers/bedrock",
  63. "providers/cerebras", // kilocode_change
  64. "providers/openai-chatgpt-plus-pro", // kilocode_change
  65. "providers/chutes-ai",
  66. "providers/claude-code",
  67. "providers/deepseek",
  68. "providers/fireworks",
  69. "providers/gemini",
  70. "providers/glama",
  71. "providers/groq",
  72. "providers/human-relay",
  73. "providers/inception", // kilocode_change
  74. "providers/lmstudio",
  75. "providers/minimax", // kilocode_change (M2 model update)
  76. "providers/mistral",
  77. "providers/moonshot", // kilocode_change
  78. "providers/ollama",
  79. "providers/openai",
  80. "providers/openai-compatible",
  81. "providers/openrouter",
  82. "providers/ovhcloud", // kilocode_change
  83. "providers/requesty",
  84. "providers/synthetic", // kilocode_change
  85. "providers/unbound",
  86. "providers/v0",
  87. "providers/vercel-ai-gateway",
  88. "providers/vertex",
  89. "providers/virtual-quota-fallback",
  90. "providers/vscode-lm",
  91. "providers/xai",
  92. ],
  93. },
  94. ],
  95. },
  96. "basic-usage/byok",
  97. "basic-usage/adding-credits",
  98. "basic-usage/settings-management",
  99. ],
  100. },
  101. {
  102. type: "category",
  103. label: "Core Concepts",
  104. items: [
  105. "features/auto-approving-actions",
  106. "features/suggested-responses",
  107. "basic-usage/how-tools-work",
  108. "features/enhance-prompt",
  109. "features/checkpoints",
  110. "tips-and-tricks",
  111. ],
  112. },
  113. {
  114. type: "category",
  115. label: "Kilo Paid Plans",
  116. items: [
  117. "plans/about",
  118. "plans/getting-started",
  119. "plans/dashboard",
  120. "plans/analytics",
  121. {
  122. type: "category",
  123. label: "AI Adoption Dashboard",
  124. items: [
  125. "plans/adoption-dashboard/overview",
  126. "plans/adoption-dashboard/understanding-your-score",
  127. "plans/adoption-dashboard/improving-your-score",
  128. "plans/adoption-dashboard/for-team-leads",
  129. ],
  130. },
  131. "plans/team-management",
  132. "plans/custom-modes",
  133. "plans/billing",
  134. {
  135. type: "category",
  136. label: "Enterprise-Only Features",
  137. items: ["plans/enterprise/SSO", "plans/enterprise/model-access", "plans/enterprise/audit-logs"],
  138. },
  139. "plans/migration",
  140. ],
  141. },
  142. {
  143. type: "category",
  144. label: "Agent Behavior",
  145. items: [
  146. "agent-behavior/prompt-engineering",
  147. "agent-behavior/agents-md",
  148. "agent-behavior/custom-modes",
  149. "agent-behavior/custom-rules",
  150. "agent-behavior/custom-instructions",
  151. "agent-behavior/workflows",
  152. "agent-behavior/skills",
  153. ],
  154. },
  155. {
  156. type: "category",
  157. label: "Advanced Usage",
  158. items: [
  159. "advanced-usage/migrating-from-cursor-windsurf",
  160. {
  161. type: "category",
  162. label: "Advanced Context Features",
  163. items: [
  164. "advanced-usage/memory-bank",
  165. "features/codebase-indexing",
  166. "advanced-usage/large-projects",
  167. ],
  168. },
  169. {
  170. type: "category",
  171. label: "Advanced AI Features",
  172. items: [
  173. "features/fast-edits",
  174. "features/model-temperature",
  175. "advanced-usage/rate-limits-costs",
  176. "advanced-usage/free-and-budget-models",
  177. "features/footgun-prompting",
  178. ],
  179. },
  180. "features/auto-launch-configuration",
  181. "advanced-usage/auto-cleanup",
  182. "advanced-usage/integrations",
  183. "advanced-usage/appbuilder",
  184. "advanced-usage/cloud-agent",
  185. "advanced-usage/code-reviews",
  186. "advanced-usage/deploy",
  187. "advanced-usage/managed-indexing",
  188. "advanced-usage/agent-manager",
  189. "advanced-usage/sessions",
  190. "features/experimental/experimental-features",
  191. ],
  192. },
  193. {
  194. type: "category",
  195. label: "Extending Kilo Code",
  196. items: [
  197. "advanced-usage/local-models",
  198. {
  199. type: "category",
  200. label: "Model Context Protocol (MCP)",
  201. items: [
  202. "features/mcp/overview",
  203. "features/mcp/using-mcp-in-kilo-code",
  204. "features/mcp/using-mcp-in-cli",
  205. "features/mcp/what-is-mcp",
  206. "features/mcp/server-transports",
  207. "features/mcp/mcp-vs-api",
  208. ],
  209. },
  210. "features/shell-integration",
  211. ],
  212. },
  213. {
  214. type: "category",
  215. label: "Contributing",
  216. items: [
  217. "contributing/index",
  218. "contributing/development-environment",
  219. {
  220. type: "category",
  221. label: "Architecture",
  222. items: [
  223. {
  224. type: "doc",
  225. id: "contributing/architecture/index",
  226. label: "Overview",
  227. },
  228. "contributing/architecture/annual-billing",
  229. "contributing/architecture/enterprise-mcp-controls",
  230. "contributing/architecture/onboarding-engagement-improvements",
  231. "contributing/architecture/organization-modes-library",
  232. "contributing/architecture/security-reviews",
  233. "contributing/architecture/track-repo-url",
  234. "contributing/architecture/vercel-ai-gateway",
  235. "contributing/architecture/voice-transcription",
  236. "contributing/architecture/model-o11y",
  237. ],
  238. },
  239. ],
  240. },
  241. {
  242. type: "category",
  243. label: "Tools Reference",
  244. items: [
  245. "features/tools/tool-use-overview",
  246. "features/tools/access-mcp-resource",
  247. "features/tools/apply-diff",
  248. "features/tools/ask-followup-question",
  249. "features/tools/attempt-completion",
  250. "features/tools/browser-action",
  251. "features/tools/delete-file",
  252. "features/tools/execute-command",
  253. "features/tools/list-code-definition-names",
  254. "features/tools/list-files",
  255. "features/tools/new-task",
  256. "features/tools/read-file",
  257. "features/tools/search-files",
  258. "features/tools/switch-mode",
  259. "features/tools/update-todo-list",
  260. "features/tools/use-mcp-tool",
  261. "features/tools/write-to-file",
  262. ],
  263. },
  264. "cli",
  265. "slack",
  266. ],
  267. }
  268. export default sidebars