{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LLMSkillFileInput", "title": "LLMSkillFileInput", "type": "object", "properties": { "path": { "type": "string", "description": "File path relative to skill root, e.g. 'scripts/setup.sh' or 'references/guide.md'.", "maxLength": 500 }, "content": { "type": "string", "description": "Text content of the file." }, "content_type": { "type": "string", "default": "text/plain", "description": "MIME type of the file content.", "maxLength": 100 } }, "required": [ "content", "path" ] }