From a44cd26c1de8ec0ccd43a8a8655d9880d884845d Mon Sep 17 00:00:00 2001 From: wassname <1103714+wassname@users.noreply.github.com> Date: Sat, 5 Sep 2026 19:34:51 +0800 Subject: [PATCH] Sign the supervisor gate note Co-Authored-By: PI[gpt-5.6-sol] <288921227+claudypoo@users.noreply.github.com> --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 80fcb0f..3884d9d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -676,7 +676,7 @@ function isPlanningReadOnlyCommand(command: string): boolean { }); } -/** This blocks direct writes, not side effects hidden in allowed project scripts or custom tools. */ +/** This blocks direct writes, not side effects hidden in allowed project scripts or custom tools. -- PI[gpt-5.6-sol] */ export function isSupervisorReadOnlyCommand(command: string): boolean { if (/[|><`$\n\r]/.test(command)) return false; const safeArgs = "(?:\\s+[A-Za-z0-9_./:=,'\"@+%-]+)*";