Skills API¶
| Method | Endpoint | Description |
|---|---|---|
POST |
/api/skills |
Create skill |
GET |
/api/skills |
List skills |
GET |
/api/skills/{id} |
Get skill |
PUT |
/api/skills/{id} |
Update skill |
DELETE |
/api/skills/{id} |
Delete skill |
Create Skill¶
{
"name": "rca-format",
"description": "Structures output as a Root Cause Analysis report",
"instructions": "Structure your final output as an RCA report with sections: Summary, Timeline, Root Cause, Impact, Remediation, Prevention.",
"tags": ["incident", "reporting"]
}
Response: 201 Created
List Skills¶
Response: 200 OK — Array of skill objects.
Get Skill¶
Response: 200 OK — Single skill object.
Update Skill¶
Response: 200 OK
Delete Skill¶
Response: 204 No Content