> ## 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.

# Reconcile tool installations

> Re-evaluates required tools from assigned skills and installs any missing tools in the running agent container. Already-installed tools are skipped. Stale install records for unassigned tools are cleaned up. Requires admin role. Agent must be running.




## OpenAPI

````yaml /openapi.yaml post /agents/{id}/reconcile-tools
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}/reconcile-tools:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    post:
      summary: Reconcile tool installations
      description: >
        Re-evaluates required tools from assigned skills and installs any
        missing tools in the running agent container. Already-installed tools
        are skipped. Stale install records for unassigned tools are cleaned up.
        Requires admin role. Agent must be running.
      responses:
        '200':
          description: Reconcile result
          content:
            application/json:
              schema:
                type: object
                properties:
                  installed:
                    type: array
                    items:
                      type: string
                    description: Tools newly installed during this reconcile
                  alreadyInstalled:
                    type: array
                    items:
                      type: string
                    description: Tools that were already installed
                  failed:
                    type: array
                    items:
                      type: string
                    description: Tools that failed to install
        '401':
          description: Not authenticated
        '403':
          description: Requires admin role
        '404':
          description: Agent not found
        '409':
          description: Agent is not running
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````