auto-labeling

This commit is contained in:
David Blass
2025-12-09 17:02:57 -05:00
parent 7ffd7297c3
commit 305fc9b0dd
7 changed files with 137 additions and 87 deletions
+15 -8
View File
@@ -149,8 +149,21 @@ export type PayloadEvent =
[key: string]: any;
};
export interface DispatchOptions {
/**
* Sandbox mode flag - when true, restricts agent to read-only operations
* (no Write, Web, or Bash access)
*/
readonly sandbox?: boolean;
/**
* When true, disables progress comment (no "leaping into action" comment, no report_progress tool)
*/
readonly disableProgressComment?: true;
}
// payload type for agent execution
export type Payload = {
export interface Payload extends DispatchOptions {
"~pullfrog": true;
/**
@@ -180,10 +193,4 @@ 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;
};
}