Skip to content
Open
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: 0 additions & 4 deletions apps/web/src/app/config.json/extras.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,6 @@ export const kiloExtras = {
notebook_execute: { $ref: '#/$defs/PermissionRuleConfig' },
},
experimental: {
codebase_search: {
description: 'Enable AI-powered codebase search',
type: 'boolean',
},
agent_requirements: {
description:
'Require declared agent skills, MCPs, and VS Code extensions before VS Code prompts can run',
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/tests/cli-config-schema.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ describe('kilo config.json schema merge', () => {
expect(permissionObject.properties.read).toBeDefined();
});

test('adds kilo experimental keys without dropping upstream', () => {
test('merges kilo experimental keys without restoring retired keys', () => {
const exp = props.experimental as { properties: Record<string, unknown> };
expect(exp.properties.codebase_search).toBeDefined();
expect(exp.properties.codebase_search).toBeUndefined();
expect(exp.properties.agent_requirements).toEqual(expect.objectContaining({ type: 'boolean' }));
expect(exp.properties.native_notebook_tools).toEqual(
expect.objectContaining({ type: 'boolean' })
Expand Down