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

# Get Skills Bundle Info

> Describe the toolkit without transferring it.

Lets the download UI show which version it is offering without pulling the
whole archive on page load.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /agent/skills
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /agent/skills:
    get:
      summary: Get Skills Bundle Info
      description: >-
        Describe the toolkit without transferring it.


        Lets the download UI show which version it is offering without pulling
        the

        whole archive on page load.
      operationId: get_skills_bundle_info_agent_skills_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SkillsBundleInfo'
components:
  schemas:
    SkillsBundleInfo:
      properties:
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
      type: object
      title: SkillsBundleInfo
      description: Metadata about the downloadable toolkit, for the download UI.

````