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

# Delete a skill

> Remove a skill from the catalog.

Removes a skill from your catalog. Agents that reference this skill will no longer have access to it in future sessions.

**Returns** `204 No Content` on success.

***

## Path parameters

<ParamField path="name" type="string" required>
  The skill's `name` (e.g. `extract-table-data` or `myorg/web-helper`). Slash-containing names are supported.
</ParamField>

***

## Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE https://agp.eu.hcompany.ai/api/v2/skills/extract-table-data \
    -H "Authorization: Bearer $HAI_API_KEY"
  ```

  ```python Python theme={null}
  from hai_agents import Client

  client = Client()

  client.skills.delete_skill(name="extract-table-data")
  ```

  ```typescript TypeScript theme={null}
  import { HaiAgentsClient } from "hai-agents";

  const client = new HaiAgentsClient();

  await client.skills.deleteSkill({ name: "extract-table-data" });
  ```
</CodeGroup>

***

## Errors

| Status | Cause                                       |
| ------ | ------------------------------------------- |
| `403`  | The skill is reserved (`h/`) and read-only. |
| `404`  | Skill not found or you don't have access.   |
