Deletes a skill.
Hard delete — the skill is removed from the tenant and detached from any agents that referenced it. There is no soft-delete or undo; re-create via `POST` if you need it back. Returns 404 if the ID does not exist or names a built-in skill.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The unique identifier of the skill to delete.
The tenant identifier
Response Body
curl -X DELETE "https://api.fruxon.com/v1/tenants/string/skills/string"{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Lists all skills available in the workspace, including built-in and custom skills.
Returns every skill visible to the tenant — built-in skills shipped with Fruxon plus skills the tenant has authored or imported. Use the returned skill IDs when configuring an agent's allowed skill set; agents activate skills mid-conversation by matching the user request against the skill's description.
Fetches a file from GitHub and generates a skill definition from it.
Combines the GitHub fetch and skill generation into a single call. Returns a draft skill definition for review — does not create the skill.