Aider · Schema

ShellResult

ShellResult schema from Aider CLI

AIAI Pair ProgrammingDeveloper ToolsCLICommand LineCoding AssistantCode GenerationOpen SourcePythonApache 2.0LLMGitBYO LLMTerminalPolyglotTree SitterRepository MapPair Programming

Properties

Name Type Description
exit_code integer Process exit code.
stdout string
stderr string
View JSON Schema on GitHub

JSON Schema

aider-cli-shell-result-schema.json Raw ↑
{
  "$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": ""
    }
  }
}