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

# Delete a skill

> Permanently delete a skill, including its SKILL.md and any other files. Agents that had the skill attached simply lose it. Built-in nuwacom skills cannot be deleted.



## OpenAPI

````yaml /openapi.yaml delete /api/v1/spaces/{spaceId}/skills/{skillId}
openapi: 3.1.0
info:
  title: Nuwacom API
  description: API for Nuwacom application
  version: 1.0.0
servers:
  - url: https://{customer-tenant}.nuwacom.ai
    description: Nuwacom API
security:
  - bearerAuth: []
paths:
  /api/v1/spaces/{spaceId}/skills/{skillId}:
    delete:
      tags:
        - Skills
      summary: Delete a skill
      description: >-
        Permanently delete a skill, including its SKILL.md and any other files.
        Agents that had the skill attached simply lose it. Built-in nuwacom
        skills cannot be deleted.
      operationId: deleteApiV1SpacesBySpaceIdSkillsBySkillId
      parameters:
        - in: path
          name: spaceId
          schema:
            anyOf:
              - type: string
                minLength: 2
                maxLength: 6
              - type: string
                minLength: 21
                maxLength: 21
            description: ID of the space the skill belongs to.
          required: true
        - in: path
          name: skillId
          schema:
            type: string
            format: uuid
            description: Unique ID of the skill.
          required: true
      responses:
        '204':
          description: Skill deleted successfully.
        '403':
          description: >-
            The caller lacks permission to delete skills in this space, or the
            skills feature is disabled.
        '404':
          description: Skill not found in the provided space.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````