docs: promote KiloClaw to its own top-level docs section

Move KiloClaw docs from /automate/kiloclaw/* to /kiloclaw/* and add it
as a standalone nav entry in the top bar and side nav, adjacent to
Kilo Gateway. Adds permanent redirects for all old paths.
This commit is contained in:
Ligia Zanchet
2026-03-09 17:39:40 +01:00
parent 8072fb285b
commit ad81dd1dcd
13 changed files with 64 additions and 23 deletions
@@ -16,6 +16,7 @@ const sectionNavItems: SectionNav = {
contributing: Nav.ContributingNav,
"ai-providers": Nav.AiProvidersNav,
gateway: Nav.GatewayNav,
kiloclaw: Nav.KiloClawNav,
}
// Main nav items with their section keys
@@ -28,6 +29,7 @@ const mainNavItems = [
{ label: "Automate", href: "/automate", sectionKey: "automate" },
{ label: "Deploy & Secure", href: "/deploy-secure", sectionKey: "deploy-secure" },
{ label: "AI Gateway", href: "/gateway", sectionKey: "gateway" },
{ label: "KiloClaw", href: "/kiloclaw/overview", sectionKey: "kiloclaw" },
{ label: "Contributing", href: "/contributing", sectionKey: "contributing" },
]
+1
View File
@@ -31,6 +31,7 @@ const mainNavItems: NavItem[] = [
{ label: "Automate", href: "/automate" },
{ label: "Deploy & Secure", href: "/deploy-secure" },
{ label: "Kilo Gateway", href: "/gateway" },
{ label: "KiloClaw", href: "/kiloclaw/overview" },
{ label: "Contributing", href: "/contributing" },
]
-22
View File
@@ -16,28 +16,6 @@ export const AutomateNav: NavSection[] = [
],
},
{ href: "/automate/agent-manager", children: "Agent Manager" },
{
href: "/automate/kiloclaw/overview",
children: "KiloClaw",
subLinks: [
{ href: "/automate/kiloclaw/overview", children: "Overview" },
{ href: "/automate/kiloclaw/dashboard", children: "Dashboard" },
{
href: "/automate/kiloclaw/pre-installed-software",
children: "Pre-installed Software",
},
{ href: "/automate/kiloclaw/control-ui", children: "Control UI" },
{
href: "/automate/kiloclaw/chat-platforms",
children: "Chat Platforms",
},
{
href: "/automate/kiloclaw/troubleshooting",
children: "Troubleshooting",
},
{ href: "/automate/kiloclaw/pricing", children: "Pricing" },
],
},
],
},
{
+2
View File
@@ -7,6 +7,7 @@ import { CustomizeNav } from "./customize"
import { DeploySecureNav } from "./deploy-secure"
import { GatewayNav } from "./gateway"
import { GettingStartedNav } from "./getting-started"
import { KiloClawNav } from "./kiloclaw"
import { ToolsNav } from "./tools"
export const Nav = {
@@ -19,5 +20,6 @@ export const Nav = {
ContributingNav,
AiProvidersNav,
GatewayNav,
KiloClawNav,
ToolsNav,
}
+16
View File
@@ -0,0 +1,16 @@
import { NavSection } from "../types"
export const KiloClawNav: NavSection[] = [
{
title: "KiloClaw",
links: [
{ href: "/kiloclaw/overview", children: "Overview" },
{ href: "/kiloclaw/dashboard", children: "Dashboard" },
{ href: "/kiloclaw/pre-installed-software", children: "Pre-installed Software" },
{ href: "/kiloclaw/control-ui", children: "Control UI" },
{ href: "/kiloclaw/chat-platforms", children: "Chat Platforms" },
{ href: "/kiloclaw/troubleshooting", children: "Troubleshooting" },
{ href: "/kiloclaw/pricing", children: "Pricing" },
],
},
]
+43 -1
View File
@@ -1,7 +1,49 @@
module.exports = [
{
source: "/docs/automate/kiloclaw",
destination: "/docs/automate/kiloclaw/overview",
destination: "/docs/kiloclaw/overview",
basePath: false,
permanent: true,
},
{
source: "/docs/automate/kiloclaw/overview",
destination: "/docs/kiloclaw/overview",
basePath: false,
permanent: true,
},
{
source: "/docs/automate/kiloclaw/dashboard",
destination: "/docs/kiloclaw/dashboard",
basePath: false,
permanent: true,
},
{
source: "/docs/automate/kiloclaw/pre-installed-software",
destination: "/docs/kiloclaw/pre-installed-software",
basePath: false,
permanent: true,
},
{
source: "/docs/automate/kiloclaw/control-ui",
destination: "/docs/kiloclaw/control-ui",
basePath: false,
permanent: true,
},
{
source: "/docs/automate/kiloclaw/chat-platforms",
destination: "/docs/kiloclaw/chat-platforms",
basePath: false,
permanent: true,
},
{
source: "/docs/automate/kiloclaw/troubleshooting",
destination: "/docs/kiloclaw/troubleshooting",
basePath: false,
permanent: true,
},
{
source: "/docs/automate/kiloclaw/pricing",
destination: "/docs/kiloclaw/pricing",
basePath: false,
permanent: true,
},