Skills (Public Beta)

Skills are the authorable execution units used by agents.

Public beta scope: full CRUD, versioning, publish, and run endpoints are available, but behavior may evolve with explicit versioning.

SDK methods

  • list({ organizationId }) -> GET /api/skills
  • get(skillId, { organizationId }) -> GET /api/skills/:id
  • create -> POST /api/skills
  • update -> PATCH /api/skills/:id
  • createVersion -> POST /api/skills/:id/versions
  • publish -> POST /api/skills/:id/publish
  • preview -> POST /api/skills/:id/preview
  • diff -> GET /api/skills/:id/versions/:versionId/diff
  • run -> POST /api/skills/:id/run

Beta notes

  • Skill authoring surfaces are public beta.
  • Changes will be versioned and communicated ahead of breaking updates.

See also

Was this page helpful?