{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pandic-office",
    "name": "md-to-office",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/PiyushDuggal-source/pandic-office",
    "canonicalUrl": "https://clawhub.ai/PiyushDuggal-source/pandic-office",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pandic-office",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pandic-office",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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. 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-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/pandic-office"
    },
    "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/pandic-office",
    "agentPageUrl": "https://openagent3.xyz/skills/pandic-office/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pandic-office/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pandic-office/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": "Local Pandoc Conversion Skill",
        "body": "This skill uses the pandoc command-line utility to convert documents between numerous markup formats."
      },
      {
        "title": "Basic Usage",
        "body": "The fundamental structure of a pandoc command is:\n\npandoc [options] [input-file]…"
      },
      {
        "title": "Simple Conversion",
        "body": "To convert a Markdown file to HTML:\n\npandoc -o output.html input.md"
      },
      {
        "title": "Specifying Formats",
        "body": "While pandoc can infer formats from file extensions, you can be explicit with the -f (from) and -t (to) flags.\n\n# Convert HTML to Markdown\npandoc -f html -t markdown input.html"
      },
      {
        "title": "Standalone Documents",
        "body": "To create a complete document with a proper header and footer (e.g., a full HTML file), use the -s or --standalone flag.\n\npandoc -s -o output.html input.md"
      },
      {
        "title": "Advanced Examples",
        "body": "The following examples are extracted from the official Pandoc User's Guide."
      },
      {
        "title": "PDF Output",
        "body": "To create a PDF, pandoc typically uses a LaTeX engine. Ensure one is installed.\n\n# Basic PDF creation\npandoc input.md -o output.pdf\n\n# Control PDF engine and style via variables\npandoc input.md -o output.pdf --pdf-engine=xelatex -V geometry:margin=1in -V fontsize=12pt"
      },
      {
        "title": "Document Structure & Metadata",
        "body": "Pandoc can automatically generate a table of contents and use document metadata.\n\n# Create a document with a Table of Contents (up to level 3 headings)\npandoc --toc --toc-depth=3 -o output.docx input.md\n\n# Set metadata fields from the command line\npandoc -M title:\"My Report\" -M author:\"Galactus\" -o output.pdf input.md"
      },
      {
        "title": "Templates and Styling",
        "body": "You can control the final output's structure and style with templates and other options.\n\n# Use a custom template for HTML output\npandoc -s --template=my-template.html -o output.html input.md\n\n# For HTML output, link to a custom CSS file\npandoc -s --css=styles.css -o output.html input.md\n\n# For DOCX output, use a reference document for styling\npandoc --reference-doc=reference.docx -o output.docx input.md"
      },
      {
        "title": "Reading from the Web",
        "body": "Pandoc can directly fetch and convert content from a URL.\n\npandoc -f html -t markdown https://www.fsf.org"
      },
      {
        "title": "Other Useful Options",
        "body": "# Preserve tabs instead of converting them to spaces\npandoc --preserve-tabs ...\n\n# Control line wrapping in the output source code\npandoc --wrap=none ...\n\n# Shift heading levels (e.g., make all H1s into H2s, H2s into H3s)\npandoc --shift-heading-level-by=1 ...\n\nThis enhanced documentation provides a more robust foundation for using pandoc."
      }
    ],
    "body": "Local Pandoc Conversion Skill\n\nThis skill uses the pandoc command-line utility to convert documents between numerous markup formats.\n\nBasic Usage\n\nThe fundamental structure of a pandoc command is:\n\npandoc [options] [input-file]…\n\nSimple Conversion\n\nTo convert a Markdown file to HTML:\n\npandoc -o output.html input.md\n\nSpecifying Formats\n\nWhile pandoc can infer formats from file extensions, you can be explicit with the -f (from) and -t (to) flags.\n\n# Convert HTML to Markdown\npandoc -f html -t markdown input.html\n\nStandalone Documents\n\nTo create a complete document with a proper header and footer (e.g., a full HTML file), use the -s or --standalone flag.\n\npandoc -s -o output.html input.md\n\nAdvanced Examples\n\nThe following examples are extracted from the official Pandoc User's Guide.\n\nPDF Output\n\nTo create a PDF, pandoc typically uses a LaTeX engine. Ensure one is installed.\n\n# Basic PDF creation\npandoc input.md -o output.pdf\n\n# Control PDF engine and style via variables\npandoc input.md -o output.pdf --pdf-engine=xelatex -V geometry:margin=1in -V fontsize=12pt\n\nDocument Structure & Metadata\n\nPandoc can automatically generate a table of contents and use document metadata.\n\n# Create a document with a Table of Contents (up to level 3 headings)\npandoc --toc --toc-depth=3 -o output.docx input.md\n\n# Set metadata fields from the command line\npandoc -M title:\"My Report\" -M author:\"Galactus\" -o output.pdf input.md\n\nTemplates and Styling\n\nYou can control the final output's structure and style with templates and other options.\n\n# Use a custom template for HTML output\npandoc -s --template=my-template.html -o output.html input.md\n\n# For HTML output, link to a custom CSS file\npandoc -s --css=styles.css -o output.html input.md\n\n# For DOCX output, use a reference document for styling\npandoc --reference-doc=reference.docx -o output.docx input.md\n\nReading from the Web\n\nPandoc can directly fetch and convert content from a URL.\n\npandoc -f html -t markdown https://www.fsf.org\n\nOther Useful Options\n# Preserve tabs instead of converting them to spaces\npandoc --preserve-tabs ...\n\n# Control line wrapping in the output source code\npandoc --wrap=none ...\n\n# Shift heading levels (e.g., make all H1s into H2s, H2s into H3s)\npandoc --shift-heading-level-by=1 ...\n\n\nThis enhanced documentation provides a more robust foundation for using pandoc."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/PiyushDuggal-source/pandic-office",
    "publisherUrl": "https://clawhub.ai/PiyushDuggal-source/pandic-office",
    "owner": "PiyushDuggal-source",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pandic-office",
    "downloadUrl": "https://openagent3.xyz/downloads/pandic-office",
    "agentUrl": "https://openagent3.xyz/skills/pandic-office/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pandic-office/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pandic-office/agent.md"
  }
}