用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/flonat/claude-research --skill quarto-deck命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when you need to audit a research project against the init-project-research template.
Use when you need to validate a paper's bibliography — cross-references \cite{} keys against .bib files or embedded \bibitem entries, finds missing/unused/typo'd keys, and checks every key against the Paperpile library via the local resolver. Deep verification mode spawns parallel agents for DOI/metadata validation at scale. Fix mode rekeys drifted keys to canonical and stages missing entries for Paperpile.
Use when you need to bootstrap a full research project with directory scaffold and Overleaf symlink.
基于 SOC 职业分类
正在显示 SKILL.md
| name | quarto-deck |
| description | Use when you need to generate a Reveal.js HTML presentation from Markdown. |
| allowed-tools | Bash(reveal-md*), Bash(npx*), Bash(mkdir*), Bash(ls*), Bash(cp*), Bash(open*), Bash(R*), Bash(Rscript*), Bash(python*), Read, Write, Edit, Task |
| argument-hint | ["topic","content-path","or project-name"] |
Generate HTML presentations from Markdown using reveal-md. Applies the same rhetoric framework as
/beamer-deckbut outputs browser-native slides ideal for teaching, informal talks, and web sharing.
Create polished Reveal.js presentations from Markdown files. Every deck gets assertion-driven titles, narrative arc, and rhetoric review. Output is an HTML presentation that runs in any browser — no LaTeX needed.
Use this for: Teaching, informal research talks, web-shareable presentations, interactive demos.
Use /beamer-deck for: Conference talks, formal seminars, supervisor meetings, anything that needs PDF-native output.
Python: Always use uv run python. Never bare python, python3, pip, or pip3.
reveal-md (installed globally): npm install -g reveal-mduv run python or uv pip install. Never use bare python, python3, pip, or pip3. Include this instruction in any sub-agent prompts that may run Python..md file with --- separators.Note: keyword. Place after slide content, before the next ---.reveal-md <file>.md and check every slide.Same framework as /beamer-deck. Full reference (Three Laws, MB/MC, Aristotelian Triad, Narrative Arc, Pyramid Principle, Devil's Advocate, audience-specific guidance): ../shared/rhetoric-principles.md
Apply numeric quality scoring using the shared framework and skill-specific rubric:
../shared/quality-scoring.md — severity tiers, thresholds, verdict rulesreferences/quality-rubric.md — issue-to-deduction mappings for this skillStart at 100, deduct per issue found, apply verdict. Compute the score in Phase 6 and report it in the final output.
Full format reference with basic structure, vertical slides, fragments, custom themes, and CSS examples: references/markdown-format.md
Reference palettes (Professional, Energetic, Academic) with both LaTeX and CSS variants: ../shared/palettes.md
You (orchestrator)
├── Phase 1: Gather context (direct)
├── Phase 2: Design structure (direct)
├── Phase 3: Build deck (direct)
├── Phase 4: Preview & fix (direct)
├── Phase 5: Rhetoric review (sub-agent — Explore)
└── Phase 6: Apply & finalise (direct)
Read project files, content sources, and audience brief. Ask the user:
custom.cssPresent outline to the user for approval.
figures/.md file with YAML frontmatter and slide contentcustom.css if custom theming is neededreveal-md deck.mdNote: blocksreveal-md deck.md to preview in browserLaunch the same rhetoric review as /beamer-deck, adapted for Markdown:
subagent_type: Explore
prompt: |
You are a rhetoric reviewer for an academic Reveal.js presentation.
Read the file at: [PATH TO .md FILE]
Evaluate against these criteria:
## 1. Narrative Arc
- Three-act structure (Problem → Investigation → Resolution)?
- Opening: provocative question, statistic, or bold claim?
- Closing: single memorable takeaway?
## 2. MB/MC Balance
- Cognitive load distributed smoothly?
- Overloaded or underloaded slides?
## 3. Title Quality
- Every title an assertion (a claim), not a label?
## 4. One Idea Per Slide
- Any slide trying to convey multiple ideas?
## 5. Transitions
- Are transitions between slides explicit?
- Does the audience know where they are in the argument?
## 6. Pyramid Principle
- Conclusions before support?
Return structured markdown with ratings and specific slide suggestions.
references/quality-rubric.md, log all issues from Phases 4-5, compute score and verdictreveal-md deck.md --static _sitereveal-md deck.md --print deck.pdf| Command | What it does |
|---|---|
reveal-md deck.md | Live preview with hot reload (default port 1948) |
reveal-md deck.md --css custom.css | Preview with custom CSS |
reveal-md deck.md --static _site | Export to static HTML (shareable folder) |
reveal-md deck.md --print deck.pdf | Export to PDF (uses Puppeteer) |
reveal-md deck.md --port 3000 | Preview on custom port |
reveal-md deck.md --theme moon | Use built-in theme (moon, night, serif, etc.) |
Press s during preview to open speaker notes view.
Press f for fullscreen. Press o for slide overview.
A completed deck directory should contain:
project/
├── deck.md # Markdown presentation
├── custom.css # Custom theme (if used)
├── figures/ # Generated figures (if any)
│ ├── figure_1.png
│ └── ...
├── scripts/ # R/Python scripts for figures (if any)
│ ├── figure_1.R
│ └── ...
├── _site/ # Static HTML export (if generated)
└── deck.pdf # PDF export (if generated)
| Skill | When to use instead/alongside |
|---|---|
/beamer-deck | For formal academic presentations (conferences, seminars) that need PDF-native output |
/project-deck | For project status updates (supervisor meetings, coauthor handoffs) |
/proofread | For post-hoc review of text quality |
/literature | For finding and verifying citations to include |
/quarto-course | For full course websites with multiple lectures, exercises, and navigation |