{
  "$schema": "https://agentskills.io/schemas/index/v1.json",
  "version": "1.0",
  "site": {
    "name": "Atmoz",
    "url": "https://atmoz.io",
    "description": "AI carbon platform for finance and sustainability teams (measurement, reduction, removal)."
  },
  "skills": [
    {
      "id": "read-insight",
      "title": "Read a specific Atmoz insight article as markdown",
      "description": "Fetch the full body of any Atmoz insight article in LLM-friendly markdown.",
      "url": "/api/public/insights/{slug}.md",
      "method": "GET",
      "contentType": "text/markdown",
      "inputs": [
        {
          "name": "slug",
          "in": "path",
          "required": true,
          "description": "Insight slug, as listed in /llms.txt and /sitemap.xml."
        }
      ]
    },
    {
      "id": "read-insight-sv",
      "title": "Läs en Atmoz-insikt som markdown (svenska)",
      "description": "Hämta hela texten till en Atmoz-insikt i LLM-vänligt markdown-format på svenska.",
      "url": "/api/public/insikter/{slug}.md",
      "method": "GET",
      "contentType": "text/markdown",
      "inputs": [
        {
          "name": "slug",
          "in": "path",
          "required": true,
          "description": "Swedish insight slug, as listed in /llms.txt and /sitemap.xml."
        }
      ]
    },
    {
      "id": "read-customer-case",
      "title": "Read an Atmoz customer case study as markdown (English)",
      "description": "Fetch the full body of an Atmoz customer case study in LLM-friendly markdown.",
      "url": "/api/public/customers/{slug}.md",
      "method": "GET",
      "contentType": "text/markdown",
      "inputs": [
        {
          "name": "slug",
          "in": "path",
          "required": true,
          "description": "Customer case slug."
        }
      ]
    },
    {
      "id": "read-customer-case-sv",
      "title": "Läs en Atmoz kundberättelse som markdown (svenska)",
      "description": "Hämta hela texten till en Atmoz kundberättelse i LLM-vänligt markdown-format på svenska.",
      "url": "/api/public/sv/customers/{slug}.md",
      "method": "GET",
      "contentType": "text/markdown",
      "inputs": [
        {
          "name": "slug",
          "in": "path",
          "required": true,
          "description": "Customer case slug."
        }
      ]
    },
    {
      "id": "list-content",
      "title": "Discover all public Atmoz content",
      "description": "Read the LLM-friendly index of every page and article on the site.",
      "url": "/llms.txt",
      "method": "GET",
      "contentType": "text/plain"
    },
    {
      "id": "list-urls",
      "title": "List every public URL",
      "description": "Machine-readable sitemap of all EN and SV pages, including insights and customer stories.",
      "url": "/sitemap.xml",
      "method": "GET",
      "contentType": "application/xml"
    },
    {
      "id": "book-demo",
      "title": "Book a platform demo",
      "description": "Human-facing lead form. Agents should hand off to a human to complete this action.",
      "url": "/#book-demo",
      "method": "GET",
      "handoff": "human"
    }
  ]
}