Update skills/list protocol readme (#9623)

Updates readme example for `skills/list` to reflect latest response
spec.
This commit is contained in:
Gav Verma
2026-01-21 12:51:51 -08:00
committed by GitHub
parent 68b8381723
commit 2e06d61339

View File

@@ -504,7 +504,19 @@ Use `skills/list` to fetch the available skills (optionally scoped by `cwds`, wi
"data": [{
"cwd": "/Users/me/project",
"skills": [
{ "name": "skill-creator", "description": "Create or update a Codex skill", "enabled": true }
{
"name": "skill-creator",
"description": "Create or update a Codex skill",
"enabled": true,
"interface": {
"displayName": "Skill Creator",
"shortDescription": "Create or update a Codex skill",
"iconSmall": "icon.svg",
"iconLarge": "icon-large.svg",
"brandColor": "#111111",
"defaultPrompt": "Add a new skill for triaging flaky CI."
}
}
],
"errors": []
}]