This commit is contained in:
2026-08-24 08:11:59 -07:00
commit 53df0eed10
275 changed files with 133056 additions and 0 deletions
@@ -0,0 +1,27 @@
{
"title": "Bounded isolated engineering patch",
"type": "object",
"additionalProperties": false,
"properties": {
"summary": {"type": "string", "minLength": 1},
"changes": {"type": "array", "items": {"type": "string"}, "maxItems": 50},
"files": {"type": "array", "items": {"type": "string"}, "maxItems": 50, "uniqueItems": true},
"commands": {
"type": "array",
"maxItems": 30,
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"command": {"type": "string", "minLength": 1},
"exit_code": {"type": "integer"},
"observation": {"type": "string", "minLength": 1}
},
"required": ["command", "exit_code", "observation"]
}
},
"risks": {"type": "array", "items": {"type": "string"}, "maxItems": 30},
"blockers": {"type": "array", "items": {"type": "string"}, "maxItems": 30}
},
"required": ["summary", "changes", "files", "commands", "risks", "blockers"]
}