Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

claw-presenter爪式演示器

Agent Skill

claw-presenter 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,856

周安装

119

GitHub Stars

公开资料未说明

下载量

952
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install claw-presenter

简介

准备PPT/PDF讲解稿。将幻灯片转为图片并生成逐页演讲词。触发词:准备PPT讲解稿、准备演讲稿、生成演讲词、prepare presentation narration.

SKILL.md

name
claw-presenter
description
准备PPT/PDF讲解稿。将幻灯片转为图片并生成逐页演讲词。触发词:准备PPT讲解稿、准备演讲稿、生成演讲词、prepare presentation narration.
user-invocable
true
metadata
openclaw
emoji
🎤
setup
setup.sh
requires
bins

🎤 Claw Presenter — Prepare Presentation Narration

Converts PPT/PPTX/PDF files into a ready-to-present package: per-slide images + narration scripts.

What This Skill Does

Two jobs only:

  1. Split — Convert each slide/page into a PNG image
  2. Script — Generate a narration script for each slide

Output is a folder that Claw Body can load for presentation playback with digital avatar narration.

Works With Claw Body

This skill is designed to pair with the claw-body skill (digital avatar). The workflow:

  1. Claw Presenter (this skill) → parses PPT/PDF, generates slide images + narration scripts
  2. Claw Body → loads the output folder, displays slides with the digital avatar narrating each page

Typical usage:

  1. User: "帮我准备 xxx.pptx 的讲解稿" → triggers claw-presenter
  2. After preparation is done, user: "讲解 presentations/xxx" → triggers claw-body presentation mode
⚠️ Make sure the claw-body skill is also installed if you want avatar-powered presentation playback.

When To Use

When user says anything like:

  • "帮我准备PPT讲解稿"
  • "准备讲解 xxx.pptx"
  • "帮我准备演讲稿"
  • "生成PPT演讲词"
  • "prepare presentation for xxx.pdf"
  • "生成演讲词"
  • "准备讲稿"

Do NOT use this skill when user just says "讲PPT" without preparation — that implies they want to present, and they should use Claw Body's presentation mode with an already-prepared folder.

Step 0: Get the File

If user didn't provide a file path, ask:

"请告诉我PPT/PDF文件的路径,例如 ~/Desktop/我的演讲.pptx"

Wait for user to provide the path before proceeding.

Step 1: Parse the File

Run the parse script to extract slides and text:

python3 <skill-dir>/scripts/parse-presentation.py "<file-path>"

This creates:

<workspace>/presentations/<filename>/
  presentation.json    — metadata, per-slide text, notes
  slides/
    001.png, 002.png, ...

Step 2: Generate Narration Scripts

After parsing, read presentation.json. For each slide:

  • If slide.script is already filled (from speaker notes) → keep it, but optionally polish
  • If slide.script is empty → generate natural narration based on slide.title and slide.content

Style Guidelines

Ask the user (if not specified):

  • 风格: 正式汇报 / 轻松分享 / 教学讲解 / 幽默风趣
  • 受众: 老板/领导 / 同事 / 客户 / 学生
  • 语言: 中文 / English / 跟随原文
  • 时长: 简短(每页15-30秒)/ 标准(30-60秒)/ 详细(1-2分钟)

Writing Good Narration

  • Open naturally: "首先我们来看..." / "接下来..."
  • Don't just read the slide — explain, add context, connect to previous slide
  • Keep transitions smooth between slides
  • Match the style throughout

Step 3: Save the Scripts

After generating all scripts, update presentation.json — fill in the script field for each slide, then write back:

# Read, update scripts, write back
import json
with open('<output-dir>/presentation.json', 'r') as f:
    data = json.load(f)
for slide in data['slides']:
    if not slide['script']:
        slide['script'] = '<your generated narration>'
with open('<output-dir>/presentation.json', 'w') as f:
    json.dump(data, f, ensure_ascii=False, indent=2)

Step 4: Confirm with User

Show a summary:

📊 演讲稿准备完成! - 文件: xxx.pptx - 共 12 页,其中 3 页使用了原始备注,9 页已生成演讲词 - 风格: 轻松分享 - 输出目录: presentations/xxx/ 你可以: - 预览/修改某页的演讲词 - 在 Claw Body 中说"讲解 presentations/xxx" 开始演讲 - 或直接在这里文字预览

Output Format

presentation.json structure:

{
  "source": "filename.pptx",
  "total_pages": 12,
  "output_dir": "/path/to/presentations/filename",
  "slides": [
    {
      "page": 1,
      "title": "封面",
      "content": ["标题文字", "副标题"],
      "notes": "原始备注",
      "has_notes": true,
      "image": "slides/001.png",
      "script": "各位好,今天我来跟大家分享..."
    }
  ]
}

Setup

Run the setup script to install all dependencies:

bash <skill-dir>/setup.sh

Or install manually:

Python Packages

pip3 install python-pptx Pillow pdf2image pdfplumber

System Dependencies

poppler (required — converts PDF to images):

PlatformCommand
macOS (Homebrew)brew install poppler
Debian / Ubuntusudo apt-get install -y poppler-utils
Fedora / RHELsudo dnf install -y poppler-utils
Archsudo pacman -S poppler

LibreOffice (optional — high-fidelity PPTX→image conversion):

PlatformCommand
macOS (Homebrew)brew install --cask libreoffice
Debian / Ubuntusudo apt-get install -y libreoffice
Otherlibreoffice.org/download
Without LibreOffice, PPTX slides will fall back to simple text rendering (lower quality images).

Verify Installation

python3 -c "import pptx; print('python-pptx ✅')"
python3 -c "from PIL import Image; print('Pillow ✅')"
python3 -c "from pdf2image import convert_from_path; print('pdf2image ✅')"
which pdftoppm && echo "poppler ✅"
which soffice && echo "LibreOffice ✅" || echo "LibreOffice ❌ (optional)"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.57%
按下载量换算834

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills