{
  "$schema": "https://agentskills.io/schemas/agent-skills-discovery-v0.2.0.json",
  "name": "Doc2Text Agent Skills",
  "description": "Browser-based document conversion utilities exposed as discoverable skills.",
  "site": "https://doc2text.io/",
  "skills": [
    {
      "name": "doc-to-txt",
      "type": "tool",
      "description": "Convert DOC and DOCX files to plain TXT entirely in the browser.",
      "url": "https://doc2text.io/",
      "input": { "format": ["doc", "docx"] },
      "output": { "format": ["txt"] }
    },
    {
      "name": "docx-to-markdown",
      "type": "tool",
      "description": "Convert DOCX files to clean Markdown for blogs, AI prompts, and static sites.",
      "url": "https://doc2text.io/docx-to-markdown",
      "input": { "format": ["docx"] },
      "output": { "format": ["md"] }
    },
    {
      "name": "docx-to-html",
      "type": "tool",
      "description": "Convert DOCX files to semantic HTML for CMS imports and email templates.",
      "url": "https://doc2text.io/docx-to-html",
      "input": { "format": ["docx"] },
      "output": { "format": ["html"] }
    },
    {
      "name": "pdf-to-txt",
      "type": "tool",
      "description": "Extract selectable text from PDF files in the browser.",
      "url": "https://doc2text.io/pdf-to-txt",
      "input": { "format": ["pdf"] },
      "output": { "format": ["txt"] }
    },
    {
      "name": "pdf-to-jpg",
      "type": "tool",
      "description": "Render every PDF page as a JPG image, packaged as a ZIP download.",
      "url": "https://doc2text.io/pdf-to-jpg",
      "input": { "format": ["pdf"] },
      "output": { "format": ["zip", "jpg"] }
    },
    {
      "name": "pdf-to-png",
      "type": "tool",
      "description": "Render every PDF page as a lossless PNG image, packaged as a ZIP download.",
      "url": "https://doc2text.io/pdf-to-png",
      "input": { "format": ["pdf"] },
      "output": { "format": ["zip", "png"] }
    },
    {
      "name": "jpg-to-pdf",
      "type": "tool",
      "description": "Combine multiple JPG images into a single PDF document.",
      "url": "https://doc2text.io/jpg-to-pdf",
      "input": { "format": ["jpg", "jpeg"] },
      "output": { "format": ["pdf"] }
    },
    {
      "name": "png-to-pdf",
      "type": "tool",
      "description": "Combine multiple PNG (or JPG) images into a single PDF document.",
      "url": "https://doc2text.io/png-to-pdf",
      "input": { "format": ["png", "jpg", "jpeg"] },
      "output": { "format": ["pdf"] }
    }
  ]
}
