{
  "$schema": "https://agentskills.io/schema/v0.2.0/index.json",
  "name": "Mindcat AI Agent Skills",
  "description": "Skills available for AI agents interacting with mindcat.ai",
  "version": "1.0.0",
  "homepage": "https://mindcat.ai",
  "skills": [
    {
      "name": "submit_contact",
      "type": "api",
      "description": "Submit a contact or lead inquiry. Creates a Salesforce Lead via Web-to-Lead. Accepts first_name, last_name, email, company, street, phone, and message.",
      "url": "https://mindcat.ai/api/contact",
      "method": "POST",
      "contentType": "application/json",
      "schema": {
        "required": ["email", "company"],
        "properties": {
          "first_name": { "type": "string", "maxLength": 40 },
          "last_name": { "type": "string", "maxLength": 40 },
          "name": { "type": "string", "minLength": 2, "maxLength": 100 },
          "email": { "type": "string", "format": "email" },
          "phone": { "type": "string" },
          "company": { "type": "string" },
          "street": { "type": "string" },
          "message": { "type": "string", "maxLength": 1000 }
        }
      }
    },
    {
      "name": "get_services",
      "type": "content",
      "description": "Get information about Salesforce implementation, optimisation, and AI automation services",
      "url": "https://mindcat.ai/services",
      "contentType": "text/html"
    },
    {
      "name": "get_resources",
      "type": "content",
      "description": "Access Salesforce guides, evaluation tools, and best practice resources",
      "url": "https://mindcat.ai/resources",
      "contentType": "text/html"
    },
    {
      "name": "get_llms_txt",
      "type": "content",
      "description": "Agent-oriented site index (llms.txt) with services, products, and resources",
      "url": "https://mindcat.ai/llms.txt",
      "contentType": "text/plain"
    },
    {
      "name": "get_markdown",
      "type": "content",
      "description": "Site overview and path-aware markdown summary for agents",
      "url": "https://mindcat.ai/api/markdown",
      "contentType": "text/markdown"
    },
    {
      "name": "get_api_info",
      "type": "content",
      "description": "OpenAPI specification for all available Mindcat API endpoints",
      "url": "https://mindcat.ai/openapi.json",
      "contentType": "application/json"
    }
  ]
}
