diff options
Diffstat (limited to 'makima/frontend/src/lib/api.ts')
| -rw-r--r-- | makima/frontend/src/lib/api.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/makima/frontend/src/lib/api.ts b/makima/frontend/src/lib/api.ts index 4390b20..bd172e8 100644 --- a/makima/frontend/src/lib/api.ts +++ b/makima/frontend/src/lib/api.ts @@ -1679,6 +1679,8 @@ export interface ContractSummary { supervisorTaskId: string | null; /** When true, tasks won't auto-push or create PRs - use patch files instead */ localOnly: boolean; + /** Whether red team monitoring is enabled */ + redTeamEnabled?: boolean; fileCount: number; taskCount: number; repositoryCount: number; @@ -1738,6 +1740,10 @@ export interface CreateContractRequest { initialPhase?: ContractPhase; /** When true, tasks won't auto-push or create PRs - use patch files instead */ localOnly?: boolean; + /** Enable red team monitoring for this contract */ + redTeamEnabled?: boolean; + /** Custom review criteria for the red team */ + redTeamPrompt?: string; } export interface UpdateContractRequest { |
