{
  "schemaVersion": "1.0",
  "item": {
    "slug": "marp-cli",
    "name": "Marp Cli",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/killgfat/marp-cli",
    "canonicalUrl": "https://clawhub.ai/killgfat/marp-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/marp-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=marp-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "EXAMPLES.md",
      "QUICKSTART.md",
      "README.md",
      "SKILL.md"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/marp-cli"
    },
    "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/marp-cli",
    "agentPageUrl": "https://openagent3.xyz/skills/marp-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/marp-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/marp-cli/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Marp CLI",
        "body": "Convert Markdown to presentations via CLI. Output HTML, PDF, PowerPoint (PPTX), and images (PNG/JPEG).\n\nBrowser requirement: Conversions marked with 🌐 require a compatible browser (Chrome, Edge, or Firefox) installed on your system."
      },
      {
        "title": "Quick Start",
        "body": "# Convert to HTML\nmarp slide-deck.md\n\n# Convert to PDF (requires browser)\nmarp --pdf slide-deck.md\n\n# Convert to PowerPoint\nmarp --pptx slide-deck.md\n\n# Convert to images\nmarp --images png slide-deck.md\n\n📖 Detailed guide: QUICKSTART.md"
      },
      {
        "title": "HTML",
        "body": "marp slide-deck.md\nmarp slide-deck.md -o output.html"
      },
      {
        "title": "PDF 🌐",
        "body": "marp --pdf slide-deck.md\nmarp slide-deck.md -o output.pdf\n\n# With PDF outlines\nmarp --pdf --pdf-outlines slide-deck.md\n\n# Includes presenter notes as annotations on lower-left\nmarp --pdf --pdf-notes slide-deck.md"
      },
      {
        "title": "PowerPoint (PPTX) 🌐",
        "body": "marp --pptx slide-deck.md\nmarp slide-deck.md -o output.pptx\n\n# Editable PPTX (experimental, requires LibreOffice Impress)\nmarp --pptx --pptx-editable slide-deck.md"
      },
      {
        "title": "Images 🌐",
        "body": "# Multiple images\nmarp --images png slide-deck.md\nmarp --images jpeg slide-deck.md\n\n# Title slide image only\nmarp --image png slide-deck.md\nmarp slide-deck.md -o output.png\n\n# High resolution (scale factor)\nmarp slide-deck.md -o title.png --image-scale 2"
      },
      {
        "title": "Presenter notes",
        "body": "marp --notes slide-deck.md\nmarp slide-deck.md -o output.txt"
      },
      {
        "title": "Watch mode",
        "body": "# Watch file and auto-convert on changes\nmarp -w slide-deck.md\n\n# Watch with browser preview\nmarp -w -p slide-deck.md"
      },
      {
        "title": "Server mode",
        "body": "# Serve directory with on-demand conversion\nmarp -s ./slides\n\n# Specify port via environment\nPORT=5000 marp -s ./slides\n\n# Access converted formats via query strings\n# http://localhost:8080/deck.md?pdf\n# http://localhost:8080/deck.md?pptx"
      },
      {
        "title": "Preview window",
        "body": "# Open preview window (automatically enables watch mode)\nmarp -p slide-deck.md\n\n# Preview with PDF output\nmarp -p --pdf slide-deck.md"
      },
      {
        "title": "Multiple files",
        "body": "# Convert multiple files\nmarp slide1.md slide2.md slide3.md\n\n# Convert directory\nmarp ./slides/\n\n# Use glob patterns\nmarp **/*.md\n\n# Convert with parallelism (default: 5 concurrent)\nmarp -P 10 ./*.md\n\n# Disable parallelism\nmarp --no-parallel ./*.md"
      },
      {
        "title": "Options",
        "body": "OptionDescription-o, --output <path>Output file path-w, --watchWatch mode - auto-convert on changes-s, --server <dir>Server mode - serve directory-p, --previewOpen preview window--pdfConvert to PDF (requires Chrome/Edge/Firefox)--pptxConvert to PowerPoint PPTX (requires browser)--pptx-editableGenerate editable PPTX (experimental)--images [png|jpeg]Convert to multiple images--imageConvert title slide to single image--image-scale <factor>Scale factor for images--notesExport presenter notes to TXT--pdf-notesAdd PDF note annotations--pdf-outlinesAdd PDF outlines/bookmarks--allow-local-filesAllow accessing local files (security note)--browser <chrome|edge|firefox>Choose browser for conversion--browser-path <path>Specify browser executable path-P, --parallel <num>Parallel conversion count--no-parallelDisable parallel conversion--template <name>HTML template (default: bespoke)"
      },
      {
        "title": "Common patterns",
        "body": "# Watch and preview while editing\nmarp -w -p deck.md\n\n# Serve slides directory\nmarp -s ./presentations\n\n# Convert all slides to PDF\nmarp --pdf *.md\n\n# Create OG image from title\nmarp deck.md -o og.png --image-scale 3\n\n# Export presenter notes\nmarp --notes deck.md"
      },
      {
        "title": "Documentation",
        "body": "DocumentDescriptionQUICKSTART.mdQuick start guideEXAMPLES.mdDetailed examplesREADME.mdProject overviewOfficial docshttps://github.com/marp-team/marp-cli"
      }
    ],
    "body": "Marp CLI\n\nConvert Markdown to presentations via CLI. Output HTML, PDF, PowerPoint (PPTX), and images (PNG/JPEG).\n\nBrowser requirement: Conversions marked with 🌐 require a compatible browser (Chrome, Edge, or Firefox) installed on your system.\n\nQuick Start\n# Convert to HTML\nmarp slide-deck.md\n\n# Convert to PDF (requires browser)\nmarp --pdf slide-deck.md\n\n# Convert to PowerPoint\nmarp --pptx slide-deck.md\n\n# Convert to images\nmarp --images png slide-deck.md\n\n\n📖 Detailed guide: QUICKSTART.md\n\nFormat conversion\nHTML\nmarp slide-deck.md\nmarp slide-deck.md -o output.html\n\nPDF 🌐\nmarp --pdf slide-deck.md\nmarp slide-deck.md -o output.pdf\n\n# With PDF outlines\nmarp --pdf --pdf-outlines slide-deck.md\n\n# Includes presenter notes as annotations on lower-left\nmarp --pdf --pdf-notes slide-deck.md\n\nPowerPoint (PPTX) 🌐\nmarp --pptx slide-deck.md\nmarp slide-deck.md -o output.pptx\n\n# Editable PPTX (experimental, requires LibreOffice Impress)\nmarp --pptx --pptx-editable slide-deck.md\n\nImages 🌐\n# Multiple images\nmarp --images png slide-deck.md\nmarp --images jpeg slide-deck.md\n\n# Title slide image only\nmarp --image png slide-deck.md\nmarp slide-deck.md -o output.png\n\n# High resolution (scale factor)\nmarp slide-deck.md -o title.png --image-scale 2\n\nPresenter notes\nmarp --notes slide-deck.md\nmarp slide-deck.md -o output.txt\n\nWatch mode\n# Watch file and auto-convert on changes\nmarp -w slide-deck.md\n\n# Watch with browser preview\nmarp -w -p slide-deck.md\n\nServer mode\n# Serve directory with on-demand conversion\nmarp -s ./slides\n\n# Specify port via environment\nPORT=5000 marp -s ./slides\n\n# Access converted formats via query strings\n# http://localhost:8080/deck.md?pdf\n# http://localhost:8080/deck.md?pptx\n\nPreview window\n# Open preview window (automatically enables watch mode)\nmarp -p slide-deck.md\n\n# Preview with PDF output\nmarp -p --pdf slide-deck.md\n\nMultiple files\n# Convert multiple files\nmarp slide1.md slide2.md slide3.md\n\n# Convert directory\nmarp ./slides/\n\n# Use glob patterns\nmarp **/*.md\n\n# Convert with parallelism (default: 5 concurrent)\nmarp -P 10 ./*.md\n\n# Disable parallelism\nmarp --no-parallel ./*.md\n\nOptions\nOption\tDescription\n-o, --output <path>\tOutput file path\n-w, --watch\tWatch mode - auto-convert on changes\n-s, --server <dir>\tServer mode - serve directory\n-p, --preview\tOpen preview window\n--pdf\tConvert to PDF (requires Chrome/Edge/Firefox)\n--pptx\tConvert to PowerPoint PPTX (requires browser)\n--pptx-editable\tGenerate editable PPTX (experimental)\n--images [png|jpeg]\tConvert to multiple images\n--image\tConvert title slide to single image\n--image-scale <factor>\tScale factor for images\n--notes\tExport presenter notes to TXT\n--pdf-notes\tAdd PDF note annotations\n--pdf-outlines\tAdd PDF outlines/bookmarks\n--allow-local-files\tAllow accessing local files (security note)\n--browser <chrome|edge|firefox>\tChoose browser for conversion\n--browser-path <path>\tSpecify browser executable path\n-P, --parallel <num>\tParallel conversion count\n--no-parallel\tDisable parallel conversion\n--template <name>\tHTML template (default: bespoke)\nCommon patterns\n# Watch and preview while editing\nmarp -w -p deck.md\n\n# Serve slides directory\nmarp -s ./presentations\n\n# Convert all slides to PDF\nmarp --pdf *.md\n\n# Create OG image from title\nmarp deck.md -o og.png --image-scale 3\n\n# Export presenter notes\nmarp --notes deck.md\n\nDocumentation\nDocument\tDescription\nQUICKSTART.md\tQuick start guide\nEXAMPLES.md\tDetailed examples\nREADME.md\tProject overview\nOfficial docs\thttps://github.com/marp-team/marp-cli"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/killgfat/marp-cli",
    "publisherUrl": "https://clawhub.ai/killgfat/marp-cli",
    "owner": "killgfat",
    "version": "0.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/marp-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/marp-cli",
    "agentUrl": "https://openagent3.xyz/skills/marp-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/marp-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/marp-cli/agent.md"
  }
}