{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LLMSkillFileEdit", "title": "LLMSkillFileEdit", "type": "object", "properties": { "path": { "type": "string", "description": "Path of the bundled file to edit. Must match an existing file on the current skill version.", "maxLength": 500 }, "edits": { "type": "array", "items": { "$ref": "#/components/schemas/LLMSkillEditOperation" }, "description": "Sequential find/replace operations to apply to this file's content." } }, "required": [ "edits", "path" ] }