> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mokaru.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Skill

> Delete a skill

## Overview

The Delete Skill endpoint permanently removes a skill from your account.

<Note>
  **Scope required:** `skills:write` | **Rate limit:** 10 requests/min
</Note>

## Request

```bash theme={null}
DELETE /v1/skills/{id}
```

### Example

```bash theme={null}
curl -X DELETE "https://api.mokaru.ai/v1/skills/clx1234" \
  -H "Authorization: Bearer mk_your_key"
```

## Response

<ResponseField name="success" type="boolean">Whether the skill was deleted</ResponseField>

```json theme={null}
{
  "success": true
}
```

<Warning>
  This action is permanent. The skill will be removed from your profile.
</Warning>
