---
title: "Patch skill"
method: PATCH
path: "/v1/skills/{id}"
tags: ["skills"]
---

# Patch skill

`PATCH /v1/skills/{id}`

Updates mutable workspace agent skill fields. Requires a token with write access.

## Path parameters

- `id` string, required — Skill id.

## Query parameters

- `workspace_id` string — Optional workspace override. If omitted, Conduit resolves the skill's workspace automatically.

## Request body

- object — Request body for patching a workspace agent skill. Pass null to clear optional metadata fields.
  - `name` string
  - `description` string
  - `body` string
  - `allowed_tools` string[], nullable
  - `tags` string[], nullable
  - `enabled` boolean

## Response `200`

Skill updated

- object — Single workspace skill response.
  - `data` object, required
    - `id` string, required
    - `workspace_id` string, required
    - `name` string, required
    - `description` string, required
    - `body` string, required
    - `allowed_tools` string[], required
    - `tags` string[], required
    - `enabled` boolean, required
    - `created_at` string, required
    - `updated_at` string, required

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `409` — Conflict
- `429` — Rate limit exceeded

---

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