Documentation Index
Fetch the complete documentation index at: https://docs.snorbe.deskrex.ai/llms.txt
Use this file to discover all available pages before exploring further.
List Skills
Returns the custom skills installed (and/or enabled) in the workspace associated with your API key. Use this to surface agent-capable skills in your UI, or to let downstream clients decide whether a skill is available before orchestrating a run.API key authentication is required. Only skills in the API key’s workspace are returned, and internal identifiers such as
storagePath are never exposed.Request
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer snorbe_... API key |
The workspace is inferred from the API key. No query parameters or body required.
Response
Response fields
| Field | Type | Description |
|---|---|---|
id | string | Skill ID |
name | string | Skill display name |
description | string | Skill description |
enabled | boolean | Whether the skill is enabled in the workspace |
isOfficial | boolean | Whether the skill came from the Snorbe official catalog (e.g. installed via npx skills add deskrexai/snorbe) |
Examples
Error responses
| HTTP status | Code | Description |
|---|---|---|
| 401 | UNAUTHORIZED | API key missing, invalid, or expired |
| 429 | TOO_MANY_REQUESTS | Rate limit exceeded |