SKILL.md viewer, show an image, or let a user download a reference file.encoding:encoding: utf-8 — the file is text and content is the raw UTF-8 string..md, .py, .json, etc.encoding: base64 — the file is binary and content is base64-encoded.skill_id: The Ejento id of the skill to read from.file_path: File path relative to the skill root. Supports nested paths like references/notes.md.200 OK with { file_path, content, encoding, content_type, size }.404 file_not_found — the file doesn't exist in this skill.404 skill_not_found — no skill with this id exists.400 — the file_path contains unsafe segments (.., absolute paths, etc.).curl --location --globoff 'https:///skills-service/api/v2/skills//files/' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer '{
"data": {
"content": "---\nname: my-skill\ndescription: ...\n---\n\n# My Skill\n",
"content_type": "text/markdown",
"encoding": "utf-8",
"file_path": "SKILL.md",
"size": 128
},
"message": "OK",
"success": true
}