// Some code
{
"handle": "get-skills",
"state": "inDev",
"meta": {
"short": "Get Skills",
"description": "Retrieves a list of available skills from the Claude API."
},
"input": [
{
"name": "apiKey",
"type": "String",
"required": true,
"meta": {
"description": "The API key for authenticating with the Claude API."
}
}
],
"output": [
{
"name": "skills",
"type": "Array",
"selector": ["skills"],
"meta": {
"description": "List of available skills."
}
}
],
"steps": [
{
"type": "http",
"http": {
"method": "GET",
"path": "/v1/skills",
"headers": {
"Content-Type": "application/json"
}
}
}
]
}