Merge branch 'main' into cli-console-restart-on-port-mismatch

This commit is contained in:
Catriel Müller
2026-06-12 11:33:46 -03:00
committed by GitHub
86 changed files with 1379 additions and 779 deletions
+12
View File
@@ -209,6 +209,18 @@ export const Info = Schema.Struct({
description: "Automatically collapse reasoning blocks after the agent finishes writing them",
}),
indexing: Schema.optional(IndexingRef).annotate({ description: "Codebase indexing configuration" }),
console: Schema.optional(
Schema.Struct({
context_sidebar_width: Schema.optional(
Schema.Int.check(Schema.isBetween({ minimum: 250, maximum: 800 })).annotate({
description: "Width of the Kilo Console project context sidebar in pixels",
}),
),
diff_style: Schema.optional(Schema.Literals(["unified", "split"])).annotate({
description: "Default diff layout in Kilo Console project reviews",
}),
}),
).annotate({ description: "Kilo Console user interface configuration" }),
terminal_command_display: Schema.optional(Schema.Literals(["expanded", "collapsed"])).annotate({
description: "Controls whether terminal command blocks are expanded or collapsed by default in the VS Code chat UI",
}),