mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
Add command summary metadata for exec command lifecycle
This commit is contained in:
@@ -2921,6 +2921,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"
|
||||
},
|
||||
"Config": {
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
@@ -10776,6 +10793,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"
|
||||
|
||||
Reference in New Issue
Block a user