Skip to content

스킬 목록 Tier 3

GET/api/skillsCopied!

API 키가 사용할 수 있는 워크스페이스 스킬과 YouViCo 관리형 스킬을 반환합니다.

Pro 플랜 필요

Skill Registry는 Pro 플랜 이상부터 사용할 수 있습니다.

예시

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."
    }
  ]
}

요청

없음

응답

200 OK를 반환합니다.

dataarray
스킬 목록
data[].idstring
스킬 ID

Example: SK1234567890ABCD

data[].sourcestring
스킬 소스

Possible values: WORKSPACEYOUVICO_MANAGED

Example: WORKSPACE

data[].namestring
스킬 이름

Example: Review Helper

data[].descriptionstring
스킬 설명

Example: Summarizes review context.