Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计提醒

html-presentationsHTML presentations 搜索

Agent Skill

html-presentations 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

222

周安装

9

GitHub Stars

42

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:html-presentations(HTML presentations 搜索)
来源仓库:https://github.com/dexhorthy/slopfiles
仓库路径:skills/html-presentations
安装命令:
npx skills add https://github.com/dexhorthy/slopfiles --skill html-presentations
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dexhorthy/slopfiles --skill html-presentations

简介

html-presentations 可将 Markdown 规格文件转换为基于 Poimandres 主题的 HTML 演示文稿,支持幻灯片自动排版。

  • 适用于需要将技术规格、产品说明或会议材料快速转为可视化展示的场合,提升信息传达效率。
  • 通过解析 Markdown 中的标题层级和列表结构,自动生成带样式的 HTML 幻灯片,支持自定义主题样式。
  • 安装前需确认权限范围和维护状态,注意是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

HTML Presentations

Convert a markdown spec file into an HTML presentation using the Poimandres-themed template.

Files

  • Template: {SKILLBASE}/template/index.html
  • Example spec: {SKILLBASE}/examples/spec.md
  • Build script: {SKILLBASE}/scripts/create_standalone.sh

Instructions

  1. Read the spec markdown file (e.g., spec.md)
  2. Read the template at {SKILLBASE}/template/index.html
  3. Parse the spec file:

- Split on * * * to get individual slides - # Title = title slide (use <h1>) - ## Heading = slide heading (use <h2>) - - item = bullet list (use <ul><li>) - **bold** = emphasis (use <span class="accent"> or <span class="green">) - > quote = blockquote (use <blockquote class="quote">) - <img src="..."> = image (keep as-is, add class="shadow" if appropriate) - ``` `mermaid ` `` = mermaid diagram (wrap in <div class="mermaid-wrapper"><pre class="mermaid">) - <!-- image gallery - VERTICAL --> = split images into separate slides (one per slide) - <!-- comment --> = other layout hints (e.g., <!-- big quote -->`)

  1. Generate HTML slides:

- Each slide is a <section class="slide"> (add centered class for title/image slides) - Preserve the template's head section (styles, scripts, mermaid config) - Preserve the navigation and script at the bottom

  1. Write output to index.html in the same directory as the spec, offer to open it using Bash for the user
  2. OPTIONAL Create standalone shareable HTML: {SKILLBASE}/scripts/create_standalone.sh /path/to/presentation/folder

- Run the build script to embed all PNG images as base64 data URIs - Output: FOLDERNAME-standalone.html (e.g., 2026-01-05-luciq-presentation-standalone.html) - Creates a single self-contained file (~2-3MB) that opens in any browser

Slide Type Examples

Title Slide

<section class="slide centered">
  <h1>Presentation Title</h1>
  <p class="subtitle">Subtitle here</p>
</section>

Bullet Points

<section class="slide">
  <h2>Slide Title</h2>
  <ul>
    <li>Point with <span class="accent">emphasis</span></li>
    <li>Another point</li>
  </ul>
</section>

Big Quote

<section class="slide centered">
  <blockquote class="quote">
    "The quote text here"
  </blockquote>
</section>

Mermaid Diagram

<section class="slide centered">
  <h2>Diagram Title</h2>
  <div class="mermaid-wrapper">
    <pre class="mermaid">
graph LR
    A[Start] --> B[End]
    </pre>
  </div>
</section>

Image

<section class="slide centered">
  <h2>Image Title</h2>
  <img src="./image.png" alt="Description" class="shadow" />
</section>

Image Gallery (2 images side by side)

<section class="slide">
  <h2>Gallery Title</h2>
  <div class="columns">
    <div class="column">
      <p class="muted">Caption 1</p>
      <img src="./image1.png" alt="Image 1" />
    </div>
    <div class="column">
      <p class="muted">Caption 2</p>
      <img src="./image2.png" alt="Image 2" />
    </div>
  </div>
</section>

Vertical Image Gallery (one image per slide)

When spec contains <!-- image gallery - VERTICAL -->, split each image into its own slide:

<section class="slide centered">
  <h2>Section Title</h2>
  <p class="muted">Caption 1</p>
  <img src="./image1.png" alt="Image 1" class="shadow" style="max-height: 55vh;" />
</section>

<section class="slide centered">
  <h2>Section Title</h2>
  <p class="muted">Caption 2</p>
  <img src="./image2.png" alt="Image 2" class="shadow" style="max-height: 55vh;" />
</section>

Available CSS Classes

Slide Classes

  • .slide - base slide
  • .slide.centered - center content
  • .slide.top - align to top

Color Classes

  • .accent - light blue (#ADD7FF)
  • .green - mint green (#5DE4c7)
  • .yellow - soft yellow (#fffac2)
  • .pink - pink (#d0679d)
  • .cyan - cyan (#89ddff)
  • .muted - dim gray

Layout Classes

  • .columns - two-column grid
  • .split - image + text side by side
  • .gallery - flex gallery for multiple images

Element Classes

  • .subtitle - smaller subtitle text
  • .small - smaller text
  • .quote - styled blockquote
  • .big-number - large stat/number
  • .badge - tag/badge element
  • .reveal - progressive reveal item (use with data-progressive)

Progressive Reveal

Add data-progressive to a slide to reveal content one item at a time on advance.

How it works:

  • Slide starts with title visible, all <li> and .reveal elements hidden
  • Each advance (→, Space, or Next button) reveals the next item
  • When all items are visible, next advance goes to the next slide
  • Going back shows previous slide with all items visible

Note: Progressive slides use padding-top: 15vh instead of vertical centering to prevent layout shift as items reveal.

Progressive Bullet Points

<section class="slide" data-progressive>
  <h2>Key Points</h2>
  <ul>
    <li>First point (revealed on first advance)</li>
    <li>Second point (revealed on second advance)</li>
    <li>Third point (revealed on third advance)</li>
  </ul>
</section>

Progressive Custom Elements

Use .reveal class for non-list items:

<section class="slide centered" data-progressive>
  <h2>Before & After</h2>
  <div class="reveal">
    <p class="muted">Before</p>
    <div class="mermaid-wrapper">
      <pre class="mermaid">graph LR; A-->B</pre>
    </div>
  </div>
  <div class="reveal">
    <p class="muted">After</p>
    <div class="mermaid-wrapper">
      <pre class="mermaid">graph LR; A-->B-->C-->D</pre>
    </div>
  </div>
  <p class="reveal muted">Summary text revealed last</p>
</section>

Progressive Image Gallery

<section class="slide centered" data-progressive>
  <h2>Feature Walkthrough</h2>
  <div style="display: flex; gap: 30px; justify-content: center;">
    <div class="reveal" style="text-align: center;">
      <p class="muted">Step 1</p>
      <img src="./step1.png" class="shadow" />
    </div>
    <div class="reveal" style="text-align: center;">
      <p class="muted">Step 2</p>
      <img src="./step2.png" class="shadow" />
    </div>
    <div class="reveal" style="text-align: center;">
      <p class="muted">Step 3</p>
      <img src="./step3.png" class="shadow" />
    </div>
  </div>
</section>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.12%
按下载量换算25

Claude

30.49%
按下载量换算21

Cursor

18.4%
按下载量换算13

Gemini CLI

9.49%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills