Add command summary metadata for exec command lifecycle

This commit is contained in:
Francis Chalissery
2026-04-09 17:30:16 -07:00
parent a44645129a
commit be22c4072c
40 changed files with 696 additions and 30 deletions

View File

@@ -396,6 +396,23 @@
],
"type": "string"
},
"CommandSummary": {
"properties": {
"past": {
"description": "Past-tense prose summary, for example \"Pulled most recent code\".",
"type": "string"
},
"present": {
"description": "Present-tense prose summary, for example \"Pulling most recent code\".",
"type": "string"
}
},
"required": [
"past",
"present"
],
"type": "object"
},
"DynamicToolCallOutputContentItem": {
"oneOf": [
{
@@ -1321,6 +1338,17 @@
},
"type": "array"
},
"commandSummary": {
"anyOf": [
{
"$ref": "#/definitions/CommandSummary"
},
{
"type": "null"
}
],
"description": "Optional short prose summaries for non-technical surfaces."
},
"cwd": {
"description": "The command's working directory.",
"type": "string"