{
  "schemaVersion": "1.0",
  "item": {
    "slug": "word-to-pdf",
    "name": "word-to-pdf",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lirenweiM/word-to-pdf",
    "canonicalUrl": "https://clawhub.ai/lirenweiM/word-to-pdf",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/word-to-pdf",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=word-to-pdf",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "skill.json",
      "SKILL.md",
      "word-to-pdf.py",
      "_meta.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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/word-to-pdf"
    },
    "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/word-to-pdf",
    "agentPageUrl": "https://openagent3.xyz/skills/word-to-pdf/agent",
    "manifestUrl": "https://openagent3.xyz/skills/word-to-pdf/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/word-to-pdf/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": "功能",
        "body": "将 Microsoft Word 文档（.docx）转换为 PDF 格式，支持：\n\n✅ 中文文本正确显示\n✅ 保留文档格式和样式\n✅ 保留 emoji 表情符号\n✅ 自动处理列表和标题\n✅ 支持多种字体"
      },
      {
        "title": "安装依赖",
        "body": "pip install reportlab python-docx"
      },
      {
        "title": "基本用法",
        "body": "word-to-pdf input.docx output.pdf"
      },
      {
        "title": "参数说明",
        "body": "input_file - Word 文档路径（必填）\noutput_file - PDF 输出路径（可选，默认与输入文件同名）"
      },
      {
        "title": "示例",
        "body": "# 转换文档\nword-to-pdf document.docx document.pdf\n\n# 转换到指定路径\nword-to-pdf input.docx C:\\output\\converted.pdf"
      },
      {
        "title": "工作原理",
        "body": "使用 python-docx 读取 Word 文档内容\n使用 reportlab 生成 PDF 文件\n注册中文字体（微软雅黑/黑体）\n保留原始文档的段落、标题和列表格式"
      },
      {
        "title": "注意事项",
        "body": "需要安装 Python 3.6+\n需要安装 reportlab 和 python-docx 库\nWindows 系统会自动使用微软雅黑字体\nLinux/Mac 系统需要手动指定字体路径"
      },
      {
        "title": "字体问题",
        "body": "如果出现乱码，请确保系统中安装了中文字体：\n\nWindows: 微软雅黑 (msyh.ttc)\nLinux: 安装 fonts-noto-cjk 或其他中文字体\nMac: 使用系统默认字体"
      },
      {
        "title": "依赖问题",
        "body": "如果提示缺少依赖，运行：\n\npip install --upgrade reportlab python-docx"
      },
      {
        "title": "依赖",
        "body": "Python 库: reportlab, python-docx\n系统字体: 中文字体（微软雅黑/黑体）"
      },
      {
        "title": "许可",
        "body": "MIT License"
      }
    ],
    "body": "Word to PDF — Word 文档转 PDF\n功能\n\n将 Microsoft Word 文档（.docx）转换为 PDF 格式，支持：\n\n✅ 中文文本正确显示\n✅ 保留文档格式和样式\n✅ 保留 emoji 表情符号\n✅ 自动处理列表和标题\n✅ 支持多种字体\n安装依赖\npip install reportlab python-docx\n\n使用方法\n基本用法\nword-to-pdf input.docx output.pdf\n\n参数说明\ninput_file - Word 文档路径（必填）\noutput_file - PDF 输出路径（可选，默认与输入文件同名）\n示例\n# 转换文档\nword-to-pdf document.docx document.pdf\n\n# 转换到指定路径\nword-to-pdf input.docx C:\\output\\converted.pdf\n\n工作原理\n使用 python-docx 读取 Word 文档内容\n使用 reportlab 生成 PDF 文件\n注册中文字体（微软雅黑/黑体）\n保留原始文档的段落、标题和列表格式\n注意事项\n需要安装 Python 3.6+\n需要安装 reportlab 和 python-docx 库\nWindows 系统会自动使用微软雅黑字体\nLinux/Mac 系统需要手动指定字体路径\n故障排除\n字体问题\n\n如果出现乱码，请确保系统中安装了中文字体：\n\nWindows: 微软雅黑 (msyh.ttc)\nLinux: 安装 fonts-noto-cjk 或其他中文字体\nMac: 使用系统默认字体\n依赖问题\n\n如果提示缺少依赖，运行：\n\npip install --upgrade reportlab python-docx\n\n依赖\nPython 库: reportlab, python-docx\n系统字体: 中文字体（微软雅黑/黑体）\n许可\n\nMIT License"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/lirenweiM/word-to-pdf",
    "publisherUrl": "https://clawhub.ai/lirenweiM/word-to-pdf",
    "owner": "lirenweiM",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/word-to-pdf",
    "downloadUrl": "https://openagent3.xyz/downloads/word-to-pdf",
    "agentUrl": "https://openagent3.xyz/skills/word-to-pdf/agent",
    "manifestUrl": "https://openagent3.xyz/skills/word-to-pdf/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/word-to-pdf/agent.md"
  }
}