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

> ## Agent Instructions
> Use the public API base URL: https://api.teamfollowup.ai/api.
> Authenticate public API requests with Authorization: Bearer YOUR_API_KEY.
> Use product-owned terms: agents, calls, campaigns, contacts, phone numbers, billing, and configuration.

# List agent capability library

> List every supported capability an API client can add, what each capability does, and the fields it requires. Agent-specific status shows whether each capability is available, already represented by a configured skill, or already installed as a tool.

Required API key scope: `agents:read`.



## OpenAPI

````yaml /openapi.yaml get /api/agent-builder/agents/{id}/skills/library
openapi: 3.1.0
info:
  title: TFUAI Server API
  version: 1.0.0
  description: >-
    API reference for the TFUAI SaaS server.


    All published endpoints are mounted under `/api`. Responses use a standard
    envelope: `{ "success": true, ... }` on success and `{ "success": false,
    "error": "..." }` on failure.


    Product API modules are being launched module by module. This spec currently
    exposes only contracted public modules.


    Authenticate public API requests with an API key in the `Authorization`
    header: `Authorization: Bearer YOUR_API_KEY`.
servers:
  - url: https://api.teamfollowup.ai
    description: Production API origin. Public API paths are under /api.
  - url: https://devapi.teamfollowup.ai
    description: Development API origin. Public API paths are under /api.
security: []
tags:
  - name: Agents
    description: Manage voice agents, campaigns, workflows, and outcomes.
  - name: Analytics
    description: >-
      Minimal, non-billing performance summary: volume, conversion, and pickup
      metrics.
  - name: Calls
    description: Review calls, test runs, and execution history.
  - name: Campaign Workflows
    description: >-
      What runs after a call lands: for each outcome (booked, opted out, asked
      for a callback…), an ordered chain of actions — tag the contact, move a
      pipeline stage, send an SMS, book an appointment. Stored as a graph:
      `nodes` are the actions, `edges` say what follows what, and
      `dispositionEntries` maps each outcome to the node its chain starts at.


      **Pick the narrowest endpoint that does the job.**


      | To | Call | |

      | --- | --- | --- |

      | See what fires per outcome | `GET .../workflow/digest` | Reads as plain
      text, no graph walking |

      | Add steps to an outcome | `POST .../outcomes/{outcome}/nodes` | Server
      derives node ids, edge ids, handles, layout |

      | Change a message, tag or setting | `PATCH .../workflow` | Merges;
      carries no graph, so it cannot damage one |

      | Remove one step | `DELETE .../nodes/{nodeId}` | Also re-links the chain
      around it |

      | Author or replace the whole graph | `PUT .../workflow` | Replaces
      everything you send |


      `PUT` is the only one that can re-wire, position nodes, build an `if`,
      save an unconfigured draft, or copy a whole workflow — and the only one
      that can overwrite a change someone else made after you read it. Use it
      when you are genuinely authoring the graph, and send `expectedVersion`
      when you do. For everything else the narrower endpoints are both easier
      and safer.
  - name: Contacts
    description: Contact list, filters, contact call history, and do-not-call actions.
  - name: GHL
    description: CRM variables and contact helpers used by agent and campaign setup flows.
  - name: Phone Numbers
    description: >-
      Caller ID pool, number search, assignment, movement, and release
      endpoints.
  - name: Power Dialer
    description: >-
      Power Dialer queue, lead cadence, callback, parked lead, and campaign
      schedule endpoints.
  - name: Projects
    description: >-
      Project management endpoints: list, update, disconnect, configure project
      campaigns, and validate setup.
  - name: Skills and Tools
    description: Manage reusable agent behaviors and in-call tool descriptions.
  - name: Voices
    description: Voice catalogue endpoints for choosing the voice used by an agent.
paths:
  /api/agent-builder/agents/{id}/skills/library:
    get:
      tags:
        - Skills and Tools
      summary: List agent capability library
      description: >-
        List every supported capability an API client can add, what each
        capability does, and the fields it requires. Agent-specific status shows
        whether each capability is available, already represented by a
        configured skill, or already installed as a tool.


        Required API key scope: `agents:read`.
      operationId: get-agent-builder-agents-by-id-skills-library
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            minLength: 1
          description: Agent id.
          example: agent_01J2ABCDEF1234567890
      responses:
        '200':
          description: Agent capability library.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SkillsCapabilityLibraryResponse'
              examples:
                default:
                  value:
                    success: true
                    capabilities:
                      - type: instructions
                        kind: skill
                        name: Custom instruction skill
                        defaultName: null
                        description: >-
                          Teach the agent when to apply a plain-English playbook
                          and exactly what to do.
                        repeatable: true
                        fields:
                          - name: name
                            type: string
                            required: true
                            description: Human-readable name for the skill.
                          - name: instructions
                            type: string
                            required: true
                            description: The playbook the agent follows.
                        status: available
                        canAdd: true
                        skillIds: []
                        installedToolNames: []
                      - type: live_transfer
                        kind: tool
                        name: Live Transfer
                        defaultName: Live Transfer
                        description: >-
                          Warm-transfer the caller to a configured human
                          destination.
                        repeatable: false
                        fields:
                          - name: transferNumber
                            type: string
                            required: true
                            description: Phone number that receives the transfer.
                        status: installed_tool
                        canAdd: false
                        skillIds: []
                        installedToolNames:
                          - transfer_call
                          - transfer_availability
                    version: 4
                    freshness: live
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - ApiKeyAuth: []
      x-codeSamples:
        - lang: bash
          label: cURL
          source: |-
            curl --request GET \
              --url https://api.teamfollowup.ai/api/agent-builder/agents/{id}/skills/library \
              --header 'Authorization: Bearer YOUR_API_KEY'
components:
  schemas:
    SkillsCapabilityLibraryResponse:
      type: object
      additionalProperties: false
      properties:
        success:
          type: boolean
          const: true
        capabilities:
          type: array
          items:
            $ref: '#/components/schemas/SkillsCapability'
        version:
          type: integer
          minimum: 0
        freshness:
          type: string
          enum:
            - live
            - cached
          description: >-
            Whether installed-tool status came from live agent configuration or
            the last stored snapshot.
      required:
        - success
        - capabilities
        - version
        - freshness
    SkillsCapability:
      type: object
      additionalProperties: false
      properties:
        type:
          type: string
          enum:
            - instructions
            - smart_service_area
            - live_transfer
            - add_tag
            - check_tag
            - appointment_booking
        kind:
          type: string
          enum:
            - skill
            - tool
        name:
          type: string
        defaultName:
          oneOf:
            - type: string
            - type: 'null'
        description:
          type: string
        repeatable:
          type: boolean
        fields:
          type: array
          items:
            $ref: '#/components/schemas/SkillsCapabilityField'
        status:
          type: string
          enum:
            - available
            - added_as_skill
            - installed_tool
        canAdd:
          type: boolean
        skillIds:
          type: array
          items:
            type: string
        installedToolNames:
          type: array
          items:
            type: string
      required:
        - type
        - kind
        - name
        - defaultName
        - description
        - repeatable
        - fields
        - status
        - canAdd
        - skillIds
        - installedToolNames
    ApiError:
      type: object
      description: Standard error envelope returned by the API.
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          description: Short machine-readable error code.
          example: Unauthorized
        message:
          type: string
          description: Human-readable explanation of the error.
          example: Authentication required.
      required:
        - success
        - error
    SkillsCapabilityField:
      type: object
      additionalProperties: false
      properties:
        name:
          type: string
        type:
          type: string
          enum:
            - string
            - boolean
        required:
          type: boolean
        description:
          type: string
        default:
          oneOf:
            - type: string
            - type: boolean
      required:
        - name
        - type
        - required
        - description
  responses:
    ValidationError:
      description: Validation failed / malformed request.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Missing or invalid authentication.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Forbidden:
      description: Authenticated but not permitted (role or tenant scope).
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    RateLimited:
      description: Rate limit exceeded.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    ServerError:
      description: Unexpected server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: 'Send your API key as `Authorization: Bearer YOUR_API_KEY`.'

````