Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 apps/web/src/app/config.json/extras.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ export const kiloExtras = {
description: 'Enable AI-powered codebase search',
type: 'boolean',
},
native_notebook_tools: {
description: 'Enable native tools for reading, editing, and executing VS Code notebooks',
type: 'boolean',
},
openTelemetry: {
description: 'Enable telemetry. Set to false to opt-out.',
default: true,
Expand Down
3 changes: 3 additions & 0 deletions apps/web/src/tests/cli-config-schema.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ describe('kilo config.json schema merge', () => {
test('adds kilo experimental keys without dropping upstream', () => {
const exp = props.experimental as { properties: Record<string, unknown> };
expect(exp.properties.codebase_search).toBeDefined();
expect(exp.properties.native_notebook_tools).toEqual(
expect.objectContaining({ type: 'boolean' })
);
expect(exp.properties.openTelemetry).toBeDefined();
expect(exp.properties.batch_tool).toBeDefined(); // upstream key preserved
});
Expand Down