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
for shareable browser output. Use
when the user needs a real
. Use
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
,
,
,
, and copied local figures under
.
Do not create single-file HTML. Directory output is the standard mode because it keeps the presentation maintainable and avoids oversized embedded assets.
Workflow
- Parse the user's source content into a deck model.
- Add cover, table of contents, section, summary, and ending slides when appropriate.
- Validate image paths and slide structure.
- Render HTML, CSS, and JS.
- Tell the user the output path and navigation controls.
PDF Paper Workflow
For a source PDF, use the integrated
command rather than requiring separate
or
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
,
, extracted files under
, a generated
, and the final
.
The PDF workflow uses bundled integrations copied from
and
. It requires
,
,
,
,
, and
; Tesseract OCR is optional and only affects subfigure OCR.
The integrated
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 at the top of a Markdown slide block to create a chapter divider.
- Put below to show the chapter number.
- Use or for red emphasis.
- Keep bullets concise; generated bullet slides use numbered key-point cards by default.
- When a slide has only one or two content bullets, render it as plain statements without visible item numbers.
- Long slide and paper titles are automatically fitted by shrinking the heading and expanding its line width so the title stays on the page.
- Sparse slides automatically receive subtle topic motifs from title and bullet keywords, so visually empty areas are filled without requiring extra image assets.
Navigation Controls
Generated decks support mouse click, left-third click for previous slide, explicit Prev/Next buttons, left/right arrow keys, space, Home/End, F fullscreen, and URL hash state such as
.
Design Rules
Keep slides academic, readable, and presentation-oriented. Avoid long paragraphs. Prefer figures, concise numbered points, section breaks, and strong hierarchy. Use decorative but unobtrusive visual patterns to reduce empty space. Keep section and ending slides centered. Escape user-provided HTML by default. Do not write API keys or
values into generated decks.
Aut_Sci_Write Integration
- is one of the suite's output skills alongside .
- The paper workflow locally reuses Aut_Sci_Write extraction and figure-processing logic, so users do not need to manually chain and before generating a deck.
- Keep generated decks under or another user-selected output folder. These outputs are intentionally ignored by the repository/package rules.
- Do not create or require skill-local files for this skill; it runs offline except for optional dependencies installed by the user.