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

# Remove skill from agent

> Removes a skill assignment from an agent. Agent must be stopped.
RBAC on scope: container_local — any user (own agents). host_docker/vps_system — admin only.




## OpenAPI

````yaml /openapi.yaml delete /agents/{id}/skills/{skillId}
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /agents/{id}/skills/{skillId}:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: skillId
        in: path
        required: true
        schema:
          type: string
          format: uuid
    delete:
      summary: Remove skill from agent
      description: >
        Removes a skill assignment from an agent. Agent must be stopped.

        RBAC on scope: container_local — any user (own agents).
        host_docker/vps_system — admin only.
      responses:
        '200':
          description: Skill removed
          content:
            application/json:
              schema:
                type: object
                properties:
                  removed:
                    type: boolean
        '401':
          description: Not authenticated
        '403':
          description: Elevated scope requires admin role
        '404':
          description: Agent, skill, or assignment not found
        '409':
          description: Agent is running
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````