Html reports
Skill search-atlas-group/amm-founding-circle/skills/html-reports
Self-contained HTML report archetypes. Pick the right shape for the document — Folio (book), Stage (slides), Atlas (dashboard), Field (editorial long-read), Ledger (comparison matrix), Timeline (chronological story). Single-file, date-stamped outputs, no external deps, light-mode by default.From its SKILL.md
npx -y skills add search-atlas-group/amm-founding-circle --skill html-reportsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.8 KB, ~1.1k tokens by cl100k_base, as published. Nobody here has run it
html-reports
A library of reusable HTML report archetypes for generating standalone, single-file documents. Every archetype is:
- Self-contained: inline
<style>and<script>, no CDN dependencies, opens by double-clicking. - Light-mode: white background, dark text, subtle grays for borders. Print-friendly.
- System-typography:
-apple-system, "Segoe UI", Robotofor body. No web-font requests. - Responsive: mobile fallback under 768px, print stylesheet hides chrome.
Pick the archetype that matches the shape of the document, not just the topic.
The archetypes
| Archetype | Shape | Use when | Path |
|---|---|---|---|
| Folio | Book — fixed left TOC + scrollable content | The reader needs to jump between many distinct sections (per-person scorecards, framework references, audit reports, post-incidents) | folio/ |
| Stage | Slides — paginated, one idea per page | The report tells a linear story with a small number of big ideas (exec readouts, kickoff decks, narrative summaries) | stage/ |
| Atlas | Map — top-down dense overview with drill-down panels | The reader needs to see everything at once and pivot (cluster maps, portfolio dashboards, system health overviews) | atlas/ |
| Field | Editorial long-read — full-bleed hero + serif body + pull quotes | The reader is being persuaded or oriented through narrative (post-mortems, customer case studies, strategy memos, deep-dives) | field/ |
| Ledger | Comparison table — sticky row/col headers, color-cued scoring matrix | The reader is comparing N options against M criteria (vendor bake-offs, strategy tradeoffs, before/after audits, A/B reads, person-vs-person) | ledger/ |
| Timeline | Vertical date spine — chronological events with metric snapshots and before/after deltas | Time IS the primary axis (incident reviews, growth narratives, release-impact studies, account-health trajectories, recurring-meeting quality trends) | timeline/ |
| Catalog | Search-first faceted list — left-rail filters, prominent search, in-page detail drawer, virtual scroll | The reader needs to find one specific record among 60–5000 items (customer directories, integration registries, vendor lists, tool catalogs, faceted knowledge bases) | catalog/ |
How to choose
- Many small standalone sections, reader hops around? → Folio.
- One narrative arc, want each beat to land before scrolling? → Stage.
- A landscape view where relationships matter more than depth? → Atlas.
- The work needs to be read, not scanned (narrative persuasion)? → Field.
- Side-by-side comparison with a scoring matrix and a recommendation? → Ledger.
- A story that unfolds chronologically, with deltas at each beat? → Timeline.
Hard rules for every archetype
- One HTML file. No external CSS/JS/font/image URLs. SVG and base64 inline only.
- No build tools. Plain HTML/CSS/vanilla JS. No JSX, no TS, no bundler.
- Light mode default. White (
#ffffff) background, near-black text (#111or#1a1a1a), grays for chrome (#e5e7eb,#f5f5f5). - System sans body. Heavier-weight headings allowed but no remote fonts.
- Print stylesheet. Chrome hides, content goes full-width with sensible page breaks.
- Put the report date in the filename. Use
reports/<topic>/<slug>-YYYY-MM-DD.htmlin the relevant repo, whereYYYY-MM-DDis the data as-of date or coverage end date. If there is no data date, use the generation date. Never name a generated report pageindex.html; reserveindex.htmlonly for hand-maintained galleries, landing pages, or navigation wrappers that link to dated reports. - Show the same date on the page. Put an obvious metadata line near the title/header with
Report date: YYYY-MM-DD. If the data has an as-of date or coverage window, include it too, such asData through: YYYY-MM-DDorCoverage: YYYY-MM-DD to YYYY-MM-DD. The primary visible date must match the filename date.
Adding a new archetype
Each archetype lives in its own subdirectory with:
README.md— when to use, when not to, visual spec, data shape, customization knobs, examples.template.html.j2— Jinja2 template parameterized for arbitrary content.styles.css— extracted CSS (template inlines it; this is for reference and reuse).example-minimal.html— tiny standalone example so a future user can preview the format.
What ships with it: 36 files
795.3 KB alongside SKILL.md
atlas/
- example-minimal.html35.9 KB
- README.md15.2 KB
- REFINEMENT-LOG.md11.9 KB
- styles.css18.5 KB
- template.html.j28.8 KB
catalog/
- example-minimal.html124.6 KB
- README.md15.2 KB
- REFINEMENT-LOG.md13.1 KB
- styles.css27.7 KB
- template.html.j229.4 KB
field/
- example-minimal.html15.6 KB
- README.md10.3 KB
- REFINEMENT-LOG.md14.4 KB
- styles.css13.6 KB
- template.html.j211.6 KB
folio/
- example-minimal.html32.6 KB
- README.md9.0 KB
- REFINEMENT-LOG.md10.3 KB
- styles.css17.2 KB
- template.html.j224.5 KB
ledger/
- example-minimal.html29.7 KB
- README.md12.1 KB
- REFINEMENT-LOG.md11.6 KB
- styles.css18.8 KB
- template.html.j29.5 KB
stage/
- example-minimal.html29.7 KB
- README.md13.3 KB
- REFINEMENT-LOG.md14.5 KB
- styles.css18.2 KB
- template.html.j226.4 KB
timeline/
- example-minimal.html27.4 KB
- README.md10.8 KB
- REFINEMENT-LOG.md12.1 KB
- styles.css17.2 KB
- template.html.j222.2 KB
- index.html62.5 KB