Skip to main content
POST
/
v1
/
skills
Create skill
curl --request POST \
  --url https://api.conduit.ai/v1/skills \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
  "name": "booking-policy",
  "display_name": "Booking Policy",
  "description": "Use this skill for refund and cancellation questions.",
  "body": "Guests may cancel up to 48 hours before check-in for a full refund.",
  "allowed_tools": [
    "convex_get_booking"
  ],
  "tags": [
    "policy",
    "refunds"
  ],
  "enabled": true,
  "auto_assign_to_existing_v2_agents": false
}
'
{
  "data": {
    "id": "ks77c0dy0mgdpzmqz6tesry8w184002s",
    "workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
    "name": "booking-policy",
    "display_name": "Booking Policy",
    "description": "Use this skill for refund and cancellation questions.",
    "body": "Guests may cancel up to 48 hours before check-in for a full refund.",
    "allowed_tools": [
      "convex_get_booking"
    ],
    "tags": [
      "policy",
      "refunds"
    ],
    "enabled": true,
    "created_at": "2026-04-01T17:22:10.000Z",
    "updated_at": "2026-04-03T03:14:15.000Z"
  }
}

Authorizations

Authorization
string
header
required

Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.

Body

application/json

Request body for creating a workspace agent skill. External callers must explicitly opt into auto-assignment.

workspace_id
string
required
name
string
required
Minimum string length: 1
description
string
required
Minimum string length: 1
body
string
required
Minimum string length: 1
display_name
string | null
Minimum string length: 1
allowed_tools
string[]
tags
string[]
enabled
boolean
auto_assign_to_existing_v2_agents
boolean

Response

Skill created

Single workspace skill response.

data
object
required