{"id":50666664,"url":"https://github.com/decocms/zero-build-slides","last_synced_at":"2026-06-08T07:03:50.770Z","repository":{"id":344062343,"uuid":"1180270704","full_name":"decocms/zero-build-slides","owner":"decocms","description":"Zero-build slide framework for AI Agents","archived":false,"fork":false,"pushed_at":"2026-03-12T22:58:06.000Z","size":41,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-13T04:59:00.688Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/decocms.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-12T21:54:33.000Z","updated_at":"2026-03-13T02:07:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/decocms/zero-build-slides","commit_stats":null,"previous_names":["decocms/zero-build-slides"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/decocms/zero-build-slides","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fzero-build-slides","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fzero-build-slides/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fzero-build-slides/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fzero-build-slides/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/decocms","download_url":"https://codeload.github.com/decocms/zero-build-slides/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fzero-build-slides/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34051773,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-08T07:03:26.493Z","updated_at":"2026-06-08T07:03:50.765Z","avatar_url":"https://github.com/decocms.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zero-Build Slides\n\nA presentation engine designed for AI agents. Four plain JS files, no npm, no build step — serve from any static hosting and go.\n\n## Install as Claude Code Skill\n\n```bash\nbunx @decocms/zero-build-slides\n```\n\nThis installs the skill so Claude Code (and 40+ other agents) knows how to create and edit slide decks for you. Then just ask your agent to create a presentation.\n\n## Quick Start\n\n```bash\nbunx serve\nopen http://localhost:3000\n```\n\n## Architecture\n\n| File | Role |\n|------|------|\n| `index.html` | Bootstrap: import maps, fonts, Tailwind CDN, base CSS |\n| `app.js` | Router, viewport scaling (1920x1080), keyboard nav, theme context |\n| `layouts.js` | Every slide template as a Preact component |\n| `data.js` | Presentations as plain JS objects + color maps |\n| `themes.js` | 6 built-in color themes |\n| `context.js` | Preact context for theme propagation |\n\n## How It Works\n\n- **Preact + htm** via ESM import maps from esm.sh CDN — JSX-like syntax that runs natively in the browser\n- **Tailwind CDN** with inline config for design tokens\n- **Hash-based routing**: `#/deck-slug?slide=N\u0026theme=name`\n- **Viewport scaling**: 1920x1080 base scaled to fit any screen at 16:9\n\n## Working with AI Agents\n\nAn LLM can create or edit presentations by modifying `data.js`:\n\n1. Read the data file and understand the slide schema\n2. Add/edit slides as JS objects — pick a layout, set colors, write content\n3. Upload to any static host — no build step needed\n\nSee `SKILL.md` for the full agent reference (slide schema, available layouts, color palette, theme system).\n\n## Themes\n\nAdd `?theme=name` to any URL to switch the color palette instantly.\n\n| Theme | Accent | Vibe |\n|-------|--------|------|\n| `deco` | Green `#D0EC1A` | Default brand |\n| `ocean` | Blue `#38BDF8` | Corporate |\n| `ember` | Orange `#F97316` | Warm startup |\n| `midnight` | Purple `#C084FC` | Creative |\n| `forest` | Green `#4ADE80` | Organic |\n| `mono` | White `#FFFFFF` | Minimal B\u0026W |\n\nExample: `#/demo?theme=ocean\u0026slide=3`\n\n## Available Layouts\n\n- `title` — Cover and section headers (centered or TOC variant)\n- `dinner-thesis` — Bold claim with proof-point bullets\n- `dinner-features` — Icon cards with hover interactions (1-4 columns)\n- `dinner-demo` — 40/60 split with stacked cards\n- `dinner-admin-cases` — Two-column: blog grid + quote cards\n- `market-signals-funnel` — 4-stage chevron pipeline\n- `dinner-roadmap` — 3-column strategic directions\n- `dinner-cta` — Call-to-action with icon cards\n- `timeline` — Alternating above/below timeline\n- `retrospective-intro` — Numbered section index\n- `retrospective-stats` — Animated counter stats\n\n## URL Structure\n\n```\nhttps://your-host/#/deck-slug?slide=5\u0026theme=ocean\n```\n\n- `deck-slug` — presentation key from DECKS map in app.js\n- `slide` — slide number (0 = cover)\n- `theme` — color theme name\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecocms%2Fzero-build-slides","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdecocms%2Fzero-build-slides","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecocms%2Fzero-build-slides/lists"}