mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 16:04:06 +00:00
feat: add raw session args/opts for agent passthrough
This commit is contained in:
parent
375d73e4cb
commit
2f26f76d9b
14 changed files with 365 additions and 37 deletions
|
|
@ -669,7 +669,9 @@
|
|||
"mcpTools",
|
||||
"streamingDeltas",
|
||||
"itemStarted",
|
||||
"sharedProcess"
|
||||
"sharedProcess",
|
||||
"rawSessionArgs",
|
||||
"rawSessionOptions"
|
||||
],
|
||||
"properties": {
|
||||
"commandExecution": {
|
||||
|
|
@ -702,6 +704,14 @@
|
|||
"questions": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"rawSessionArgs": {
|
||||
"type": "boolean",
|
||||
"description": "Whether this agent supports raw CLI arguments passed at session creation"
|
||||
},
|
||||
"rawSessionOptions": {
|
||||
"type": "boolean",
|
||||
"description": "Whether this agent supports raw options passed at session creation"
|
||||
},
|
||||
"reasoning": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
|
@ -1074,6 +1084,20 @@
|
|||
"variant": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"rawSessionArgs": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"nullable": true,
|
||||
"description": "Raw CLI arguments to pass to the agent (for CLI-based agents like Claude, OpenCode, Amp)"
|
||||
},
|
||||
"rawSessionOptions": {
|
||||
"type": "object",
|
||||
"additionalProperties": true,
|
||||
"nullable": true,
|
||||
"description": "Raw options to pass to the agent (for long-running server agents like Codex)"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue