Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8b367c5
feat: add kilo help --all command for full CLI reference in markdown …
maphew Feb 21, 2026
71669e6
the plan for implementing help --all cmd
maphew Feb 21, 2026
faecb4a
fix: address review — log catch block, document yargs version dependency
maphew Feb 21, 2026
469f893
feat: auto-generate CLI reference docs from help.ts
maphew Feb 21, 2026
81b1904
fix: address review — await rejects, gate options.all, sanitize cwd, …
maphew Feb 21, 2026
246ced8
fix: address review — skip undescribed commands, rename ambiguous var…
maphew Feb 22, 2026
0460b45
Merge remote-tracking branch 'origin/main' into feat/help-all-command
maphew Feb 26, 2026
c6c8e40
Merge upstream/main into feat/help-all-command; add DbCommand and Wor…
maphew Feb 27, 2026
594cc26
fix: remove invalid ResolveMessage import and fix cli-reference link …
maphew Feb 27, 2026
3a81e13
Merge branch 'main' into feat/help-all-command
maphew Feb 28, 2026
5a29c23
fix: address bot review concerns
maphew Feb 28, 2026
1e8de62
fix: remove empty openapi.json artifact, add DbCommand to test fixture
maphew Feb 28, 2026
7a72a65
chore: regenerate CLI docs to include kilo db command
maphew Feb 28, 2026
fe74b6b
chore: merge origin/main into feat/help-all-command, resolve conflict…
kilo-code-bot[bot] Apr 7, 2026
f9820ce
fix: add RemoteCommand to barrel, recursive subcommands, include $0 c…
kilo-code-bot[bot] Apr 7, 2026
dd53394
chore: mark auto-generated CLI reference docs as linguist-generated
kilo-code-bot[bot] Apr 7, 2026
ba7480d
docs: explain why commands.ts barrel exists
kilo-code-bot[bot] Apr 7, 2026
8fff17c
chore: remove specs files
kilo-code-bot[bot] Apr 7, 2026
44df3a0
refactor: move commands barrel to kilocode/, restore index.ts upstrea…
kilo-code-bot[bot] Apr 7, 2026
7901bb6
fix: minimize index.ts diff, remove spurious changes
kilo-code-bot[bot] Apr 7, 2026
a03a572
Merge remote-tracking branch 'origin/main' into feat/help-all-command
Apr 7, 2026
6690370
fix(cli): add completion command to commands array for help --all and…
Apr 7, 2026
37c63e0
fix(cli): drop explicit CommandModule type from commands array to fix…
Apr 7, 2026
89e61c6
fix(cli): disable built-in help command to allow kilo help --all to work
alex-alecu Apr 8, 2026
cf1a120
test(cli): add sync check for commands.ts vs index.ts
alex-alecu Apr 8, 2026
7ecc076
fix(cli): restore native --help for subcommands
alex-alecu Apr 8, 2026
a0a1ffa
Merge branch 'main' into feat/help-all-command
alex-alecu Apr 8, 2026
8327300
Merge remote-tracking branch 'origin/main' into feat/help-all-command
alex-alecu Apr 8, 2026
fb5d85e
fix(cli): make 'kilo help' show same output as 'kilo -h'
alex-alecu Apr 8, 2026
0697217
fix(cli): strengthen sync test and add missing ConfigCLICommand
alex-alecu Apr 8, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ packages/kilo-vscode/tests/**/*.png filter=lfs diff=lfs merge=lfs -text
**/i18n/parity.test.ts linguist-generated=false
packages/kilo-i18n/src/*.ts linguist-generated=true
packages/kilo-i18n/src/en.ts linguist-generated=false

# Auto-generated CLI reference docs
packages/kilo-docs/markdoc/partials/cli-commands-table.md linguist-generated=true
packages/kilo-docs/pages/code-with-ai/platforms/cli-reference.md linguist-generated=true
6 changes: 5 additions & 1 deletion packages/kilo-docs/lib/nav/code-with-ai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ export const CodeWithAiNav: NavSection[] = [
href: "/code-with-ai/platforms/jetbrains",
children: "JetBrains Extension",
},
{ href: "/code-with-ai/platforms/cli", children: "CLI" },
{
href: "/code-with-ai/platforms/cli",
children: "CLI",
subLinks: [{ href: "/code-with-ai/platforms/cli-reference", children: "Command Reference" }],
},
{ href: "/code-with-ai/platforms/cloud-agent", children: "Cloud Agent" },
{ href: "/code-with-ai/platforms/mobile", children: "Mobile Apps" },
{ href: "/code-with-ai/platforms/slack", children: "Slack" },
Expand Down
25 changes: 25 additions & 0 deletions packages/kilo-docs/markdoc/partials/cli-commands-table.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading