{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tiangong-wps-ppt-automation",
    "name": "PowerPoint Automation",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Fadeloo/tiangong-wps-ppt-automation",
    "canonicalUrl": "https://clawhub.ai/Fadeloo/tiangong-wps-ppt-automation",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tiangong-wps-ppt-automation",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tiangong-wps-ppt-automation",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/wps_ppt_automation.py"
    ],
    "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/tiangong-wps-ppt-automation"
    },
    "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/tiangong-wps-ppt-automation",
    "agentPageUrl": "https://openagent3.xyz/skills/tiangong-wps-ppt-automation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tiangong-wps-ppt-automation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tiangong-wps-ppt-automation/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": "WPS/PowerPoint Automation (Windows)",
        "body": "Use the bundled Python script to control PowerPoint or WPS Presentation via COM."
      },
      {
        "title": "Requirements",
        "body": "Windows with Microsoft PowerPoint or WPS Presentation installed.\nPython + pywin32 (python -m pip install pywin32)."
      },
      {
        "title": "Quick start",
        "body": "python {baseDir}/scripts/wps_ppt_automation.py read --input \"C:\\path\\file.pptx\"\npython {baseDir}/scripts/wps_ppt_automation.py export --input \"C:\\path\\file.pptx\" --format pdf --output \"C:\\path\\out.pdf\""
      },
      {
        "title": "read",
        "body": "Extract all slide text.\n\npython {baseDir}/scripts/wps_ppt_automation.py read --input \"C:\\path\\file.pptx\" --output \"C:\\path\\out.txt\""
      },
      {
        "title": "notes",
        "body": "Extract speaker notes.\n\npython {baseDir}/scripts/wps_ppt_automation.py notes --input \"C:\\path\\file.pptx\" --output \"C:\\path\\notes.txt\""
      },
      {
        "title": "outline",
        "body": "Export slide titles as outline.\n\npython {baseDir}/scripts/wps_ppt_automation.py outline --input \"C:\\path\\file.pptx\" --output \"C:\\path\\outline.txt\""
      },
      {
        "title": "export",
        "body": "Export to PDF or images (PNG).\n\npython {baseDir}/scripts/wps_ppt_automation.py export --input \"C:\\path\\file.pptx\" --format pdf --output \"C:\\path\\out.pdf\"\npython {baseDir}/scripts/wps_ppt_automation.py export --input \"C:\\path\\file.pptx\" --format images --outdir \"C:\\out\\slides\""
      },
      {
        "title": "replace",
        "body": "Find/replace text across slides.\n\npython {baseDir}/scripts/wps_ppt_automation.py replace --input \"C:\\path\\file.pptx\" --find \"old\" --replace \"new\" --save \"C:\\path\\out.pptx\""
      },
      {
        "title": "slides",
        "body": "Insert or delete slides.\n\npython {baseDir}/scripts/wps_ppt_automation.py insert-slide --input \"C:\\path\\file.pptx\" --index 2 --save \"C:\\path\\out.pptx\"\npython {baseDir}/scripts/wps_ppt_automation.py delete-slide --input \"C:\\path\\file.pptx\" --index 3 --save \"C:\\path\\out.pptx\""
      },
      {
        "title": "font",
        "body": "Unify font name/size across slides.\n\npython {baseDir}/scripts/wps_ppt_automation.py font --input \"C:\\path\\file.pptx\" --name \"Microsoft YaHei\" --size 20 --save \"C:\\path\\out.pptx\""
      },
      {
        "title": "theme",
        "body": "Apply a theme (.thmx).\n\npython {baseDir}/scripts/wps_ppt_automation.py theme --input \"C:\\path\\file.pptx\" --theme \"C:\\path\\theme.thmx\" --save \"C:\\path\\out.pptx\""
      },
      {
        "title": "extract-images",
        "body": "Export embedded images.\n\npython {baseDir}/scripts/wps_ppt_automation.py extract-images --input \"C:\\path\\file.pptx\" --outdir \"C:\\out\\images\""
      },
      {
        "title": "Notes",
        "body": "If WPS is installed, try --app wps; otherwise default uses PowerPoint.\nUse --visible true if you need to watch the UI.\nAvoid batch usage; this skill is for single-presentation operations."
      }
    ],
    "body": "WPS/PowerPoint Automation (Windows)\n\nUse the bundled Python script to control PowerPoint or WPS Presentation via COM.\n\nRequirements\nWindows with Microsoft PowerPoint or WPS Presentation installed.\nPython + pywin32 (python -m pip install pywin32).\nQuick start\npython {baseDir}/scripts/wps_ppt_automation.py read --input \"C:\\path\\file.pptx\"\npython {baseDir}/scripts/wps_ppt_automation.py export --input \"C:\\path\\file.pptx\" --format pdf --output \"C:\\path\\out.pdf\"\n\nCommands\nread\n\nExtract all slide text.\n\npython {baseDir}/scripts/wps_ppt_automation.py read --input \"C:\\path\\file.pptx\" --output \"C:\\path\\out.txt\"\n\nnotes\n\nExtract speaker notes.\n\npython {baseDir}/scripts/wps_ppt_automation.py notes --input \"C:\\path\\file.pptx\" --output \"C:\\path\\notes.txt\"\n\noutline\n\nExport slide titles as outline.\n\npython {baseDir}/scripts/wps_ppt_automation.py outline --input \"C:\\path\\file.pptx\" --output \"C:\\path\\outline.txt\"\n\nexport\n\nExport to PDF or images (PNG).\n\npython {baseDir}/scripts/wps_ppt_automation.py export --input \"C:\\path\\file.pptx\" --format pdf --output \"C:\\path\\out.pdf\"\npython {baseDir}/scripts/wps_ppt_automation.py export --input \"C:\\path\\file.pptx\" --format images --outdir \"C:\\out\\slides\"\n\nreplace\n\nFind/replace text across slides.\n\npython {baseDir}/scripts/wps_ppt_automation.py replace --input \"C:\\path\\file.pptx\" --find \"old\" --replace \"new\" --save \"C:\\path\\out.pptx\"\n\nslides\n\nInsert or delete slides.\n\npython {baseDir}/scripts/wps_ppt_automation.py insert-slide --input \"C:\\path\\file.pptx\" --index 2 --save \"C:\\path\\out.pptx\"\npython {baseDir}/scripts/wps_ppt_automation.py delete-slide --input \"C:\\path\\file.pptx\" --index 3 --save \"C:\\path\\out.pptx\"\n\nfont\n\nUnify font name/size across slides.\n\npython {baseDir}/scripts/wps_ppt_automation.py font --input \"C:\\path\\file.pptx\" --name \"Microsoft YaHei\" --size 20 --save \"C:\\path\\out.pptx\"\n\ntheme\n\nApply a theme (.thmx).\n\npython {baseDir}/scripts/wps_ppt_automation.py theme --input \"C:\\path\\file.pptx\" --theme \"C:\\path\\theme.thmx\" --save \"C:\\path\\out.pptx\"\n\nextract-images\n\nExport embedded images.\n\npython {baseDir}/scripts/wps_ppt_automation.py extract-images --input \"C:\\path\\file.pptx\" --outdir \"C:\\out\\images\"\n\nNotes\nIf WPS is installed, try --app wps; otherwise default uses PowerPoint.\nUse --visible true if you need to watch the UI.\nAvoid batch usage; this skill is for single-presentation operations."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Fadeloo/tiangong-wps-ppt-automation",
    "publisherUrl": "https://clawhub.ai/Fadeloo/tiangong-wps-ppt-automation",
    "owner": "Fadeloo",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tiangong-wps-ppt-automation",
    "downloadUrl": "https://openagent3.xyz/downloads/tiangong-wps-ppt-automation",
    "agentUrl": "https://openagent3.xyz/skills/tiangong-wps-ppt-automation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tiangong-wps-ppt-automation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tiangong-wps-ppt-automation/agent.md"
  }
}