Commit Graph

65 Commits

Author SHA1 Message Date
Alex Gold 63df2b7930 docs(kilo-docs): rewrite kiloclaw suggested-configuration as full setup walkthrough 2026-04-01 09:40:02 -04:00
kiloconnect[bot] 1d4d3f3a0c chore: merge origin/main into docs/mcp-shell-tabs, resolve conflicts 2026-03-30 16:53:09 +00:00
kiloconnect[bot] 2b57ce7c11 chore: merge origin/main into docs/customize-tabs, resolve conflicts 2026-03-30 15:43:14 +00:00
kiloconnect[bot] 0482fd0f57 docs: remove cline-to-kilo-migration page and add redirect 2026-03-30 13:56:56 +00:00
Mark IJbema 585b198eba Merge remote-tracking branch 'origin/main' into docs/kiloclaw-1password-integration 2026-03-30 15:31:28 +02:00
Josh Lambert 60c048e99a Merge remote-tracking branch 'origin/main' into docs/customize-tabs 2026-03-27 15:25:23 -04:00
Josh Lambert 742b2cffa5 merge: resolve conflict with main in setup-authentication.md
Accept main's tab structure (VSCode/CLI/Legacy) which supersedes
our kiloCodeIcon fix (the infra PR already fixed the markdoc tag).
2026-03-27 14:37:19 -04:00
Josh Lambert c44e53d994 docs(kilo-docs): address review feedback — rename to agents, rewrite orchestrator, fix content
- Rename using-modes.md → using-agents.md with redirect and all internal
  link updates (12 references across 8 files)
- Reframe orchestrator-mode.md as migration page: orchestrator is no longer
  needed since all agents now support subagents natively
- Rewrite using-agents.md: flip callout to lead with agents, add specific
  keyboard shortcuts (Cmd+., Tab, Ctrl+X a)
- chat-interface.md: drop duplicate Suggested Responses tabs into shared
  content with collapsed Legacy callout, add keyboard shortcuts to Tips,
  apply wording fixes (TUI acronym, action buttons, CLI context)
- context-mentions.md: update VSCode tab to document @-mention autocomplete
  support, rewrite editor context in natural language with Code Actions
- model-selection.md: add in-chat model selector and precedence chain
- Fix smart quotes in custom-modes-org.md
- Update nav: Modes → Agents
2026-03-26 14:46:43 -04:00
Ligia Zanchet 560b0a13ad docs: add overview index pages for Tools, Chat Platforms, and Development Tools 2026-03-26 15:41:02 +01:00
Ligia Zanchet cd02ad416d docs: restructure KiloClaw nav with nested sub-pages
- Split tools.mdx → tools/{1password,brave-search,agentcard}.md
- Split chat-platforms.md → chat-platforms/{telegram,discord,slack}.md
- Split control-ui.md → control-ui/{overview,changing-models,exec-approvals,version-pinning}.md
- Split troubleshooting.md → troubleshooting/{common-questions,gateway-process,architecture}.md
- Add faq/{general,pricing}.md as new top-level FAQ section
- Update lib/nav/kiloclaw.ts with subLinks for all nested sections
- Remove standalone Version Pinning and Pricing nav entries
- Fix 1Password section: rewrite as step-by-step guide
- Fix Brave Search: remove incorrect free tier mention
2026-03-25 17:20:39 +01:00
kiloconnect[bot] 60d2a8e198 fix(kilo-docs): move KiloClaw tools page to correct directory and add nav entry
Move docs/kiloclaw/tools.md to packages/kilo-docs/pages/kiloclaw/tools.mdx
where published docs are sourced from, add frontmatter, and register the
Tools page in the KiloClaw navigation config.
2026-03-25 12:47:03 +00:00
Josh Lambert 373bbf84f2 docs(kilo-docs): add platform tabs infrastructure and getting-started pages
Combines infrastructure (PR 1) and getting-started content (PR 2)
into a single reviewable PR.

Infrastructure:
- Platform type (legacy/new/all) in NavLink interface
- PageVersionSwitcher banner for legacy-only and new-only pages
- PlatformBadge component in SideNav with Legacy/New labels
- Tabs hydration fix (SSR-safe useState + useEffect)
- _app.tsx reads frontmatter.platform and renders banner

Getting Started pages with tab content:
- quickstart.md: Auth flow, kilo run --auto, config overview
- setup-authentication.md: Tabbed auth flows per platform
- settings/index.md: Config locations, precedence, export/import
- auto-approving-actions.md: Per-tool permission system

Platform markers:
- settings/auto-cleanup.md: platform: legacy (frontmatter + nav)
- settings/system-notifications.md: platform: legacy (frontmatter + nav)

Fixes from code validation and PR review:
- Remove false Variable Substitution section (does not exist)
- Replace misleading provider env config format
- Fix 'most tools prompt for approval' (default is mostly allow)
- Add warning about secrets in kilo.json for version control
- Fix experimental features tab referencing VSCode instead of Legacy
2026-03-25 02:16:14 -04:00
Josh Lambert 8304cf44dc docs(kilo-docs): add platform tabs to MCP and shell integration pages
Add VSCode (Pre-release) and CLI tabs to 3 automate pages:

- mcp/using-in-kilo-code.md: Tabbed config tables, CLI commands (including
  logout and debug), transport types, troubleshooting
- extending/shell-integration.md: Platform-specific shell integration
- automate/index.md: Fix stale link to deleted using-in-cli page

MCP timeout correctly shown as 30000ms (verified against
mcp/index.ts:29 DEFAULT_TIMEOUT = 30_000).

Part of the docs platform tabs effort (PR 7 of 8).
Depends on #7497 for infrastructure.
2026-03-24 23:25:51 -04:00
Josh Lambert f1b606a23c docs(kilo-docs): add platform tabs to customize pages
Add VSCode (Pre-release) and CLI tabs to 7 customize pages:

- custom-modes.md: Agents system, .md frontmatter format, config file format,
  examples, migration, troubleshooting (massive - 597 lines added)
- custom-rules.md: .kilo/rules/ directory, instructions config key
- custom-instructions.md: Tabbed instruction methods per platform
- agents-md.md: Updated for new agent file format
- skills.md: SKILL.md files, skill loading from .kilo/skills/
- context/kilocodeignore.md: Tabbed ignore file configuration
- context/context-condensing.md: Tabbed context management

Critical fix applied:
- Permission YAML format corrected from action-as-key (allow: '*.md')
  to pattern-as-key ('*.md': 'allow') matching the actual config schema
  in config.ts:713 (PermissionObject = z.record(string, PermissionAction))

Part of the docs platform tabs effort (PR 5 of 8).
Depends on #7497 for infrastructure.
2026-03-24 10:55:13 -04:00
Josh Lambert 181e3a24f8 docs(kilo-docs): add platform tabs infrastructure
Add the foundation for platform-specific documentation:

- Platform type (legacy/new/all) in NavLink interface
- PageVersionSwitcher banner for legacy-only and new-only pages
- PlatformBadge component in SideNav with Legacy/New labels
- Tabs hydration fix (SSR-safe useState + useEffect)
- _app.tsx reads frontmatter.platform and renders banner

No content changes — frontmatter markers and nav tags will be
added in their respective section PRs.
2026-03-24 08:37:12 -04:00
kiloconnect[bot] 290cec3ade docs(kilo-docs): add Google Workspace integration page to KiloClaw docs
Document the ghcr.io/kilo-org/google-setup container setup flow for
connecting Google accounts to KiloClaw, covering prerequisites, the
interactive setup steps, supported Google APIs, security details, and
usage examples.
2026-03-16 23:56:13 +00:00
St0rmz1 066ff6cb1a docs(kiloclaw): add GitHub integration page and nav entry 2026-03-13 11:08:06 -07:00
kiloconnect[bot] e4558d8073 Remove references to deleted vercel-ai-gateway architecture doc 2026-03-11 19:06:03 +00:00
Emilie Lima Schario 76dc128e41 Merge branch 'main' into Kiloclawdocs-update 2026-03-10 19:21:01 -04:00
Ligia Zanchet 027892afaf docs: update KiloClaw docs and add version pinning page
- Add version-pinning.md with full content (pinning, variants, clearing)
- Add version-pinning to kiloclaw nav sidebar
- Update overview, dashboard, chat-platforms, pre-installed-software, pricing pages
- Update create-instance and instance-dashboard images
2026-03-10 22:21:46 +01:00
kiloconnect[bot] 2c7ed9461c docs(kilo-docs): remove model-provider-blocklist doc and nav item
remove deprecated model-provider-blocklist page and nav item
update enterprise model-access-controls doc content
add redirect from old docs path to new enterprise path
2026-03-10 14:20:58 +00:00
Ligia Zanchet ad81dd1dcd 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.
2026-03-09 17:39:40 +01:00
Joshua Lambert e14629265f Merge pull request #6712 from Kilo-Org/docs/custom-subagents
docs: add custom subagents configuration page
2026-03-08 18:00:39 -04:00
kilo-code-bot[bot] 14e6272691 docs: add KiloClaw pre-installed software reference (#6720)
* docs: add KiloClaw pre-installed software reference page

Document all default system utilities, language runtimes, package
managers, and CLI tools that ship in the KiloClaw Docker image.
Helps users know what's available out of the box without inspecting
the container.

* fix(docs): correct KiloClaw pre-installed software to match Dockerfile

* fix(docs): add bun to package managers, clarify pinned vs unpinned versions

* fix(docs): remove OpenClaw from pre-installed software listing

---------

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>
Co-authored-by: syn <syn@neonronin.sh>
2026-03-06 15:33:12 -06:00
kiloconnect[bot] 3127f2812d docs: add custom subagents configuration page to CLI documentation 2026-03-06 17:03:00 +00:00
Brendan O'Leary 214088a327 Detailed updates to the KiloClaw docs (#6366)
* Move to multiple pages for KiloClaw

* Add a lot more details about how it all works

* Update packages/kilo-docs/pages/automate/kiloclaw/control-ui.md

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>

* Update packages/kilo-docs/pages/automate/kiloclaw/overview.md

Co-authored-by: Florian Hines <florian@kilocode.ai>

* Update packages/kilo-docs/pages/automate/kiloclaw/overview.md

Co-authored-by: Florian Hines <florian@kilocode.ai>

* Update packages/kilo-docs/pages/automate/kiloclaw/overview.md

Co-authored-by: Florian Hines <florian@kilocode.ai>

* Update packages/kilo-docs/pages/automate/kiloclaw/control-ui.md

Co-authored-by: Florian Hines <florian@kilocode.ai>

* Update packages/kilo-docs/pages/automate/kiloclaw/troubleshooting.md

Co-authored-by: Florian Hines <florian@kilocode.ai>

* Control UI update warning

* Add beta note

* Updated a few other values

---------

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>
Co-authored-by: Florian Hines <florian@kilocode.ai>
2026-02-26 15:34:09 +00:00
Josh Lambert 89baf26dd4 First draft 2026-02-23 09:00:40 -05:00
maphew 2ac737ceba fix(docs): remove broken sidebar nav links for annual-billing and memory-bank
Fixes #545
2026-02-20 23:32:10 -07:00
kilo-maintainer[bot] 74b3afaacb chore: generate 2026-02-19 12:51:37 +00:00
Jean du Plessis 8009ffe801 fix: replace stale docusaurus files with current next.js/markdoc docs
git filter-repo incorrectly resolved a merge commit where the docs app
was migrated from Docusaurus to Next.js + Markdoc, resulting in the old
Docusaurus files at HEAD. This commit overlays the correct current files
from the source repo (kilo-org/kilocode main branch).

Package renamed from kilocode-docs to @kilocode/kilo-docs.
2026-02-18 20:16:07 +02:00
Jean du Plessis 97691b178f Merge pull request #5982 from Kilo-Org/docs/faq-section-and-config-path-fix
docs: add FAQ section with sub-pages and fix config path
2026-02-18 18:28:44 +02:00
Jean du Plessis 464c6406f9 Merge pull request #5930 from Kilo-Org/session/agent_fb2666c8-83df-49a4-9854-50849b559e61 2026-02-18 17:50:56 +02:00
Jean du Plessis 2807a37008 Merge pull request #5971 from Kilo-Org/jl-blocklist-proposal 2026-02-18 17:46:49 +02:00
Ligia Zanchet e6e17378dd docs: add FAQ section with sub-pages and fix config path
- Replace flat faq.md with faq/ directory containing sub-pages:
  - General, Setup and Installation, Credits and Billing,
    Account and Integration, Known Issues
- Update getting-started nav with FAQ subLinks
- Fix config path from ~/.kilocode/config.json to ~/.config/kilo/config.json
  in using-kilo-for-free.md
- Add credits-environment-selector.png image for FAQ
2026-02-18 15:36:41 +01:00
dennismeister93 ed531f401d Update apps/kilocode-docs/lib/nav/automate.ts
Co-authored-by: Marian Alexandru Alecu <a.marian.alexandru@gmail.com>
2026-02-18 14:04:56 +01:00
Dennis Meister e051ed2842 Update code reviewer docs for platforms 2026-02-18 12:15:35 +01:00
Josh Lambert b090c87817 Add proposal for blocklist 2026-02-18 00:49:28 -05:00
Joshua Lambert fec866c2b8 Merge pull request #5949 from Kilo-Org/docs/benchmarking-design
Initial draft of benchmarking design
2026-02-17 17:06:04 -05:00
Ligia Zanchet 160882345e Add Ecosystem link to contributing navigation 2026-02-17 22:40:58 +01:00
Josh Lambert d2a8f26fd1 Fix nav 2026-02-17 16:40:10 -05:00
kiloconnect[bot] 042d7caa76 docs: add 'Using Kilo Docs with Agents' page 2026-02-17 19:41:28 +00:00
Alex Gold 78c5381681 Merge branch 'main' into docs/troubleshooting 2026-02-17 11:27:39 -05:00
Alex Gold c1f167e9f2 Clean up troubleshooting rom top-level nav 2026-02-17 11:09:13 -05:00
Alex Gold 1b43a79890 Move troubleshooting under help nav 2026-02-16 18:01:45 -05:00
Alex Gold afe85f918e Create troubleshooting section 2026-02-16 17:09:58 -05:00
Brendan O'Leary c0efe5f2f2 Add prelim KiloClaw docs (#5881)
* Add preli KiloClaw docs

* 🦀

* Add in what you cando with OpenClaw

* Update apps/kilocode-docs/pages/automate/kiloclaw.md

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>

* Update apps/kilocode-docs/pages/automate/kiloclaw.md

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>

* Update apps/kilocode-docs/pages/automate/kiloclaw.md

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>

* Apply suggestion from @kiloconnect[bot]

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>

* Apply suggestion from @kiloconnect[bot]

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>

* Update apps/kilocode-docs/pages/automate/kiloclaw.md

---------

Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>
2026-02-16 16:36:43 -05:00
Temitayo Samuel Oluwalade 5383568856 docs: add Context Condensing documentation (#5605)
* docs: add Context Condensing documentation

Fixes #2159

Added documentation for the "Intelligent Context Condensing" feature.

This documentation covers:
- Overview of context condensing and why it's needed
- How context window limits affect conversations
- How the condensing feature works (automatic and manual triggering)
- Configuration options for condensing
- Best practices for using context condensing effectively
- Troubleshooting common issues
- Links to related features (Memory Bank, Large Projects, Codebase Indexing)

* docs: add context condensing to navigation

* docs: fix context condensing markdown structure
2026-02-13 19:05:59 -05:00
John Fawcett 463cd42461 docs(kilocode-docs): add comprehensive AI Gateway documentation
Add a new documentation section for the Kilo AI Gateway, including
overview, quickstart, authentication, models, streaming, and API
reference.
2026-02-12 08:59:04 -06:00
kiloconnect[bot] fff32c7aa3 docs: add 'Using Kilo for Free' documentation page
Add a new documentation page covering:
- Free models available through Kilo Gateway and OpenRouter
- Free autocomplete setup with Mistral Codestral
- CLI background tasks (session titles, context summarization)
- Graceful degradation when credits aren't available
2026-02-07 13:06:12 +00:00
Joshua Lambert 5b2d68d952 Merge pull request #5663 from Kilo-Org/jl-add-auto-mode-docs
Add auto model docs
2026-02-05 06:54:12 -05:00