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.