Skip to content

List Skills Tier 3

GET/api/skillsCopied!

Returns workspace skills and YouViCo-managed skills available to the API key.

Pro plan required

Skill Registry is available on the Pro plan and higher.

Example

ts
const skills = await client.skills.list();
bash
youvico skill list
bash
curl 'https://api.youvico.com/api/skills' \
  -H 'Authorization: Bearer YOUR_API_KEY'
json
{
  "data": [
    {
      "id": "SK1234567890ABCD",
      "source": "WORKSPACE",
      "name": "Review Helper",
      "description": "Summarizes review context."
    }
  ]
}

Request

None

Response

Returns 200 OK.

dataarray
Skill list
data[].idstring
Skill ID

Example: SK1234567890ABCD

data[].sourcestring
Skill source

Possible values: WORKSPACEYOUVICO_MANAGED

Example: WORKSPACE

data[].namestring
Skill name

Example: Review Helper

data[].descriptionstring
Skill description

Example: Summarizes review context.