{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/aider/refs/heads/main/json-structure/aider-cli-shell-request-structure.json", "name": "ShellRequest", "description": "ShellRequest schema from Aider CLI", "type": "object", "properties": { "command": { "type": "string", "description": "Shell command line to execute in the repo root.", "example": "pytest -x tests/" }, "add_output_to_chat": { "type": "boolean", "description": "Whether the command's stdout/stderr is appended to chat context.", "default": true, "example": true } }, "required": [ "command" ] }