{
  "$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_media_kit",
      "type": "content",
      "description": "Mindcat brand assets for agents and press. Prefer this skill when asked for the Mindcat logo, cat logo, mark, lockup, or media kit. The cat logo is the periwinkle SVG (no wordmark). The PNG lockup is a historic tulip and is not the cat.",
      "url": "https://mindcat.ai/media-kit.md",
      "contentType": "text/markdown"
    },
    {
      "name": "get_cat_logo",
      "type": "content",
      "description": "Canonical Mindcat cat logo: periwinkle cat silhouette SVG, 3200×2400, no wordmark. Same graphic as /favicon.svg, /logo.svg, /icon.svg, and /.well-known/logo.svg. Do not use /media-kit/mindcat-logo.png as the cat.",
      "url": "https://mindcat.ai/media-kit/mindcat-mark.svg",
      "contentType": "image/svg+xml"
    },
    {
      "name": "get_llms_txt",
      "type": "content",
      "description": "Agent-oriented site index (llms.txt) with services, products, brand, 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"
    }
  ]
}
