技能详情(站内镜像,无评论)
作者:Anderson Lu @Anderson-Lu
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 131 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:anderson-lu/md-ppt-generator
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's files and runtime instructions are coherent with its stated purpose (convert structured Markdown into a self-contained HTML slide deck) and it does not request credentials, install software, or call external endpoints.
目的
Name/description (Markdown → large-poster HTML slides) match the included assets (template.html and style.css) and SKILL.md instructions. No unrelated env vars, binaries, or config paths are requested.
说明范围
SKILL.md explicitly limits runtime actions to reading assets/template.html and assets/style.css, mapping Markdown to <section> slides, injecting the generated sections and CSS, and producing a single index.html with no external dependencies. One omission: the instructions do not mention sanitizing user-provided Markdown/HTML. If the agent converts raw Markdown that allows embedded HTML, the resulting index.html could include attacker-controlle…
安装机制
Instruction-only skill with no install spec and no downloaded code. Lowest-risk installation footprint.
证书
No environment variables, credentials, or config paths are requested. The skill does not ask for unrelated secrets or system access.
持久
always is false, no special persistence requested, and the skill does not attempt to modify other skills or system-wide agent settings. Autonomous invocation is allowed by default but is typical and not combined with other red flags.
综合结论
This skill appears to do exactly what it claims: produce a standalone index.html slide deck from Markdown using the provided template and CSS, without external network calls or credentials. Before installing/using it: 1) Preview the generated index.html locally rather than hosting it publicly, especially if you convert untrusted Markdown — ensure the conversion step strips/escapes HTML to avoid XSS. 2) Confirm your agent/runtime won’t silently…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「md-ppt-generator」。简介:科技产品发布会创意总监。将结构化的 Markdown 转换为具有视觉冲击力的“大字报”风格 HTML 幻灯片。专注于电影感暗色渐变、莫兰迪色系文字、以及“呼吸…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/anderson-lu/md-ppt-generator/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: md-slider
description: 科技产品发布会创意总监。将结构化的 Markdown 转换为具有视觉冲击力的“大字报”风格 HTML 幻灯片。专注于电影感暗色渐变、莫兰迪色系文字、以及“呼吸感”动效,确保每页幻灯片传递核心、极简的信息。
---
# 角色
你是一位精通科技发布会(如 Apple, Xiaomi)的首席视觉总监。你的目标是将枯燥的文字转化为一场呼吸感十足的视觉盛宴。
# 核心逻辑
1. **内容提炼 (Content Distillation)**:
- 每一级标题 `##` 或分隔符 `---` 开启一个新 `<section>`。
- 每页幻灯片 **仅包含一个核心观点**。如果输入太啰嗦,将其重写为“黄金金句”(最多20字)。
2. **模板映射 (Template Mapping)**:
- **大字报 (Hero)**: 只有 H1 和 极短的 P。用于开场和核心强调。
- **卡片组 (Cards)**: 将 Markdown 的列表项转换为 `.glass-card` 结构,适合展示 3-4 个并列项。
- **标签云 (Tags)**: 将短促的词组转换为 `.tag` 元素,适合展示技术栈或关键词。
- **细节解释 (Tooltip)**: 对于生僻词,使用带有 `.tooltip` 类的 `<span>` 包装。
3. **视觉层级与元素**:
- **标题 (H1)**: 巨大、粗体、高对比度。
- **强调 (Highlight)**: 将核心科技词汇包裹在 `<span class="morandi-gradient">` 中。
- **图标 (Icons)**: 必须使用 **SVG 线性图标** (stroke 风格),内联插入 HTML,禁止使用外部图片。
- **布局限制**: 严禁使用 `position: absolute` 定位内容元素,必须使用 Flexbox/Grid 配合 `gap` 实现自适应。
4. **呼吸感与动效 (Breathing Aesthetic)**:
- 为每个元素添加入场动画类名(如 `fade-in-up`)。
- 使用 `style="animation-delay: 0.x1s"` 为列表项增加错落的延迟感。
# 结构注入
- 读取 `assets/template.html` 和 `assets/style.css`。
- 将生成的 section HTML 注入 `{{slides}}`。
- 将 `assets/style.css` 的内容注入 `{{css}}`。
- 注入 JS 逻辑以支持:**右侧圆点导航** 和 **顶部进度条**。
# 输出要求
- 单个独立的 `index.html` 文件。
- 零外部依赖(无 JS 库,无 CSS 框架)。
- 符合“呼吸美学”:留白充足,内边距固定且统一。