blob: 742902e2abb93ad623d5a7881b9d9441f40033b5 (
plain) (
blame)
1
2
3
4
5
6
7
|
-- Add red team configuration to contracts
ALTER TABLE contracts
ADD COLUMN red_team_enabled BOOLEAN NOT NULL DEFAULT FALSE,
ADD COLUMN red_team_prompt TEXT;
COMMENT ON COLUMN contracts.red_team_enabled IS 'Whether to spawn a red team task to monitor work tasks';
COMMENT ON COLUMN contracts.red_team_prompt IS 'Custom criteria for the red team to evaluate';
|