Merge branch 'main' into cli-console-restart-on-port-mismatch
This commit is contained in:
@@ -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",
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user