From 7c5b173838e63bdf708d3c8bc961ee3d8033dc70 Mon Sep 17 00:00:00 2001 From: John Stearns Date: Tue, 5 Nov 2024 12:51:38 -0800 Subject: [PATCH] Adding 'list' to the auto-execute command allow-list --- src/core/Cline.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/Cline.ts b/src/core/Cline.ts index 5da6f51..ececd92 100644 --- a/src/core/Cline.ts +++ b/src/core/Cline.ts @@ -62,7 +62,8 @@ const ALLOWED_AUTO_EXECUTE_COMMANDS = [ 'npx', 'tsc', 'git log', - 'git diff' + 'git diff', + 'list' ] as const export class Cline {