Skip to content

Commit a6e16e8

Browse files
mrubensroomote
andauthored
Prevent completion with open todos (#5716)
Co-authored-by: Roo Code <[email protected]>
1 parent 38d8edf commit a6e16e8

File tree

24 files changed

+532
-1
lines changed

24 files changed

+532
-1
lines changed

packages/types/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roo-code/types",
3-
"version": "1.34.0",
3+
"version": "1.35.0",
44
"description": "TypeScript type definitions for Roo Code.",
55
"publishConfig": {
66
"access": "public",

packages/types/src/global-settings.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export const globalSettingsSchema = z.object({
5151
allowedCommands: z.array(z.string()).optional(),
5252
deniedCommands: z.array(z.string()).optional(),
5353
commandExecutionTimeout: z.number().optional(),
54+
preventCompletionWithOpenTodos: z.boolean().optional(),
5455
allowedMaxRequests: z.number().nullish(),
5556
autoCondenseContext: z.boolean().optional(),
5657
autoCondenseContextPercent: z.number().optional(),
@@ -202,6 +203,7 @@ export const EVALS_SETTINGS: RooCodeSettings = {
202203
followupAutoApproveTimeoutMs: 0,
203204
allowedCommands: ["*"],
204205
commandExecutionTimeout: 30_000,
206+
preventCompletionWithOpenTodos: false,
205207

206208
browserToolEnabled: false,
207209
browserViewportSize: "900x600",

0 commit comments

Comments
 (0)