Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

qoderwork-ppt-jackqoderwork ppt 插孔

Agent Skill

qoderwork-ppt-jack 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,892

周安装

248

GitHub Stars

公开资料未说明

下载量

2,063
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:qoderwork-ppt-jack(qoderwork ppt 插孔)
来源仓库:https://github.com/jackwang2999/qoderwork-ppt-jack
安装命令:
openclaw skills install qoderwork-ppt-jack
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install qoderwork-ppt-jack

简介

生成 QorderWork 风格的演示文稿。根据您的主题自动匹配 14 个模板并输出可编辑的 .pptx 文件。

SKILL.md

name
qoderwork-ppt
version
1.0.0
description
Generate QoderWork-style presentations. Automatically matches 14 templates based on your topic and outputs an editable .pptx file.
description_zh
生成 QoderWork 风格演示文稿。根据主题自动匹配 14 种模板,输出可编辑的 .pptx 文件。
category
content-creation

QoderWork-PPT

When a user wants to generate a QoderWork-style presentation, use this skill. Based on the user's topic and requirements, it automatically generates content, matches suitable templates, and outputs an editable PowerPoint file.

Execution Flow

0. Prepare output directory

Create the output directories if they don't exist:

mkdir -p output output/images

1. Understand requirements & generate content document

Read rules/content-rules.md (in this skill directory), then convert the user's requirements into a structured content document at output/content.md.

  • Extract from user input: topic, audience, key points, page count preferences, etc.
  • Generate a well-structured plain-text document following content-rules
  • Content should be complete, logically clear, and ready for template matching
  • CRITICAL — page budget: unless the user explicitly requests more, plan for 8–15 slides total (including cover, TOC, section dividers, and closing). Count your planned slides before proceeding to step 2. If the outline exceeds 15, merge or cut sections.

2. Match templates & generate slide sequence

Read rules/template-matching.md and templates/manifest.json, then generate output/slides.json based on content.md.

  • slides.json array length MUST be ≤ 15 (unless the user explicitly requested more). Count before writing the file.
  • Format per slide: { "templateId": "xxx", "slots": { "slotId": "value", ... } }
  • A full example (one slide per template type) is available at rules/slides-example.json — copy and adapt it
  • Strictly follow template-matching rules; slot values must conform to manifest constraints (type, maxLength, etc.)

Cover background:cover 模板的 coverBackground 槽位勿主动填写,使用模板默认背景。仅当用户明确要求自定义封面图时才填。

Section-divider 插图:03 章节分隔页右侧的 image 槽位尽量勿填,使用模板默认插图。仅当用户明确要求更换章节配图时才填。

Image slots (type: image) accept any of:

FormatExampleWhen to use
lucide:<icon-name>lucide:shield-checkIcon-style images (preferred for column cards in 06/07/08)
Image URLhttps://example.com/photo.jpgWeb images
Local pathoutput/images/slide-03.pngAfter generating/saving an image locally

When you must generate/search for real images: slots marked aiGeneratable: true that need a real photograph or illustration (not an icon) — typically section-divider image, content-left-text-right-image image, and full-image background. Call generate_image or web_search to obtain them, save to output/images/, and fill the path into slots. These image slots are required — do NOT leave the default placeholder.

3. Fill HTML templates

Working directory (cwd): must be the project root (where output/ lives).

Script path: relative to this skill directory. Replace SKILL_SCRIPTS below with the actual path (e.g., resources/skills-market/qoderwork-ppt/scripts if using this repo as workspace, or ~/.qoderwork/skills/qoderwork-ppt/scripts if installed from market).

Optional — validate first:

node SKILL_SCRIPTS/validate-slides.js output/slides.json

Then fill templates (or use the one-click pipeline below):

node SKILL_SCRIPTS/fill-template.js output/slides.json

Recommended — one-click pipeline (steps 3+4 combined):

node SKILL_SCRIPTS/run-pipeline.js output/slides.json

Output file is auto-named with a timestamp (e.g. output/presentation-2026-03-06-10-30-00.pptx) to avoid overwriting previous runs.

4. Convert to PPTX

If you didn't use the one-click pipeline above, run separately:

node SKILL_SCRIPTS/html-to-pptx-dom.js output/filled

Reads filled HTML from output/filled/, renders via Puppeteer, and converts to PPTX using dom-to-pptx — preserving background images, rounded corners, fonts, and full styling.

5. Inform the user

Tell the user the PPT has been generated at output/presentation.pptx, with a brief summary of page count and structure.

Resumability (Agent checkpoint recovery)

  • Step 1: If output/content.md already exists and the user didn't ask to "regenerate content", skip to step 2.
  • Step 2: Always (re-)generate output/slides.json from content.md.
  • Step 3+4: If only slides.json changed, just re-run run-pipeline.js (overwrites output/filled/ and output/presentation.pptx).

Key Files (in this skill directory)

FilePurpose
rules/content-rules.mdContent generation rules & document structure
rules/template-matching.mdTemplate matching rules & image slot conventions
rules/slides-example.jsonFull slides.json example (one slide per template type)
templates/manifest.json14 template definitions with slot specs
templates/*.html14 HTML template files (1920×1080)
scripts/validate-slides.jsPre-validation for slides.json
scripts/fill-template.jsFills slot values into HTML templates
scripts/html-to-pptx-dom.jsHigh-fidelity HTML → PPTX conversion
scripts/run-pipeline.jsOne-click: validate → fill → convert

Output Files (in project root output/)

FilePurpose
output/content.mdIntermediate: structured content
output/slides.jsonIntermediate: slide sequence + slot values
output/images/Generated/downloaded images for slides
output/filled/*.htmlFilled single-page HTML files
output/presentation.pptxFinal PowerPoint file

Dependencies

Before first use, install dependencies in this skill directory:

cd <path-to-this-skill-directory> && npm install

Required packages: jsdom, puppeteer, dom-to-pptx, lucide-static. Icons are loaded from local lucide-static (no network at runtime).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.02%
按下载量换算1,610

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills