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

# List manifests available in the agent-skills repo

> Used by the Credible VS Code extension; not part of the external integration surface. Discovers all manifests present in the latest version of the agent-skills repo and returns each with its resolved (Flagsmith or latest) version.



## OpenAPI

````yaml /code-assist-public-api.yaml get /agent_skills/manifests
openapi: 3.0.0
info:
  title: Coding API
  description: >-
    Public API for Credible's Code Assist service. Its externally-facing
    capability is a Malloy documentation search (`POST /search_malloy_docs`)
    that any authenticated caller — including a customer's own MCP server — can
    invoke directly with a Group Access Token. The remaining endpoints back the
    Credible VS Code extension and are not part of the external integration
    surface.
  version: 1.0.0
servers:
  - url: https://{organization}.coding.credibledata.com
    description: Production API server
    variables:
      organization:
        default: demo
        description: Your organization subdomain
security:
  - bearerAuth: []
  - apiKeyAuth: []
tags:
  - name: codeAssist
    description: Code Assist API endpoints
paths:
  /agent_skills/manifests:
    get:
      tags:
        - codeAssist
      summary: List manifests available in the agent-skills repo
      description: >-
        Used by the Credible VS Code extension; not part of the external
        integration surface. Discovers all manifests present in the latest
        version of the agent-skills repo and returns each with its resolved
        (Flagsmith or latest) version.
      operationId: listAgentSkillsManifests
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManifestListResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: An internal server error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ManifestListResponse:
      type: object
      required:
        - manifests
      properties:
        manifests:
          type: array
          items:
            $ref: '#/components/schemas/ManifestInfo'
          description: Manifests discovered in the latest version of the agent-skills repo
    ErrorResponse:
      description: Standard error response body.
      type: object
      required:
        - error_code
        - message
      properties:
        error_code:
          type: string
          description: A code identifying the type of error
          enum:
            - INVALID_INPUT
            - UNAUTHORIZED
            - FORBIDDEN
            - NOT_FOUND
            - CONFLICT
            - INTERNAL_ERROR
            - BAD_GATEWAY
            - GATEWAY_TIMEOUT
        message:
          type: string
          description: A human-readable error message
        details:
          type: string
          description: Additional error details, if available
          nullable: true
    ManifestInfo:
      type: object
      required:
        - name
        - version
      properties:
        name:
          type: string
          description: Manifest name
        version:
          type: string
          description: Resolved version served for this manifest
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |
        Auth0-issued user JWT. Provide as `Authorization: Bearer <token>`.
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: |
        HMAC-signed API key JWT (Group Access Token) issued by Credible. Provide
        as `Authorization: ApiKey <token>` (note the `ApiKey ` prefix in place
        of the usual `Bearer `). Include the full string — prefix and token —
        in this field.

````