Quellcode durchsuchen

Merge branch 'main' into jl-remove-logo-text-when-sessions

Joshua Lambert vor 2 Wochen
Ursprung
Commit
817426a3da
21 geänderte Dateien mit 28 neuen und 21 gelöschten Zeilen
  1. 4 4
      apps/kilocode-docs/pages/automate/mcp/overview.md
  2. 1 1
      apps/kilocode-docs/pages/automate/mcp/server-transports.md
  3. 2 2
      apps/kilocode-docs/pages/automate/mcp/using-in-kilo-code.md
  4. 4 4
      apps/kilocode-docs/pages/automate/mcp/what-is-mcp.md
  5. 1 1
      apps/kilocode-docs/pages/code-with-ai/agents/free-and-budget-models.md
  6. 3 3
      apps/kilocode-docs/pages/code-with-ai/features/autocomplete/mistral-setup.md
  7. 1 1
      apps/kilocode-docs/pages/code-with-ai/features/browser-use.md
  8. 1 0
      apps/kilocode-docs/pages/code-with-ai/platforms/cloud-agent.md
  9. 1 1
      apps/kilocode-docs/pages/contributing/cline-to-kilo-migration.md
  10. 2 2
      apps/kilocode-docs/pages/contributing/index.md
  11. 1 1
      apps/kilocode-docs/pages/customize/workflows.md
  12. 1 1
      apps/kilocode-docs/pages/getting-started/faq.md
  13. 6 0
      apps/kilocode-docs/previous-docs-redirects.js
  14. BIN
      apps/kilocode-docs/public/img/browser-use/KiloCodeBrowser.png
  15. BIN
      apps/kilocode-docs/public/img/enterprise-mcp-controls-org-user-install.png
  16. BIN
      apps/kilocode-docs/public/img/enterprise-mcp-controls-today.png
  17. BIN
      apps/kilocode-docs/public/img/enterprise-mcp-controls-with-ent-control.png
  18. BIN
      apps/kilocode-docs/public/img/organization-modes-library-1.png
  19. BIN
      apps/kilocode-docs/public/img/organization-modes-library-2.png
  20. BIN
      apps/kilocode-docs/public/img/track-repo-url-system-design.png
  21. BIN
      apps/kilocode-docs/public/img/voice-transcription-architecture.png

+ 4 - 4
apps/kilocode-docs/pages/automate/mcp/overview.md

@@ -11,13 +11,13 @@ The Model Context Protocol (MCP) is a standard for extending Kilo Code's capabil
 
 This documentation is organized into several sections:
 
-- [**Using MCP in Kilo Code**](/docs/features/mcp/using-mcp-in-kilo-code) - Comprehensive guide to configuring, enabling, and managing MCP servers with Kilo Code. Includes server settings, tool approval, and troubleshooting.
+- [**Using MCP in Kilo Code**](using-in-kilo-code) - Comprehensive guide to configuring, enabling, and managing MCP servers with Kilo Code. Includes server settings, tool approval, and troubleshooting.
 
-- [**What is MCP?**](/docs/features/mcp/what-is-mcp) - Clear explanation of the Model Context Protocol, its client-server architecture, and how it enables AI systems to interact with external tools.
+- [**What is MCP?**](what-is-mcp) - Clear explanation of the Model Context Protocol, its client-server architecture, and how it enables AI systems to interact with external tools.
 
-- [**STDIO & SSE Transports**](/docs/features/mcp/server-transports) - Detailed comparison of local (STDIO) and remote (SSE) transport mechanisms with deployment considerations for each approach.
+- [**STDIO & SSE Transports**](server-transports) - Detailed comparison of local (STDIO) and remote (SSE) transport mechanisms with deployment considerations for each approach.
 
-- [**MCP vs API**](/docs/features/mcp/mcp-vs-api) - Analysis of the fundamental distinction between MCP and REST APIs, explaining how they operate at different layers of abstraction for AI systems.
+- [**MCP vs API**](mcp-vs-api) - Analysis of the fundamental distinction between MCP and REST APIs, explaining how they operate at different layers of abstraction for AI systems.
 
 ## Contributing to the Marketplace
 

+ 1 - 1
apps/kilocode-docs/pages/automate/mcp/server-transports.md

@@ -196,4 +196,4 @@ Some scenarios benefit from a hybrid approach:
 
 ## Configuring Transports in Kilo Code
 
-For detailed information on configuring STDIO and SSE transports in Kilo Code, including example configurations, see the [Understanding Transport Types](/docs/features/mcp/using-mcp-in-kilo-code#understanding-transport-types) section in the Using MCP in Kilo Code guide.
+For detailed information on configuring STDIO and SSE transports in Kilo Code, including example configurations, see the [Understanding Transport Types](using-in-kilo-code#understanding-transport-types) section in the Using MCP in Kilo Code guide.

+ 2 - 2
apps/kilocode-docs/pages/automate/mcp/using-in-kilo-code.md

@@ -65,7 +65,7 @@ Used for local servers running on your machine:
 - Simpler setup (no HTTP server needed)
 - Runs as a child process on your machine
 
-For more in-depth information about how STDIO transport works, see [STDIO Transport](/docs/features/mcp/server-transports#stdio-transport).
+For more in-depth information about how STDIO transport works, see [STDIO Transport](server-transports#stdio-transport).
 
 STDIO configuration example:
 
@@ -124,7 +124,7 @@ Used for remote servers accessed over HTTP/HTTPS:
 - Requires network access
 - Allows centralized deployment and management
 
-For more in-depth information about how SSE transport works, see [SSE Transport](/docs/features/mcp/server-transports#sse-transport).
+For more in-depth information about how SSE transport works, see [SSE Transport](server-transports#sse-transport).
 
 SSE configuration example:
 

+ 4 - 4
apps/kilocode-docs/pages/automate/mcp/what-is-mcp.md

@@ -43,7 +43,7 @@ MCP provides a standardized way for AI systems to interact with external tools a
 
 Ready to dig deeper? Check out these guides:
 
-- [MCP Overview](/docs/features/mcp/overview) - A quick glance at the MCP documentation structure
-- [Using MCP in Kilo Code](/docs/features/mcp/using-mcp-in-kilo-code) - Get started with MCP in Kilo Code, including creating simple servers
-- [MCP vs API](/docs/features/mcp/mcp-vs-api) - Technical advantages compared to traditional APIs
-- [STDIO & SSE Transports](/docs/features/mcp/server-transports) - Local vs. hosted deployment models
+- [MCP Overview](overview) - A quick glance at the MCP documentation structure
+- [Using MCP in Kilo Code](using-in-kilo-code) - Get started with MCP in Kilo Code, including creating simple servers
+- [MCP vs API](mcp-vs-api) - Technical advantages compared to traditional APIs
+- [STDIO & SSE Transports](server-transports) - Local vs. hosted deployment models

+ 1 - 1
apps/kilocode-docs/pages/code-with-ai/agents/free-and-budget-models.md

@@ -221,7 +221,7 @@ When you need more capability than free models provide, these options deliver ex
 
 **Reduce system prompt size:**
 
-- [Disable MCP](/docs/features/mcp/using-mcp-in-kilo-code) if not using external tools
+- [Disable MCP](/docs/automate/mcp/using-in-kilo-code) if not using external tools
 - Use focused custom modes
 - Minimize unnecessary context
 

+ 3 - 3
apps/kilocode-docs/pages/code-with-ai/features/autocomplete/mistral-setup.md

@@ -76,6 +76,6 @@ Click **Save** to apply your Mistral configuration. You're now ready to use free
 
 ## Next Steps
 
-- Learn more about [Autocomplete features](./index.md)
-- Explore [triggering options](./index.md#triggering-options) for autocomplete
-- Check out [best practices](./index.md#best-practices) for optimal results
+- Learn more about [Autocomplete features](/docs/code-with-ai/features/autocomplete)
+- Explore [triggering options](/docs/code-with-ai/features/autocomplete#triggering-options) for autocomplete
+- Check out [best practices](/docs/code-with-ai/features/autocomplete#best-practices) for optimal results

+ 1 - 1
apps/kilocode-docs/pages/code-with-ai/features/browser-use.md

@@ -45,7 +45,7 @@ Can you check if my website at https://kilocode.ai is displaying correctly?
 Browse http://localhost:3000, scroll down to the bottom of the page and check if the footer information is displaying correctly.
 ```
 
-{% image src="/docs/features/KiloCodeBrowser.png" alt="Browser use example" width="300" /%}
+{% image src="/docs/img/browser-use/KiloCodeBrowser.png" alt="Browser use example" width="300" /%}
 
 ## How Browser Actions Work
 

+ 1 - 0
apps/kilocode-docs/pages/code-with-ai/platforms/cloud-agent.md

@@ -39,6 +39,7 @@ Your work is always pushed to GitHub, ensuring nothing is lost.
 ## How Cloud Agents Work
 
 - Each user receives an **isolated Linux container** with common dev tools preinstalled (Node.js, git, gh CLI, glab CLI, etc.).
+- Python is not included in the base image, but `apt` is available so you can install it or other packages as needed.
 - All Cloud Agent chats share a **single container instance**, while each session gets its own workspace directory.
 - When a session begins:
 

+ 1 - 1
apps/kilocode-docs/pages/contributing/cline-to-kilo-migration.md

@@ -159,7 +159,7 @@ Beyond the workflow changes, Kilo has expanded significantly as a platform. As a
 - **Platform features:** Sessions, Parallel Agents, Deploy, Code Reviews, Managed Indexing
 - **Kilo Marketplace:** A community-driven repository where you can contribute Skills (modular workflows), MCP Servers (tool integrations), and Modes (custom agent behaviors)
 
-Check the [Architecture Overview](/contributing/architecture) to understand how these pieces fit together.
+Check the [Architecture Overview](architecture) to understand how these pieces fit together.
 
 ## Getting Help
 

+ 2 - 2
apps/kilocode-docs/pages/contributing/index.md

@@ -88,7 +88,7 @@ The [Kilo Marketplace](https://github.com/Kilo-Org/kilo-marketplace) is a commun
 
 To contribute:
 
-1. Follow the documentation for [Custom Modes](/docs/customize/custom-modes), [Skills](/docs/customize/skills), or [MCP Servers](/docs/features/mcp/overview) to create your resource
+1. Follow the documentation for [Custom Modes](/docs/customize/custom-modes), [Skills](/docs/customize/skills), or [MCP Servers](/docs/automate/mcp/overview) to create your resource
 
 2. Test your contribution thoroughly
 
@@ -106,7 +106,7 @@ Documentation improvements are highly valued contributions:
 
     - Use clear, concise language
     - Include examples where appropriate
-    - Use absolute paths starting from `/docs/` for internal links
+    - Use absolute paths starting from `/docs/` for internal links (except within the same directory)
     - Don't include `.md` extensions in links
 
 2. Test your documentation changes by running the docs site locally:

+ 1 - 1
apps/kilocode-docs/pages/customize/workflows.md

@@ -28,7 +28,7 @@ Workflows can leverage:
 
 - [Built-in tools](/docs/features/tools/tool-use-overview): [`read_file()`](/docs/features/tools/read-file), [`search_files()`](/docs/features/tools/search-files), [`execute_command()`](/docs/features/tools/execute-command)
 - CLI tools: `gh`, `docker`, `npm`, custom scripts
-- [MCP integrations](/docs/features/mcp/overview): Slack, databases, APIs
+- [MCP integrations](/docs/automate/mcp/overview): Slack, databases, APIs
 - [Mode switching](/docs/code-with-ai/agents/using-modes): [`new_task()`](/docs/features/tools/new-task) for specialized contexts
 
 ## Common Workflow Patterns

+ 1 - 1
apps/kilocode-docs/pages/getting-started/faq.md

@@ -177,7 +177,7 @@ Yes, if you use a [local model](/docs/advanced-usage/local-models).
 
 ### What is MCP (Model Context Protocol)?
 
-[MCP](/docs/features/mcp/overview) is a protocol that allows Kilo Code to communicate with external servers, extending its capabilities with custom tools and resources.
+[MCP](/docs/automate/mcp/overview) is a protocol that allows Kilo Code to communicate with external servers, extending its capabilities with custom tools and resources.
 
 ### Can I create my own MCP servers?
 

+ 6 - 0
apps/kilocode-docs/previous-docs-redirects.js

@@ -72,6 +72,12 @@ module.exports = [
 		basePath: false,
 		permanent: true,
 	},
+	{
+		source: "/docs/advanced-usage/slackbot",
+		destination: "/docs/code-with-ai/platforms/slack",
+		basePath: false,
+		permanent: true,
+	},
 	{
 		source: "/docs/slack",
 		destination: "/docs/code-with-ai/platforms/slack",

BIN
apps/kilocode-docs/public/img/browser-use/KiloCodeBrowser.png


BIN
apps/kilocode-docs/public/img/enterprise-mcp-controls-org-user-install.png


BIN
apps/kilocode-docs/public/img/enterprise-mcp-controls-today.png


BIN
apps/kilocode-docs/public/img/enterprise-mcp-controls-with-ent-control.png


BIN
apps/kilocode-docs/public/img/organization-modes-library-1.png


BIN
apps/kilocode-docs/public/img/organization-modes-library-2.png


BIN
apps/kilocode-docs/public/img/track-repo-url-system-design.png


BIN
apps/kilocode-docs/public/img/voice-transcription-architecture.png