What problem does it solve?
This Skill eliminates the complexity of packaging a multi-file web app into a single offline deliverable, so learners can open one HTML file and start immediately on mobile, tablet, or desktop.
Core Features & Use Cases
- Single-file bundling for offline learning: Inlines HTML template, CSS, JS (including Cytoscape), and large JSON datasets into one distributable
dist/index.html.
- Deterministic build pipeline with
build.js: Reads source assets from src/ and generated datasets from _workspace/, then outputs a final offline artifact.
- Mobile-first responsive UX: Ensures the output UI supports hamburger sidebar patterns, bottom navigation, and theme toggling with persistent progress stored in
localStorage.
- Data embedding via JSON script blobs: Injects datasets as
<script type="application/json" id="data-..."> for runtime loading without network calls.
Quick Start
Run the build script to generate dist/index.html that bundles all required assets and JSON data into a single offline file.