Claude Platform Docs

スキル

スキルを作成
POST/v1/skills
スキルの一覧
GET/v1/skills
スキルを取得
GET/v1/skills/{skill_id}
スキルを削除
DELETE/v1/skills/{skill_id}
Models
DeletedSkill object{ id, type }
id: string

Unique identifier for the skill.

The format and length of IDs may change over time.

type: "skill_deleted"

Deleted object type.

For Skills, this is always "skill_deleted".

defaultskill_deleted
Skill object{ id, created_at, display_name, 4 more }
SkillSource object{ type }
type: "custom" or "anthropic" or "anthropic_example" or "plugin"

Where the Skill comes from.

Possible values:

  • "custom": authored by the platform user; private to their workspace
  • "anthropic": published by Anthropic; shared and read-only
  • "anthropic_example": Anthropic-published sample Skill
  • "plugin": resolved from an installed plugin
One of the following:
"custom"
"anthropic"
"anthropic_example"
"plugin"

スキルバージョン

スキルバージョンを作成
POST/v1/skills/{skill_id}/versions
スキルバージョンの一覧
GET/v1/skills/{skill_id}/versions
スキルバージョンを取得
GET/v1/skills/{skill_id}/versions/{version}
スキルバージョンを削除
DELETE/v1/skills/{skill_id}/versions/{version}