Claude Platform Docs

스킬

스킬 생성
POST/v1/skills
스킬 목록 조회
GET/v1/skills
스킬 조회
GET/v1/skills/{skill_id}
스킬 삭제
DELETE/v1/skills/{skill_id}
Models
BetaDeletedSkill 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
BetaSkill object{ id, created_at, display_name, 4 more }
BetaSkillSource 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}/content
스킬 버전 조회
GET/v1/skills/{skill_id}/versions/{version}
스킬 버전 삭제
DELETE/v1/skills/{skill_id}/versions/{version}