---
title: "Create Agent Skill"
method: POST
path: "/v1/interview-agents/skills"
tags: ["interview-agents"]
---

# Create Agent Skill

`POST /v1/interview-agents/skills`

## Request body

- AgentSkillCreate
  - `workspace_id` string, uuid, required
  - `name` string, required
  - `description` string, nullable
  - `avatar_type` string
  - `avatar_emoji` string, nullable
  - `skill_type` string
  - `body` string, required
  - `trigger_description` string, nullable
  - `status` string
  - `default_enabled` boolean
  - `priority` integer
  - `agent_profile_ids` string[]

## Response `201`

Successful Response

- AgentSkillOut
  - `id` string, uuid, required
  - `workspace_id` string, uuid, required
  - `name` string, required
  - `slug` string, required
  - `description` string, nullable
  - `avatar_type` string, required
  - `avatar_emoji` string, nullable
  - `avatar_storage_key` string, nullable
  - `avatar_url` string, nullable
  - `skill_type` string, required
  - `body` string, required
  - `trigger_description` string, nullable
  - `status` string, required
  - `default_enabled` boolean, required
  - `assigned_agent_ids` string[]
  - `documents` AgentSkillDocumentOut[]
    - `id` string, uuid, required
    - `document_id` string, uuid, required
    - `title` string, nullable
    - `extracted_summary` string, nullable
    - `status` string
    - `created_at` string, date-time, required
  - `priority` integer, required
  - `version_count` integer
  - `created_by` string, nullable
  - `created_by_email` string, nullable
  - `created_by_name` string, nullable
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/ontora/apis/ontora-api.md) · [All operations](https://skmtc.dev/ontora/apis/ontora-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ontora/ontora-api/revisions/7f57037fd94b/schema)
