feat: update remote control harness

Co-authored-by: Codex noreply@openai.com
This commit is contained in:
viyatb-oai
2026-04-16 10:42:36 -07:00
parent d22974712f
commit e80542dd98
46 changed files with 1185 additions and 721 deletions

View File

@@ -0,0 +1,22 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"RemoteControlApprovalDecision": {
"enum": [
"approve",
"deny"
],
"type": "string"
}
},
"properties": {
"decision": {
"$ref": "#/definitions/RemoteControlApprovalDecision"
}
},
"required": [
"decision"
],
"title": "RemoteControlApprovalConfirmResponse",
"type": "object"
}