Files
kilocode/packages/kilo-docs/lib/nav/tools.ts
T
Josh Holmer f74d54c431 feat: implement codebase indexing (#6966)
* feat(core): implement codebase indexing

* feat(core): gate indexing behind experimental flag

* fix: improvements to slow provider startups and indexing init blocking the world

* test(cli): stabilize indexing startup tests

* test(cli): avoid indexing startup hang

* test(cli): avoid CI startup leaks

* test(cli): annotate provider test change

* fix(indexing): tighten dependency surface

* refactor(cli): move indexing logic into kilocode paths

* test(cli): skip flaky shell cancel prompt cases

* fix(cli): tolerate slow Windows worktree cleanup

* fix(vscode): authenticate indexing status fetch

---------

Co-authored-by: Marius <marius@kilocode.ai>
2026-04-27 17:43:27 +02:00

52 lines
1.8 KiB
TypeScript

import { NavSection } from "../types"
export const ToolsNav: NavSection[] = [
{
title: "Tools",
links: [{ href: "/automate/tools", children: "Overview" }],
},
{
title: "Read Tools",
links: [
{ href: "/automate/tools/read-file", children: "read_file" },
{ href: "/automate/tools/search-files", children: "search_files" },
{ href: "/automate/tools/list-files", children: "list_files" },
{ href: "/automate/tools/list-code-definition-names", children: "list_code_definition_names" },
{ href: "/automate/tools/semantic-search", children: "semantic_search" },
],
},
{
title: "Edit Tools",
links: [
{ href: "/automate/tools/apply-diff", children: "apply_diff" },
{ href: "/automate/tools/delete-file", children: "delete_file" },
{ href: "/automate/tools/write-to-file", children: "write_to_file" },
],
},
{
title: "Browser Tools",
links: [{ href: "/automate/tools/browser-action", children: "browser_action" }],
},
{
title: "Command Tools",
links: [{ href: "/automate/tools/execute-command", children: "execute_command" }],
},
{
title: "MCP Tools",
links: [
{ href: "/automate/tools/use-mcp-tool", children: "use_mcp_tool" },
{ href: "/automate/tools/access-mcp-resource", children: "access_mcp_resource" },
],
},
{
title: "Workflow Tools",
links: [
{ href: "/automate/tools/switch-mode", children: "switch_mode" },
{ href: "/automate/tools/new-task", children: "new_task" },
{ href: "/automate/tools/ask-followup-question", children: "ask_followup_question" },
{ href: "/automate/tools/attempt-completion", children: "attempt_completion" },
{ href: "/automate/tools/update-todo-list", children: "update_todo_list" },
],
},
]