html-to-pdf — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited html-to-pdf (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill when the user wants to convert an HTML file to PDF, or wants to create a PDF document from scratch.
output.html).When generating HTML, produce clean, print-ready markup:
<style> block — no external stylesheets unless the user provides one.@page { size: A4; margin: 20mm; }).-f.Infer from context or ask if unclear:
| Option | Flag | Default | ||
|---|---|---|---|---|
| Page size | `-s A4 \ | Letter \ | A3` | A4 |
| Landscape | -l | portrait | ||
| Margin (mm) | --margin "top right bottom left" | browser default | ||
| Font file | -f path/to/font.ttf | none | ||
| Extra CSS | --css path/to/style.css | none | ||
| Image | -i name=path/to/image.png | none | ||
| JSON data | -d path/to/data.json | none |
npx @fulgur-rs/cli render -o <output>.pdf [options] <input>.htmlExamples:
# Basic
npx @fulgur-rs/cli render -o output.pdf input.html
# A4 landscape with custom margin
npx @fulgur-rs/cli render -o output.pdf -s A4 -l --margin "15 20" input.html
# Japanese font
npx @fulgur-rs/cli render -o output.pdf -f NotoSansJP.ttf input.html
# Template with JSON data
npx @fulgur-rs/cli render -o invoice.pdf -d data.json template.htmlTell the user where the PDF was saved. If the conversion fails, show the error output and suggest fixes (missing font, malformed HTML, etc.).
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.