Files
codex-telegram-bot/schemas/v2/ExternalAgentConfigDetectParams.json
2026-06-23 11:20:03 +00:00

21 lines
505 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ExternalAgentConfigDetectParams",
"type": "object",
"properties": {
"cwds": {
"description": "Zero or more working directories to include for repo-scoped detection.",
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"includeHome": {
"description": "If true, include detection under the user's home directory.",
"type": "boolean"
}
}
}