Claude Platform Docs

Skills

Create Skill
skills.create(SkillCreateParams**kwargs) -> Skill
POST/v1/skills
List Skills
skills.list(SkillListParams**kwargs) -> SyncPageCursor[Skill]
GET/v1/skills
Get Skill
skills.retrieve(strskill_id) -> Skill
GET/v1/skills/{skill_id}
Delete Skill
skills.delete(strskill_id) -> DeletedSkill
DELETE/v1/skills/{skill_id}
Models
class DeletedSkill:
id: str

Unique identifier for the skill.

The format and length of IDs may change over time.

type: Literal["skill_deleted"]

Deleted object type.

For Skills, this is always "skill_deleted".

defaultskill_deleted
class Skill:
id: str

Unique identifier for the skill.

The format and length of IDs may change over time.

created_at: datetime

ISO 8601 timestamp of when the skill was created.

formatdate-time
display_name: str

Human-readable, single-line label for the Skill. Maximum 255 characters. Always set: derived from the SKILL.md frontmatter name when omitted at creation. Not unique.

latest_version_id: str

ID of the newest Skill Version — what latest references resolve to. Always set: a Skill holds at least one version.

source: SkillSource

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
type: Literal["custom", "anthropic", "anthropic_example", "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"
type: Literal["skill"]

Object type.

For Skills, this is always "skill".

defaultskill
updated_at: datetime

ISO 8601 timestamp of when the skill was last updated.

formatdate-time
class SkillSource:
type: Literal["custom", "anthropic", "anthropic_example", "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"

SkillsVersions

Create Skill Version
skills.versions.create(strskill_id, VersionCreateParams**kwargs) -> SkillVersion
POST/v1/skills/{skill_id}/versions
List Skill Versions
skills.versions.list(strskill_id, VersionListParams**kwargs) -> SyncPageCursor[SkillVersion]
GET/v1/skills/{skill_id}/versions
Get Skill Version
skills.versions.retrieve(strversion, VersionRetrieveParams**kwargs) -> SkillVersion
GET/v1/skills/{skill_id}/versions/{version}
Delete Skill Version
skills.versions.delete(strversion, VersionDeleteParams**kwargs) -> DeletedSkillVersion
DELETE/v1/skills/{skill_id}/versions/{version}