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

slideclawslideclaw 效率

Agent Skill

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

总安装

3,236

周安装

139

GitHub Stars

公开资料未说明

下载量

1,134
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install slideclaw

简介

将其用于 SlideClaw/Marp 套牌任务(例如“SlideClawでsuraイド作って”、“MarpをPDF化して”、“テンプure保存して”)。

SKILL.md

name
slideclaw
description
Use this for SlideClaw/Marp deck tasks (e.g. "SlideClawでスライド作って", "MarpをPDF化して", "テンプレ保存して").
user-invocable
true
metadata
{"openclaw":{"homepage":"https://github.com/akamichikota/SlideClaw","requires":{"bins":["node"]},"install":[{"id":"node","kind":"node","package":"slideclaw","bins":["slideclaw"],"label":"Install SlideClaw CLI"}]}}

SlideClaw Skill (OpenClaw + ClawHub)

Use this skill to run end-to-end Marp slide production with SlideClaw.

When to use

  • User asks to create slides with Marp.
  • User asks to turn a topic or requirements into a deck.
  • User asks to render slides.md to PDF/HTML/PPTX/PNG.
  • User asks to reuse or save slide design templates.

When not to use

  • Task is not about slides/Marp.
  • User only wants generic writing without file operations.
  • User asks for a different slide stack (e.g., Google Slides API directly).

ClawHub-first assumptions

This skill is designed to work even when installed from ClawHub into a workspace that does not have this repository cloned.

  • Prefer a local slideclaw binary when available.
  • Otherwise use npx -y slideclaw@latest.
  • If this is not yet a SlideClaw workspace, initialize it in the current directory.

Command resolver (use this order)

  1. If slideclaw exists on PATH, use it.
  2. Else if ./bin/slideclaw.js exists, use node ./bin/slideclaw.js.
  3. Else use npx -y slideclaw@latest.

In steps below, treat <SC> as the resolved command prefix.

Examples:

<SC> doctor
<SC> --json template list
<SC> render <project-id> --format pdf

Bootstrap flow (required before doing slide work)

  1. Run health check:
<SC> doctor
  1. If workspace marker .slideclaw/ is missing, initialize in current directory:
<SC> init . --with-starter-template
  1. Re-check:
<SC> doctor

If any required dependency is missing, report clearly and stop before content work.

Inputs to collect from user

Ask only what is required:

  • Purpose (required)
  • Audience (required)
  • Topic (required)
  • Duration / slide count (optional)
  • Tone (optional)

Limit to 4 questions in one round.

End-to-end workflow

[1] Resolve <SC> and bootstrap workspace
[2] Confirm requirements
[3] Pick template (or create new design)
[4] Create project
[5] Fill requirements.md
[6] Write slides.md
[7] Render HTML for fast validation
[8] Render PDF for final output
[9] Confirm with user, iterate if needed
[10] Mark done and optionally save template
[11] Update profile/user.md

Step 1. Template selection

Always use CLI JSON output:

<SC> --json template list

Rules:

  • Do not force one template without user confirmation.
  • Present all candidates in one short list.
  • Include "create a new design" as an option.

If no template exists, continue with project creation without template and create style in project theme.css.

Step 2. Create project

Always pass explicit kebab-case ID:

<SC> project new "<name>" \
  --id 2026-04-09-topic-name \
  --template <template-id> \
  --title "<title>" \
  --audience "<audience>" \
  --goal "<goal>"

If no template is selected, omit --template.

Step 3. Update requirements.md

Edit:

  • Background
  • Must-include points
  • Open questions

Then share a 3-5 line summary and wait for user confirmation.

Step 4. Write slides.md

Use pure Marp frontmatter only:

marp: true
theme: <theme_name>
paginate: true
size: 16:9

Rules:

  • Separator is --- on its own line.
  • Put assets under assets/ and reference with relative paths.
  • Keep slide density aligned with profile/user.md preferences.
  • Do not add SlideClaw-specific keys to slides.md frontmatter.

Step 5. Render and validate

  1. Fast render first:
<SC> render <project-id> --format html
  1. Final render:
<SC> render <project-id> --format pdf
  1. Share the output path with the user. Prefer the Downloads path when reporting, because it is easier for the user to open:
  • Primary (workspace): projects/<project-id>/build/slides.pdf
  • User-facing (Downloads): <OS Downloads dir>/<project-id>.pdf

slideclaw render automatically copies the rendered file to the user's OS-standard Downloads folder (macOS ~/Downloads, Linux xdg-user-dir DOWNLOAD, WSL Windows-side /mnt/c/Users/<user>/Downloads, Windows %USERPROFILE%\Downloads). Use <SC> --json render ... and read downloadsPath to get the exact path. To disable: --no-copy-to-downloads or SLIDECLAW_NO_DOWNLOADS=1.

Step 6. Iterate and complete

  • Apply feedback loops until approved.
  • After approval, update requirements.md:

- status: done - updated_at: <now>

Avoid project finish in interactive review loops because it can run actions before user confirmation.

Step 7. Optional template promotion

When user likes the design, save it:

<SC> template new <new-id> --from <project-id> \
  --name "<display name>" \
  --description "<short description>" \
  --tags "tag1,tag2" \
  --when-to-use "<usage guidance>"

If a draft template was created in templates/.drafts/, do not leave it orphaned. Promote or delete it.

Step 8. Update user profile

Update profile/user.md with durable preferences only:

  • Do / Don't patterns
  • Preferred style density
  • Topic tendencies
  • Known constraints

Validate after edit:

<SC> profile validate

Hard constraints

  • Do not manually edit tool-managed files unless necessary:

- templates/INDEX.md - meta.md - template used_in

  • Do not run destructive commands without explicit user intent.
  • Do not claim success without render output path verification.

Failure handling

  • If slideclaw is unavailable and npx fails, tell the user exactly which dependency is missing.
  • If Chrome is missing, explain PDF will fail and suggest HTML output first.
  • If schema validation fails, fix frontmatter against docs/SCHEMAS.md when available.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.1%
按下载量换算795

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills