Detalle del Skill
sci-html
Creates browser-based academic HTML slide decks.
Revisar antes de usar
La revisión automática comprueba relevancia, no seguridad ni respaldo. Lee las instrucciones de la fuente antes de usar este Skill.
SKILL.md
Este extracto es una copia guardada durante la revisión. La fuente externa contiene la versión completa y actual.
---
name: sci-html
description: Generate academic presentation-style HTML slide decks and browser reports from PDFs, structured text, Markdown, paper summaries, outlines, or research notes. Use whenever the user wants to convert a scientific paper PDF directly into an interactive HTML report, clickable web presentation, shareable browser deck, or PPT-like HTML output with figures, structured insights, section pages, and offline deck-directory output. In the Aut_Sci_Write suite, choose this skill when the user wants HTML/web output; choose sci-ppt when they explicitly need a .pptx file.
author: Shuo Zhao
license: MIT
copyright: Copyright (c) 2026 Shuo Zhao. All rights reserved.
triggers:
- html slides
- HTML report
- paper to html
- browser presentation
- interactive paper report
- web presentation
- clickable slides
- academic HTML
- Markdown to HTML deck
- PDF to HTML report
- html academic report
- web academic report
- interactive literature report
- paper html report
- ppt-like html
- offline html deck
---
# Sci HTML
Use this skill to create browser-based academic slide decks inside the Aut_Sci_Write suite. It can work from prepared Markdown/JSON, or run the full paper workflow from PDF to structured insights, extracted figures, and HTML deck.
Use `sci-html` for shareable browser output. Use `sci-ppt` when the user needs a real `.pptx`. Use `sci-extract` when the user only wants a text analysis without a presentation artifact.
## When To Use
Use this skill when the user asks for HTML slides, clickable presentation webpages, browser-based academic presentations, Markdown to slide deck, paper summary to web presentation, PDF paper to HTML report, or a PPT-like HTML file with left/right navigation.
## Output
Always create a deck directory containing `index.html`, `deck.json`, `assets/style.css`, `assets/deck.js`, and copied local figures under `assets/figures/`.
Do not create single-file HTML. Directory output is the standard mode because it keeps the presentation maintainable and avoids oversized embedded assets.
## Workflow
1. Parse the user's source content into a deck model.
2. Add cover, table of contents, section, summary, and ending slides when appropriate.
3. Validate image paths and slide structure.
4. Render HTML, CSS, and JS.
5. Tell the user the output path and navigation controls.
## PDF Paper Workflow
For a source PDF, use the integrated `paper` command rather than requiring separate `sci-extract` or `sci-figure` skills:
```bash
python scripts/generate_html_deck.py paper paper.pdf -o out/paper-report --author "Presenter"
```
When working from the Aut_Sci_Write repository root, run:
```bash
python skills/sci-html/scripts/generate_html_deck.py paper paper.pdf -o skills/sci-html/out/paper-report --author "Presenter"
```
This writes `structured_insights.json`, `figure_manifest.json`, extracted files under `figures/`, a generated `{paper-stem}-deck.md`, and the final `index.html`.
The PDF workflow uses bundled integrations copied from `sci-extract` and `sci-figure`. It requires `PyMuPDF`, `pdfplumber`, `numpy`, `opencv-python`, `Pillow`, and `pytesseract`; Tesseract OCR is optional and only affects subfigure OCR.
The integrated `sci-extract` logic detects original research versus review literature. Original research decks emphasize problem, method, results, innovation, applications, and limits. Review, survey, systematic review, scoping review, and meta-analysis decks emphasize scope, taxonomy, evidence base, consensus, controversies, evidence quality, research gaps, future directions, and important figures or tables. Use `--paper-type auto|research|review` when the user wants to override automatic routing.
## Presentation Markup
- Put `layout: section` at the top of a Markdown slide block to create a chapter divider.
- Put `subtitle: 01` below `layout: section` to show the chapter number.
- Use `**key phrase**` or `==key phrase==` for red emphasis.
- Keep bullets cLeer la fuente completa en GitHub (abre una página externa)