Claude Platform Docs

Habilidades

Crear Skill
$ ant beta:skills create
POST/v1/skills
Listar Skills
$ ant beta:skills list
GET/v1/skills
Obtener Skill
$ ant beta:skills retrieve
GET/v1/skills/{skill_id}
Eliminar Skill
$ ant beta:skills delete
DELETE/v1/skills/{skill_id}
Models
beta_deleted_skill: 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".

beta_skill: object{ id, created_at, display_name, 4 more }
beta_skill_source: 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"

HabilidadesVersiones

Crear versión de Skill
$ ant beta:skills:versions create
POST/v1/skills/{skill_id}/versions
Listar versiones de Skill
$ ant beta:skills:versions list
GET/v1/skills/{skill_id}/versions
Descargar contenido de versión de skill
$ ant beta:skills:versions download
GET/v1/skills/{skill_id}/versions/{version}/content
Obtener versión de Skill
$ ant beta:skills:versions retrieve
GET/v1/skills/{skill_id}/versions/{version}
Eliminar versión de Skill
$ ant beta:skills:versions delete
DELETE/v1/skills/{skill_id}/versions/{version}