This commit is contained in:
celia-oai
2026-03-07 21:20:56 -08:00
parent 3b5fe5ca35
commit f02aa1da93
32 changed files with 304 additions and 4 deletions

View File

@@ -4995,6 +4995,17 @@
"null"
]
},
"skill_metadata": {
"anyOf": [
{
"$ref": "#/definitions/ExecApprovalRequestSkillMetadata"
},
{
"type": "null"
}
],
"description": "Optional skill metadata when the approval was triggered by a skill script."
},
"turn_id": {
"default": "",
"description": "Turn ID that this command belongs to. Uses `#[serde(default)]` for backwards compatibility.",
@@ -6572,6 +6583,17 @@
],
"title": "EventMsg"
},
"ExecApprovalRequestSkillMetadata": {
"properties": {
"path_to_skills_md": {
"type": "string"
}
},
"required": [
"path_to_skills_md"
],
"type": "object"
},
"ExecCommandSource": {
"enum": [
"agent",
@@ -15326,4 +15348,4 @@
},
"title": "CodexAppServerProtocolV2",
"type": "object"
}
}