{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mxe",
    "name": "Mxe",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/tuanpmt/mxe",
    "canonicalUrl": "https://clawhub.ai/tuanpmt/mxe",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mxe",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mxe",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "package.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mxe"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/mxe",
    "agentPageUrl": "https://openagent3.xyz/skills/mxe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mxe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mxe/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "MXE Skill - Markdown Export Tool",
        "body": "Convert Markdown files to PDF, DOCX, or HTML with advanced features."
      },
      {
        "title": "When to Use",
        "body": "Use MXE when the user wants to:\n\nConvert Markdown to PDF with nice formatting\nExport documents with Mermaid diagrams\nGenerate PDFs with table of contents\nCreate professional documents from Markdown\nDownload web articles as Markdown"
      },
      {
        "title": "Installation Check",
        "body": "which mxe || echo \"Not installed\"\n\nIf not installed:\n\ncd /Users/tuan/.openclaw/workspace/mxe && npm run build && npm link"
      },
      {
        "title": "Basic Usage",
        "body": "# Simple PDF conversion\nmxe document.md\n\n# With table of contents\nmxe document.md --toc\n\n# Specify output directory\nmxe document.md -o ./output"
      },
      {
        "title": "Font Options",
        "body": "# Custom body font\nmxe document.md --font roboto\n\n# Custom code font  \nmxe document.md --mono-font fira-code\n\n# Both\nmxe document.md --font inter --mono-font jetbrains-mono\n\nAvailable body fonts: inter (default), roboto, lato, opensans, source-sans, merriweather\n\nAvailable mono fonts: jetbrains-mono (default), fira-code, source-code"
      },
      {
        "title": "Mermaid Diagrams",
        "body": "# Default theme\nmxe document.md\n\n# Forest theme\nmxe document.md --mermaid-theme forest\n\n# Hand-drawn style\nmxe document.md --hand-draw\n\n# Dark theme with ELK layout\nmxe document.md --mermaid-theme dark --mermaid-layout elk\n\nThemes: default, forest, dark, neutral, base"
      },
      {
        "title": "Full Example",
        "body": "# Professional PDF with all features\nmxe report.md \\\n  --toc \\\n  --font roboto \\\n  --mono-font fira-code \\\n  --mermaid-theme forest \\\n  -o ./output"
      },
      {
        "title": "Output Formats",
        "body": "mxe doc.md -f pdf      # PDF (default)\nmxe doc.md -f docx     # Word document\nmxe doc.md -f html     # HTML file\nmxe doc.md -f clipboard # Copy to clipboard"
      },
      {
        "title": "Download Web Articles",
        "body": "# Download and convert URL to PDF\nmxe https://example.com/article\n\n# Download as Markdown only\nmxe https://example.com/article -f clipboard"
      },
      {
        "title": "Tips",
        "body": "Mermaid requires mmdc: Install with npm i -g @mermaid-js/mermaid-cli\nImages are embedded: Local images are base64 encoded into the PDF\nCustom CSS: Use -s style.css for custom styling\nBookmarks: PDF bookmarks are auto-generated from headings (disable with --no-bookmarks)"
      },
      {
        "title": "Location",
        "body": "Tool source: /Users/tuan/.openclaw/workspace/mxe"
      }
    ],
    "body": "MXE Skill - Markdown Export Tool\n\nConvert Markdown files to PDF, DOCX, or HTML with advanced features.\n\nWhen to Use\n\nUse MXE when the user wants to:\n\nConvert Markdown to PDF with nice formatting\nExport documents with Mermaid diagrams\nGenerate PDFs with table of contents\nCreate professional documents from Markdown\nDownload web articles as Markdown\nInstallation Check\nwhich mxe || echo \"Not installed\"\n\n\nIf not installed:\n\ncd /Users/tuan/.openclaw/workspace/mxe && npm run build && npm link\n\nBasic Usage\n# Simple PDF conversion\nmxe document.md\n\n# With table of contents\nmxe document.md --toc\n\n# Specify output directory\nmxe document.md -o ./output\n\nFont Options\n# Custom body font\nmxe document.md --font roboto\n\n# Custom code font  \nmxe document.md --mono-font fira-code\n\n# Both\nmxe document.md --font inter --mono-font jetbrains-mono\n\n\nAvailable body fonts: inter (default), roboto, lato, opensans, source-sans, merriweather\n\nAvailable mono fonts: jetbrains-mono (default), fira-code, source-code\n\nMermaid Diagrams\n# Default theme\nmxe document.md\n\n# Forest theme\nmxe document.md --mermaid-theme forest\n\n# Hand-drawn style\nmxe document.md --hand-draw\n\n# Dark theme with ELK layout\nmxe document.md --mermaid-theme dark --mermaid-layout elk\n\n\nThemes: default, forest, dark, neutral, base\n\nFull Example\n# Professional PDF with all features\nmxe report.md \\\n  --toc \\\n  --font roboto \\\n  --mono-font fira-code \\\n  --mermaid-theme forest \\\n  -o ./output\n\nOutput Formats\nmxe doc.md -f pdf      # PDF (default)\nmxe doc.md -f docx     # Word document\nmxe doc.md -f html     # HTML file\nmxe doc.md -f clipboard # Copy to clipboard\n\nDownload Web Articles\n# Download and convert URL to PDF\nmxe https://example.com/article\n\n# Download as Markdown only\nmxe https://example.com/article -f clipboard\n\nTips\nMermaid requires mmdc: Install with npm i -g @mermaid-js/mermaid-cli\nImages are embedded: Local images are base64 encoded into the PDF\nCustom CSS: Use -s style.css for custom styling\nBookmarks: PDF bookmarks are auto-generated from headings (disable with --no-bookmarks)\nLocation\n\nTool source: /Users/tuan/.openclaw/workspace/mxe"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tuanpmt/mxe",
    "publisherUrl": "https://clawhub.ai/tuanpmt/mxe",
    "owner": "tuanpmt",
    "version": "2.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mxe",
    "downloadUrl": "https://openagent3.xyz/downloads/mxe",
    "agentUrl": "https://openagent3.xyz/skills/mxe/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mxe/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mxe/agent.md"
  }
}