Skip to main content
PATCH
/
v1
/
skills
/
{id}
Patch skill
curl --request PATCH \
  --url https://api.conduit.ai/v1/skills/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "display_name": "Reservation Policy",
  "tags": [
    "policy",
    "reservations"
  ],
  "enabled": 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.

Path Parameters

id
string
required

Skill id.

Example:

"ks77c0dy0mgdpzmqz6tesry8w184002s"

Query Parameters

workspace_id
string

Optional workspace override. If omitted, Conduit resolves the skill's workspace automatically.

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

Body

application/json

Request body for patching a workspace agent skill. Pass null to clear optional metadata fields.

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

Response

Skill updated

Single workspace skill response.

data
object
required