Claude Platform Docs

Delete Skill

$ ant beta:skills delete
DELETE/v1/skills/{skill_id}

Delete Skill

Parameters
--skill-id: string

Unique identifier for the skill.

The format and length of IDs may change over time.

--beta: optional array of AnthropicBeta

Optional header to specify the beta version(s) you want to use.

Returns
BetaSkillDeleteResponse: object{ id, type }
id: string

Unique identifier for the skill.

The format and length of IDs may change over time.

type: string

Deleted object type.

For Skills, this is always "skill_deleted".

Delete Skill

ant beta:skills delete \
  --api-key my-anthropic-api-key \
  --skill-id skill_id
{
  "id": "skill_01JAbcdefghijklmnopqrstuvw",
  "type": "type"
}
Returns Examples
{
  "id": "skill_01JAbcdefghijklmnopqrstuvw",
  "type": "type"
}