Aider · Schema

FileListing

FileListing schema from Aider CLI

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

Properties

Name Type Description
in_chat array Files currently included in the chat session.
known array All files visible to the repository map.
View JSON Schema on GitHub

JSON Schema

aider-cli-file-listing-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-file-listing-schema.json",
  "title": "FileListing",
  "description": "FileListing schema from Aider CLI",
  "type": "object",
  "properties": {
    "in_chat": {
      "type": "array",
      "description": "Files currently included in the chat session.",
      "items": {
        "type": "string",
        "example": "src/main.py"
      },
      "example": [
        "src/main.py",
        "tests/test_main.py"
      ]
    },
    "known": {
      "type": "array",
      "description": "All files visible to the repository map.",
      "items": {
        "type": "string",
        "example": "src/util.py"
      },
      "example": [
        "src/util.py",
        "src/io.py"
      ]
    }
  }
}