mirror of
https://github.com/openai/codex.git
synced 2026-04-25 15:15:15 +00:00
18 lines
603 B
JSON
18 lines
603 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"command": {
|
|
"description": "Shell command string evaluated by the thread's configured shell. Unlike `command/exec`, this intentionally preserves shell syntax such as pipes, redirects, and quoting. This matches legacy TUI `!` behavior and runs unsandboxed with full access rather than inheriting the thread sandbox policy.",
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"command",
|
|
"threadId"
|
|
],
|
|
"title": "ThreadShellCommandParams",
|
|
"type": "object"
|
|
} |