Implement sandbox mode

This commit is contained in:
Colin McDonnell
2025-12-04 00:15:57 -08:00
parent a8edd603c5
commit 6e337407a7
10 changed files with 176 additions and 107 deletions
+6
View File
@@ -172,4 +172,10 @@ export type Payload = {
readonly comment_id?: number | null;
readonly issue_id?: number | null;
readonly pr_id?: number | null;
/**
* Sandbox mode flag - when true, restricts agent to read-only operations
* (no Write, Web, or Bash access)
*/
readonly sandbox?: boolean;
};