{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/aider/refs/heads/main/json-schema/aider-cli-shell-result-schema.json", "title": "ShellResult", "description": "ShellResult schema from Aider CLI", "type": "object", "properties": { "exit_code": { "type": "integer", "description": "Process exit code.", "example": 0 }, "stdout": { "type": "string", "example": "12 passed in 1.42s" }, "stderr": { "type": "string", "example": "" } } }