{
  "openapi": "3.0.3",
  "info": {
    "title": "pragent Agent API",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://pragent.com"
    }
  ],
  "paths": {
    "/api/execute": {
      "post": {
        "operationId": "executeSkill",
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "intent"
                ],
                "properties": {
                  "intent": {
                    "type": "string",
                    "example": "llm.chat"
                  },
                  "input": {
                    "type": "object"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "ApiKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "X-API-Key"
      }
    }
  }
}