{
  "$schema": "https://agentskills.io/schemas/v0.2.0/index.json",
  "version": "0.2.0",
  "publisher": {
    "name": "Vibescaling",
    "url": "https://vibescaling.ai/"
  },
  "skills": [
    {
      "name": "subscribe-newsletter",
      "type": "http",
      "description": "Subscribe an email address to the Vibescaling weekly GTM newsletter.",
      "url": "https://vibescaling.ai/api/newsletter",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "required": ["email"],
        "properties": {
          "email": { "type": "string", "format": "email" }
        }
      }
    },
    {
      "name": "contact-vibescaling",
      "type": "http",
      "description": "Send an inquiry to the Vibescaling team about advisory, recruiting, or media.",
      "url": "https://vibescaling.ai/api/contact",
      "method": "POST",
      "inputSchema": {
        "type": "object",
        "required": ["name", "email", "message"],
        "properties": {
          "name": { "type": "string" },
          "email": { "type": "string", "format": "email" },
          "company": { "type": "string" },
          "message": { "type": "string" }
        }
      }
    },
    {
      "name": "list-podcast-episodes",
      "type": "http",
      "description": "Fetch the full list of Vibescaling Podcast episodes with titles, guests, dates, and listen links.",
      "url": "https://vibescaling.ai/api/posts",
      "method": "GET"
    }
  ]
}
