@hiai-gg/hiai-opencode 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +4 -0
- package/AGENTS.md +34 -38
- package/ARCHITECTURE.md +4 -3
- package/LICENSE.md +14 -0
- package/README.md +52 -21
- package/config/hiai-opencode.schema.json +11 -13
- package/dist/agents/{bob.d.ts → bob/claude.d.ts} +6 -2
- package/dist/agents/bob/core.d.ts +6 -0
- package/dist/agents/bob/gpt.d.ts +11 -0
- package/dist/agents/bob/index.d.ts +3 -0
- package/dist/agents/coder/core.d.ts +4 -0
- package/dist/agents/coder/gpt.d.ts +1 -4
- package/dist/agents/coder/index.d.ts +1 -0
- package/dist/agents/manager/agent.d.ts +1 -1
- package/dist/agents/manager/default-prompt-sections.d.ts +3 -3
- package/dist/agents/manager/guard-integration.d.ts +1 -0
- package/dist/agents/prompt-library/index.d.ts +0 -1
- package/dist/agents/prompt-library/shared-execution.d.ts +9 -0
- package/dist/agents/strategist/behavioral-summary.d.ts +1 -1
- package/dist/agents/strategist/identity-constraints.d.ts +1 -1
- package/dist/agents/strategist/plan-generation.d.ts +1 -1
- package/dist/agents/types.d.ts +2 -1
- package/dist/config/defaults.d.ts +1 -0
- package/dist/config/platform-schema.d.ts +26 -26
- package/dist/config/schema/agent-names.d.ts +6 -6
- package/dist/config/schema/agent-overrides.d.ts +0 -128
- package/dist/config/schema/hiai-opencode-config.d.ts +0 -128
- package/dist/config/types.d.ts +2 -2
- package/dist/features/background-agent/manager-notifier.d.ts +46 -0
- package/dist/features/background-agent/manager-types.d.ts +40 -0
- package/dist/features/background-agent/manager.d.ts +3 -19
- package/dist/features/background-agent/polling-manager.d.ts +51 -0
- package/dist/features/boulder-state/storage.d.ts +1 -0
- package/dist/features/builtin-commands/templates/loop.d.ts +2 -0
- package/dist/features/builtin-commands/templates/start-work.d.ts +1 -1
- package/dist/features/builtin-skills/skills/interview-me.d.ts +2 -0
- package/dist/features/builtin-skills/skills/planning-and-task-breakdown.d.ts +2 -0
- package/dist/hooks/reasoning-content-cache/hook.d.ts +11 -0
- package/dist/hooks/reasoning-content-cache/index.d.ts +1 -0
- package/dist/hooks/session-recovery/checkpoint.d.ts +48 -0
- package/dist/hooks/session-recovery/enhanced-hook.d.ts +30 -0
- package/dist/hooks/session-recovery/state-backup.d.ts +76 -0
- package/dist/hooks/shared/compaction-in-progress.d.ts +4 -0
- package/dist/hooks/start-work/git-operations.d.ts +47 -0
- package/dist/hooks/token-budget.d.ts +30 -0
- package/dist/index.js +1185 -1078
- package/dist/mcp/rate-limiter.d.ts +68 -0
- package/dist/plugin/chat-message.d.ts +8 -0
- package/dist/plugin/command-execute-before.d.ts +1 -1
- package/dist/plugin/event-handlers/message-updated.d.ts +2 -0
- package/dist/plugin/event-handlers/session-error.d.ts +2 -0
- package/dist/plugin/event-handlers/session-status.d.ts +2 -0
- package/dist/plugin/event-handlers/types.d.ts +62 -0
- package/dist/plugin/event-handlers/utils.d.ts +11 -0
- package/dist/plugin/event.d.ts +1 -1
- package/dist/shared/data-path.d.ts +1 -1
- package/dist/shared/errors.d.ts +70 -0
- package/dist/shared/extract-session-id.d.ts +8 -0
- package/dist/shared/git-worktree/get-git-state-summary.d.ts +14 -0
- package/dist/shared/index.d.ts +67 -68
- package/dist/shared/internal-initiator-marker.d.ts +1 -1
- package/dist/shared/logger.d.ts +5 -1
- package/dist/shared/reasoning-content-cache.d.ts +68 -0
- package/dist/shared/safe-create-hook.d.ts +4 -4
- package/dist/tools/call-hiai-agent/constants.d.ts +2 -2
- package/dist/tools/delegate-task/sub-agent.d.ts +1 -1
- package/dist/tools/look-at/constants.d.ts +1 -1
- package/docs/architecture/bob-manager-architecture.md +244 -0
- package/docs/hiai-opencode/adr/ADR-001-agent-identity-section-injection.md +66 -0
- package/docs/hiai-opencode/adr/ADR-002-anti-loop-guard-priority.md +63 -0
- package/docs/hiai-opencode/adr/ADR-003-compaction-mechanism.md +71 -0
- package/docs/hiai-opencode/adr/ADR-004-session-recovery.md +76 -0
- package/docs/hiai-opencode/api.md +305 -0
- package/docs/hiai-opencode/hooks-architecture.md +225 -0
- package/docs/hiai-opencode/migration.md +209 -0
- package/docs/skill-discovery.md +288 -0
- package/package.json +1 -1
- package/skills/agent-browser/SKILL.md +193 -0
- package/skills/apple-hig/SKILL.md +43 -0
- package/skills/article-magazine/SKILL.md +46 -0
- package/skills/article-magazine/example.html +81 -0
- package/skills/article-magazine/example.md +38 -0
- package/skills/canvas-design/SKILL.md +45 -0
- package/skills/design-templates/audio-jingle/SKILL.md +132 -0
- package/skills/design-templates/audio-jingle/example.html +128 -0
- package/skills/design-templates/blog-post/SKILL.md +80 -0
- package/skills/design-templates/blog-post/example.html +80 -0
- package/skills/design-templates/clinical-case-report/SKILL.md +209 -0
- package/skills/design-templates/clinical-case-report/example.html +698 -0
- package/skills/design-templates/clinical-case-report/examples/example-stemi.html +698 -0
- package/skills/design-templates/clinical-case-report/references/case-formats.md +94 -0
- package/skills/design-templates/clinical-case-report/references/checklist.md +41 -0
- package/skills/design-templates/critique/SKILL.md +258 -0
- package/skills/design-templates/critique/example.html +671 -0
- package/skills/design-templates/dashboard/SKILL.md +76 -0
- package/skills/design-templates/dashboard/example.html +118 -0
- package/skills/design-templates/dating-web/SKILL.md +92 -0
- package/skills/design-templates/dating-web/example.html +265 -0
- package/skills/design-templates/dcf-valuation/SKILL.md +140 -0
- package/skills/design-templates/dcf-valuation/references/sector-wacc.md +42 -0
- package/skills/design-templates/digital-eguide/SKILL.md +94 -0
- package/skills/design-templates/digital-eguide/example.html +204 -0
- package/skills/design-templates/docs-page/SKILL.md +80 -0
- package/skills/design-templates/docs-page/example.html +122 -0
- package/skills/design-templates/email-marketing/SKILL.md +84 -0
- package/skills/design-templates/email-marketing/example.html +159 -0
- package/skills/design-templates/eng-runbook/SKILL.md +51 -0
- package/skills/design-templates/eng-runbook/example.html +250 -0
- package/skills/design-templates/finance-report/SKILL.md +61 -0
- package/skills/design-templates/finance-report/example.html +242 -0
- package/skills/design-templates/flowai-live-dashboard-template/SKILL.md +87 -0
- package/skills/design-templates/flowai-live-dashboard-template/assets/template.html +387 -0
- package/skills/design-templates/flowai-live-dashboard-template/example.html +13 -0
- package/skills/design-templates/flowai-live-dashboard-template/references/checklist.md +35 -0
- package/skills/design-templates/gamified-app/SKILL.md +108 -0
- package/skills/design-templates/gamified-app/example.html +292 -0
- package/skills/design-templates/github-dashboard/SKILL.md +130 -0
- package/skills/design-templates/github-dashboard/example.html +473 -0
- package/skills/design-templates/github-dashboard/references/README.md +10 -0
- package/skills/design-templates/github-dashboard/references/artifact-example.json +15 -0
- package/skills/design-templates/github-dashboard/references/example-data.json +138 -0
- package/skills/design-templates/github-dashboard/references/provenance-example.json +92 -0
- package/skills/design-templates/github-dashboard/references/template.html +473 -0
- package/skills/design-templates/guizang-ppt/LICENSE +21 -0
- package/skills/design-templates/guizang-ppt/README.en.md +119 -0
- package/skills/design-templates/guizang-ppt/README.md +120 -0
- package/skills/design-templates/guizang-ppt/README.pt-BR.md +121 -0
- package/skills/design-templates/guizang-ppt/SKILL.md +313 -0
- package/skills/design-templates/guizang-ppt/assets/example-slides.html +318 -0
- package/skills/design-templates/guizang-ppt/assets/template.html +647 -0
- package/skills/design-templates/guizang-ppt/references/checklist.md +265 -0
- package/skills/design-templates/guizang-ppt/references/components.md +363 -0
- package/skills/design-templates/guizang-ppt/references/layouts.md +630 -0
- package/skills/design-templates/guizang-ppt/references/styles.md +195 -0
- package/skills/design-templates/guizang-ppt/references/themes.md +122 -0
- package/skills/design-templates/hr-onboarding/SKILL.md +52 -0
- package/skills/design-templates/hr-onboarding/example.html +219 -0
- package/skills/design-templates/html-ppt/.clawscan-allow +12 -0
- package/skills/design-templates/html-ppt/LICENSE +21 -0
- package/skills/design-templates/html-ppt/README.md +234 -0
- package/skills/design-templates/html-ppt/README.pt-BR.md +239 -0
- package/skills/design-templates/html-ppt/README.zh-CN.md +238 -0
- package/skills/design-templates/html-ppt/SKILL.md +250 -0
- package/skills/design-templates/html-ppt/assets/animations/animations.css +138 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/_util.js +63 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/chain-react.js +41 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/confetti-cannon.js +49 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/constellation.js +44 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/counter-explosion.js +58 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/data-stream.js +45 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/firework.js +51 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/galaxy-swirl.js +33 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/gradient-blob.js +39 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/knowledge-graph.js +69 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/letter-explode.js +50 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/magnetic-field.js +40 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/matrix-rain.js +33 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/neural-net.js +75 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/orbit-ring.js +38 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/particle-burst.js +42 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/shockwave.js +39 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/sparkle-trail.js +62 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/starfield.js +30 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/typewriter-multi.js +51 -0
- package/skills/design-templates/html-ppt/assets/animations/fx/word-cascade.js +47 -0
- package/skills/design-templates/html-ppt/assets/animations/fx-runtime.js +99 -0
- package/skills/design-templates/html-ppt/assets/base.css +150 -0
- package/skills/design-templates/html-ppt/assets/fonts.css +9 -0
- package/skills/design-templates/html-ppt/assets/runtime.js +960 -0
- package/skills/design-templates/html-ppt/assets/themes/academic-paper.css +23 -0
- package/skills/design-templates/html-ppt/assets/themes/arctic-cool.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/aurora.css +20 -0
- package/skills/design-templates/html-ppt/assets/themes/bauhaus.css +16 -0
- package/skills/design-templates/html-ppt/assets/themes/blueprint.css +19 -0
- package/skills/design-templates/html-ppt/assets/themes/catppuccin-latte.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/catppuccin-mocha.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/corporate-clean.css +19 -0
- package/skills/design-templates/html-ppt/assets/themes/cyberpunk-neon.css +23 -0
- package/skills/design-templates/html-ppt/assets/themes/dracula.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/editorial-serif.css +18 -0
- package/skills/design-templates/html-ppt/assets/themes/engineering-whiteprint.css +26 -0
- package/skills/design-templates/html-ppt/assets/themes/glassmorphism.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/gruvbox-dark.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/japanese-minimal.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/magazine-bold.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/memphis-pop.css +20 -0
- package/skills/design-templates/html-ppt/assets/themes/midcentury.css +19 -0
- package/skills/design-templates/html-ppt/assets/themes/minimal-white.css +16 -0
- package/skills/design-templates/html-ppt/assets/themes/neo-brutalism.css +17 -0
- package/skills/design-templates/html-ppt/assets/themes/news-broadcast.css +20 -0
- package/skills/design-templates/html-ppt/assets/themes/nord.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/pitch-deck-vc.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/rainbow-gradient.css +16 -0
- package/skills/design-templates/html-ppt/assets/themes/retro-tv.css +22 -0
- package/skills/design-templates/html-ppt/assets/themes/rose-pine.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/sharp-mono.css +17 -0
- package/skills/design-templates/html-ppt/assets/themes/soft-pastel.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/solarized-light.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/sunset-warm.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/swiss-grid.css +17 -0
- package/skills/design-templates/html-ppt/assets/themes/terminal-green.css +18 -0
- package/skills/design-templates/html-ppt/assets/themes/tokyo-night.css +14 -0
- package/skills/design-templates/html-ppt/assets/themes/vaporwave.css +21 -0
- package/skills/design-templates/html-ppt/assets/themes/xiaohongshu-white.css +16 -0
- package/skills/design-templates/html-ppt/assets/themes/y2k-chrome.css +20 -0
- package/skills/design-templates/html-ppt/docs/readme/_theme-cell.html +56 -0
- package/skills/design-templates/html-ppt/docs/readme/animations.png +0 -0
- package/skills/design-templates/html-ppt/docs/readme/hero.gif +0 -0
- package/skills/design-templates/html-ppt/docs/readme/layouts-live.gif +0 -0
- package/skills/design-templates/html-ppt/docs/readme/layouts.png +0 -0
- package/skills/design-templates/html-ppt/docs/readme/montage-animations.html +61 -0
- package/skills/design-templates/html-ppt/docs/readme/montage-layouts.html +72 -0
- package/skills/design-templates/html-ppt/docs/readme/montage-templates.html +72 -0
- package/skills/design-templates/html-ppt/docs/readme/montage-themes.html +38 -0
- package/skills/design-templates/html-ppt/docs/readme/presenter-mode.png +0 -0
- package/skills/design-templates/html-ppt/docs/readme/templates.png +0 -0
- package/skills/design-templates/html-ppt/docs/readme/themes.png +0 -0
- package/skills/design-templates/html-ppt/examples/demo-deck/index.html +161 -0
- package/skills/design-templates/html-ppt/references/animations.md +147 -0
- package/skills/design-templates/html-ppt/references/authoring-guide.md +141 -0
- package/skills/design-templates/html-ppt/references/full-decks.md +98 -0
- package/skills/design-templates/html-ppt/references/layouts.md +103 -0
- package/skills/design-templates/html-ppt/references/presenter-mode.md +240 -0
- package/skills/design-templates/html-ppt/references/themes.md +107 -0
- package/skills/design-templates/html-ppt/scripts/new-deck.sh +46 -0
- package/skills/design-templates/html-ppt/scripts/render.sh +71 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_01.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_02.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_03.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_04.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_05.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_06.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_07.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_08.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_09.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_10.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_11.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_12.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_13.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_14.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_15.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_16.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_17.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_18.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_19.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/animation-showcase/animation-showcase_20.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_01.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_02.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_03.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_04.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_05.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_06.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_07.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_08.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_09.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_10.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_11.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_12.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_13.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_14.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_15.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_16.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_17.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_18.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_19.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_20.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_21.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_22.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_23.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_24.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_25.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_26.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_27.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_28.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_29.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_30.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_31.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_32.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_33.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_34.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_35.png +0 -0
- package/skills/design-templates/html-ppt/scripts/verify-output/theme-showcase/theme-showcase_36.png +0 -0
- package/skills/design-templates/html-ppt/templates/animation-showcase.html +172 -0
- package/skills/design-templates/html-ppt/templates/deck.html +69 -0
- package/skills/design-templates/html-ppt/templates/full-decks/course-module/README.md +8 -0
- package/skills/design-templates/html-ppt/templates/full-decks/course-module/index.html +189 -0
- package/skills/design-templates/html-ppt/templates/full-decks/course-module/style.css +46 -0
- package/skills/design-templates/html-ppt/templates/full-decks/dir-key-nav-minimal/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/dir-key-nav-minimal/index.html +138 -0
- package/skills/design-templates/html-ppt/templates/full-decks/dir-key-nav-minimal/style.css +60 -0
- package/skills/design-templates/html-ppt/templates/full-decks/graphify-dark-graph/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/graphify-dark-graph/index.html +180 -0
- package/skills/design-templates/html-ppt/templates/full-decks/graphify-dark-graph/style.css +54 -0
- package/skills/design-templates/html-ppt/templates/full-decks/hermes-cyber-terminal/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/hermes-cyber-terminal/index.html +199 -0
- package/skills/design-templates/html-ppt/templates/full-decks/hermes-cyber-terminal/style.css +55 -0
- package/skills/design-templates/html-ppt/templates/full-decks/knowledge-arch-blueprint/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/knowledge-arch-blueprint/index.html +190 -0
- package/skills/design-templates/html-ppt/templates/full-decks/knowledge-arch-blueprint/style.css +49 -0
- package/skills/design-templates/html-ppt/templates/full-decks/obsidian-claude-gradient/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/obsidian-claude-gradient/index.html +144 -0
- package/skills/design-templates/html-ppt/templates/full-decks/obsidian-claude-gradient/style.css +59 -0
- package/skills/design-templates/html-ppt/templates/full-decks/pitch-deck/README.md +9 -0
- package/skills/design-templates/html-ppt/templates/full-decks/pitch-deck/index.html +148 -0
- package/skills/design-templates/html-ppt/templates/full-decks/pitch-deck/style.css +40 -0
- package/skills/design-templates/html-ppt/templates/full-decks/presenter-mode-reveal/README.md +102 -0
- package/skills/design-templates/html-ppt/templates/full-decks/presenter-mode-reveal/index.html +187 -0
- package/skills/design-templates/html-ppt/templates/full-decks/presenter-mode-reveal/style.css +216 -0
- package/skills/design-templates/html-ppt/templates/full-decks/product-launch/README.md +8 -0
- package/skills/design-templates/html-ppt/templates/full-decks/product-launch/index.html +121 -0
- package/skills/design-templates/html-ppt/templates/full-decks/product-launch/style.css +39 -0
- package/skills/design-templates/html-ppt/templates/full-decks/tech-sharing/README.md +8 -0
- package/skills/design-templates/html-ppt/templates/full-decks/tech-sharing/index.html +156 -0
- package/skills/design-templates/html-ppt/templates/full-decks/tech-sharing/style.css +49 -0
- package/skills/design-templates/html-ppt/templates/full-decks/testing-safety-alert/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/testing-safety-alert/index.html +183 -0
- package/skills/design-templates/html-ppt/templates/full-decks/testing-safety-alert/style.css +62 -0
- package/skills/design-templates/html-ppt/templates/full-decks/weekly-report/README.md +8 -0
- package/skills/design-templates/html-ppt/templates/full-decks/weekly-report/index.html +127 -0
- package/skills/design-templates/html-ppt/templates/full-decks/weekly-report/style.css +55 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-pastel-card/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-pastel-card/index.html +147 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-pastel-card/style.css +66 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-post/README.md +9 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-post/index.html +133 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-post/style.css +47 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-white-editorial/README.md +11 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-white-editorial/index.html +187 -0
- package/skills/design-templates/html-ppt/templates/full-decks/xhs-white-editorial/style.css +63 -0
- package/skills/design-templates/html-ppt/templates/full-decks-index.html +82 -0
- package/skills/design-templates/html-ppt/templates/layout-showcase.html +47 -0
- package/skills/design-templates/html-ppt/templates/single-page/arch-diagram.html +46 -0
- package/skills/design-templates/html-ppt/templates/single-page/big-quote.html +18 -0
- package/skills/design-templates/html-ppt/templates/single-page/bullets.html +19 -0
- package/skills/design-templates/html-ppt/templates/single-page/chart-bar.html +30 -0
- package/skills/design-templates/html-ppt/templates/single-page/chart-line.html +35 -0
- package/skills/design-templates/html-ppt/templates/single-page/chart-pie.html +36 -0
- package/skills/design-templates/html-ppt/templates/single-page/chart-radar.html +31 -0
- package/skills/design-templates/html-ppt/templates/single-page/code.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/comparison.html +47 -0
- package/skills/design-templates/html-ppt/templates/single-page/cover.html +32 -0
- package/skills/design-templates/html-ppt/templates/single-page/cta.html +27 -0
- package/skills/design-templates/html-ppt/templates/single-page/diff.html +35 -0
- package/skills/design-templates/html-ppt/templates/single-page/flow-diagram.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/gantt.html +29 -0
- package/skills/design-templates/html-ppt/templates/single-page/image-grid.html +34 -0
- package/skills/design-templates/html-ppt/templates/single-page/image-hero.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/kpi-grid.html +19 -0
- package/skills/design-templates/html-ppt/templates/single-page/mindmap.html +38 -0
- package/skills/design-templates/html-ppt/templates/single-page/process-steps.html +27 -0
- package/skills/design-templates/html-ppt/templates/single-page/pros-cons.html +31 -0
- package/skills/design-templates/html-ppt/templates/single-page/roadmap.html +46 -0
- package/skills/design-templates/html-ppt/templates/single-page/section-divider.html +17 -0
- package/skills/design-templates/html-ppt/templates/single-page/stat-highlight.html +17 -0
- package/skills/design-templates/html-ppt/templates/single-page/table.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/terminal.html +35 -0
- package/skills/design-templates/html-ppt/templates/single-page/thanks.html +21 -0
- package/skills/design-templates/html-ppt/templates/single-page/three-column.html +18 -0
- package/skills/design-templates/html-ppt/templates/single-page/timeline.html +32 -0
- package/skills/design-templates/html-ppt/templates/single-page/toc.html +26 -0
- package/skills/design-templates/html-ppt/templates/single-page/todo-checklist.html +33 -0
- package/skills/design-templates/html-ppt/templates/single-page/two-column.html +39 -0
- package/skills/design-templates/html-ppt/templates/theme-showcase.html +151 -0
- package/skills/design-templates/html-ppt-course-module/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-course-module/example.html +542 -0
- package/skills/design-templates/html-ppt-dir-key-nav-minimal/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-dir-key-nav-minimal/example.html +366 -0
- package/skills/design-templates/html-ppt-graphify-dark-graph/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-graphify-dark-graph/example.html +402 -0
- package/skills/design-templates/html-ppt-hermes-cyber-terminal/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-hermes-cyber-terminal/example.html +422 -0
- package/skills/design-templates/html-ppt-knowledge-arch-blueprint/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-knowledge-arch-blueprint/example.html +407 -0
- package/skills/design-templates/html-ppt-obsidian-claude-gradient/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-obsidian-claude-gradient/example.html +371 -0
- package/skills/design-templates/html-ppt-pitch-deck/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-pitch-deck/example.html +495 -0
- package/skills/design-templates/html-ppt-presenter-mode-reveal/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-presenter-mode-reveal/example.html +725 -0
- package/skills/design-templates/html-ppt-product-launch/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-product-launch/example.html +467 -0
- package/skills/design-templates/html-ppt-taste-brutalist/SKILL.md +70 -0
- package/skills/design-templates/html-ppt-taste-brutalist/example.html +774 -0
- package/skills/design-templates/html-ppt-taste-editorial/SKILL.md +62 -0
- package/skills/design-templates/html-ppt-taste-editorial/example.html +689 -0
- package/skills/design-templates/html-ppt-tech-sharing/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-tech-sharing/example.html +512 -0
- package/skills/design-templates/html-ppt-testing-safety-alert/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-testing-safety-alert/example.html +413 -0
- package/skills/design-templates/html-ppt-weekly-report/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-weekly-report/example.html +489 -0
- package/skills/design-templates/html-ppt-xhs-pastel-card/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-xhs-pastel-card/example.html +381 -0
- package/skills/design-templates/html-ppt-xhs-post/SKILL.md +78 -0
- package/skills/design-templates/html-ppt-xhs-post/example.html +487 -0
- package/skills/design-templates/html-ppt-xhs-white-editorial/SKILL.md +77 -0
- package/skills/design-templates/html-ppt-xhs-white-editorial/example.html +418 -0
- package/skills/design-templates/html-ppt-zhangzara-8-bit-orbit/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-8-bit-orbit/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-8-bit-orbit/example.html +1640 -0
- package/skills/design-templates/html-ppt-zhangzara-8-bit-orbit/template.json +48 -0
- package/skills/design-templates/html-ppt-zhangzara-biennale-yellow/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-biennale-yellow/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-biennale-yellow/example.html +833 -0
- package/skills/design-templates/html-ppt-zhangzara-biennale-yellow/template.json +49 -0
- package/skills/design-templates/html-ppt-zhangzara-block-frame/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-block-frame/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-block-frame/example.html +1453 -0
- package/skills/design-templates/html-ppt-zhangzara-block-frame/template.json +47 -0
- package/skills/design-templates/html-ppt-zhangzara-blue-professional/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-blue-professional/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-blue-professional/example.html +1423 -0
- package/skills/design-templates/html-ppt-zhangzara-blue-professional/template.json +44 -0
- package/skills/design-templates/html-ppt-zhangzara-bold-poster/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-bold-poster/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-bold-poster/example.html +876 -0
- package/skills/design-templates/html-ppt-zhangzara-bold-poster/template.json +45 -0
- package/skills/design-templates/html-ppt-zhangzara-broadside/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-broadside/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-broadside/example.html +2144 -0
- package/skills/design-templates/html-ppt-zhangzara-broadside/template.json +49 -0
- package/skills/design-templates/html-ppt-zhangzara-capsule/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-capsule/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-capsule/example.html +1413 -0
- package/skills/design-templates/html-ppt-zhangzara-capsule/template.json +51 -0
- package/skills/design-templates/html-ppt-zhangzara-cartesian/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-cartesian/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-cartesian/example.html +1136 -0
- package/skills/design-templates/html-ppt-zhangzara-cartesian/template.json +47 -0
- package/skills/design-templates/html-ppt-zhangzara-cobalt-grid/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-cobalt-grid/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-cobalt-grid/example.html +1205 -0
- package/skills/design-templates/html-ppt-zhangzara-cobalt-grid/template.json +49 -0
- package/skills/design-templates/html-ppt-zhangzara-coral/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-coral/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-coral/example.html +1487 -0
- package/skills/design-templates/html-ppt-zhangzara-coral/template.json +45 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/SKILL.md +99 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/assets/deck-stage.js +619 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/example.html +636 -0
- package/skills/design-templates/html-ppt-zhangzara-creative-mode/template.json +47 -0
- package/skills/design-templates/html-ppt-zhangzara-daisy-days/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-daisy-days/SKILL.md +93 -0
- package/skills/design-templates/html-ppt-zhangzara-daisy-days/example.html +469 -0
- package/skills/design-templates/html-ppt-zhangzara-daisy-days/template.json +54 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/SKILL.md +98 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/assets/deck-stage.js +619 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/example.html +737 -0
- package/skills/design-templates/html-ppt-zhangzara-editorial-tri-tone/template.json +44 -0
- package/skills/design-templates/html-ppt-zhangzara-grove/LICENSE +21 -0
- package/skills/design-templates/html-ppt-zhangzara-grove/SKILL.md +92 -0
- package/skills/design-templates/html-ppt-zhangzara-grove/example.html +1676 -0
- package/skills/design-templates/html-ppt-zhangzara-grove/template.json +51 -0
- package/skills/figma-code-connect-components/SKILL.md +42 -0
- package/skills/figma-create-design-system-rules/SKILL.md +42 -0
- package/skills/figma-create-new-file/SKILL.md +41 -0
- package/skills/figma-generate-design/SKILL.md +42 -0
- package/skills/figma-generate-library/SKILL.md +42 -0
- package/skills/figma-implement-design/SKILL.md +42 -0
- package/skills/figma-use/SKILL.md +42 -0
- package/skills/full-page-screenshot/SKILL.md +42 -0
- package/skills/interview-me/SKILL.md +64 -0
- package/skills/planning-and-task-breakdown/SKILL.md +52 -0
- package/skills/sora/SKILL.md +43 -0
- package/skills/theme-factory/SKILL.md +43 -0
- package/skills/web-design-guidelines/SKILL.md +42 -0
- package/dist/agents/prompt-library/orchestration.d.ts +0 -4
- package/skills/brainstorming/SKILL.md +0 -164
- package/skills/brainstorming/scripts/frame-template.html +0 -214
- package/skills/brainstorming/scripts/helper.js +0 -88
- package/skills/brainstorming/scripts/server.cjs +0 -354
- package/skills/brainstorming/scripts/start-server.sh +0 -148
- package/skills/brainstorming/scripts/stop-server.sh +0 -56
- package/skills/brainstorming/spec-document-reviewer-prompt.md +0 -49
- package/skills/brainstorming/visual-companion.md +0 -287
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
# Animations catalog
|
|
2
|
+
|
|
3
|
+
All animations live in `assets/animations/animations.css`. Apply them by
|
|
4
|
+
adding `class="anim-<name>"` OR `data-anim="<name>"` to any element
|
|
5
|
+
(`runtime.js` re-triggers `data-anim` elements whenever a slide becomes
|
|
6
|
+
active, so you get the entry effect every time you navigate onto the slide).
|
|
7
|
+
|
|
8
|
+
Open `templates/animation-showcase.html` to browse all of them — one slide
|
|
9
|
+
per animation, auto-playing on slide enter. Press **A** on any slide to cycle
|
|
10
|
+
a random animation on the current page.
|
|
11
|
+
|
|
12
|
+
## Directional fades
|
|
13
|
+
|
|
14
|
+
| name | effect | use for |
|
|
15
|
+
|---|---|---|
|
|
16
|
+
| `fade-up` | Translate from +32 px, fade. | Default for paragraph + card entry. |
|
|
17
|
+
| `fade-down` | Translate from -32 px, fade. | Headers / banners / callouts. |
|
|
18
|
+
| `fade-left` | Translate from -40 px. | Left column in a two-column layout. |
|
|
19
|
+
| `fade-right` | Translate from +40 px. | Right column in a two-column layout. |
|
|
20
|
+
|
|
21
|
+
## Dramatic entries
|
|
22
|
+
|
|
23
|
+
| name | effect | use for |
|
|
24
|
+
|---|---|---|
|
|
25
|
+
| `rise-in` | +60 px rise + blur-off. | Slide titles, hero headlines. |
|
|
26
|
+
| `drop-in` | -60 px drop + slight scale. | Banners, alert bars. |
|
|
27
|
+
| `zoom-pop` | Scale 0.6 → 1.04 → 1. | Buttons, stat numbers, CTAs. |
|
|
28
|
+
| `blur-in` | 18 px blur clears. | Cover page reveal. |
|
|
29
|
+
| `glitch-in` | Clip-path steps + jitter. | Tech / cyber / error states. |
|
|
30
|
+
|
|
31
|
+
## Text effects
|
|
32
|
+
|
|
33
|
+
| name | effect | use for |
|
|
34
|
+
|---|---|---|
|
|
35
|
+
| `typewriter` | Monospace-like type reveal. | One-liners, slogans. |
|
|
36
|
+
| `neon-glow` | Cyclic text-shadow pulse. | Terminal-green / dracula themes. |
|
|
37
|
+
| `shimmer-sweep` | White sheen passes across. | Metallic buttons, premium cards. |
|
|
38
|
+
| `gradient-flow` | Infinite horizontal gradient slide. | Brand wordmarks. |
|
|
39
|
+
|
|
40
|
+
## Lists & numbers
|
|
41
|
+
|
|
42
|
+
| name | effect | use for |
|
|
43
|
+
|---|---|---|
|
|
44
|
+
| `stagger-list` | Children rise-in one-by-one. | Any `<ul>` or `.grid`. |
|
|
45
|
+
| `counter-up` | Number ticks 0 → target. | KPI, stat-highlight pages. |
|
|
46
|
+
|
|
47
|
+
Counter markup:
|
|
48
|
+
```html
|
|
49
|
+
<span class="counter" data-to="1248">0</span>
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## SVG / geometry
|
|
53
|
+
|
|
54
|
+
| name | effect | use for |
|
|
55
|
+
|---|---|---|
|
|
56
|
+
| `path-draw` | Strokes draw themselves. | Lines, arrows, diagrams. |
|
|
57
|
+
| `morph-shape` | Path `d` morph. | Background shapes. |
|
|
58
|
+
|
|
59
|
+
Put `class="anim-path-draw"` on `<svg>`; every path/line/circle inside gets drawn.
|
|
60
|
+
|
|
61
|
+
## 3D & perspective
|
|
62
|
+
|
|
63
|
+
| name | effect | use for |
|
|
64
|
+
|---|---|---|
|
|
65
|
+
| `parallax-tilt` | Hover → 3D tilt. | Hero cards, product shots. |
|
|
66
|
+
| `card-flip-3d` | Y-axis 90° flip. | Before/after reveal. |
|
|
67
|
+
| `cube-rotate-3d` | Rotate in from a cube side. | Section dividers. |
|
|
68
|
+
| `page-turn-3d` | Left-hinge page turn. | Editorial / story flows. |
|
|
69
|
+
| `perspective-zoom` | Pull from -400 Z. | Cover openings. |
|
|
70
|
+
|
|
71
|
+
## Ambient / continuous
|
|
72
|
+
|
|
73
|
+
| name | effect | use for |
|
|
74
|
+
|---|---|---|
|
|
75
|
+
| `marquee-scroll` | Infinite horizontal loop. | Client logo strips. |
|
|
76
|
+
| `kenburns` | 14 s slow zoom on images. | Hero backgrounds. |
|
|
77
|
+
| `confetti-burst` | Pseudo-element sparkle burst. | Thanks / win pages. |
|
|
78
|
+
| `spotlight` | Circular clip-path reveal. | Big reveal moments. |
|
|
79
|
+
| `ripple-reveal` | Corner-origin ripple reveal. | Section transitions. |
|
|
80
|
+
|
|
81
|
+
## Respecting motion preferences
|
|
82
|
+
|
|
83
|
+
All animations are disabled automatically when
|
|
84
|
+
`prefers-reduced-motion: reduce` is set. Do not override this.
|
|
85
|
+
|
|
86
|
+
## Tips
|
|
87
|
+
|
|
88
|
+
- Prefer `data-anim="..."` over `class="anim-..."` so that the runtime
|
|
89
|
+
re-triggers the animation whenever the slide becomes active.
|
|
90
|
+
- Use at most 1-2 distinct animation types on a single slide. Mixing 5 looks
|
|
91
|
+
messy.
|
|
92
|
+
- Stagger lists + a single hero entry = clean rhythm.
|
|
93
|
+
- For counter-up, pair with `stat-highlight.html` or `kpi-grid.html`.
|
|
94
|
+
|
|
95
|
+
## FX (canvas)
|
|
96
|
+
|
|
97
|
+
CSS animations are fire-and-forget entry effects. **FX** are live, continuously
|
|
98
|
+
running canvas/DOM effects that start when their slide becomes active and stop
|
|
99
|
+
when it leaves. They are loaded by `assets/animations/fx-runtime.js`, which
|
|
100
|
+
dynamically pulls every module under `assets/animations/fx/*.js` and watches
|
|
101
|
+
`.slide.is-active` to run lifecycle.
|
|
102
|
+
|
|
103
|
+
Add to any page:
|
|
104
|
+
```html
|
|
105
|
+
<script src="../assets/animations/fx-runtime.js"></script>
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
Then drop one of these into any slide:
|
|
109
|
+
```html
|
|
110
|
+
<div data-fx="particle-burst" style="width:100%;height:360px;"></div>
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
The container just needs a size — the FX auto-sizes a canvas to fit with
|
|
114
|
+
`ResizeObserver` + DPR correction. Colors read your theme (`--accent`,
|
|
115
|
+
`--accent-2`, `--ok`, `--warn`, `--danger`).
|
|
116
|
+
|
|
117
|
+
| name | effect | use case | trigger |
|
|
118
|
+
|---|---|---|---|
|
|
119
|
+
| `particle-burst` | Particles explode from center, gravity + fade, re-bursts every 2.5s. | Reveal moments, stat pages. | `<div data-fx="particle-burst">` |
|
|
120
|
+
| `confetti-cannon` | Colored rotating rects arcing from both bottom corners. | Thank you / success pages. | `<div data-fx="confetti-cannon">` |
|
|
121
|
+
| `firework` | Rockets from bottom explode into colored sparks, continuous. | Celebration, launch slides. | `<div data-fx="firework">` |
|
|
122
|
+
| `starfield` | 3D perspective starfield flying outward. | Sci-fi / deep space backgrounds. | `<div data-fx="starfield">` |
|
|
123
|
+
| `matrix-rain` | Falling green katakana + hex columns. | Cyber / security / data theme. | `<div data-fx="matrix-rain">` |
|
|
124
|
+
| `knowledge-graph` | Force-directed graph, 28 labeled nodes, ~50 edges, live physics. | Knowledge / RAG / graph slides. | `<div data-fx="knowledge-graph">` |
|
|
125
|
+
| `neural-net` | 4-6-6-3 feedforward net with pulses traveling along edges. | ML / model architecture slides. | `<div data-fx="neural-net">` |
|
|
126
|
+
| `constellation` | Drifting points, linked when within 150 px, opacity by distance. | Ambient hero backgrounds. | `<div data-fx="constellation">` |
|
|
127
|
+
| `orbit-ring` | 5 concentric rings with dots at different speeds, radial glow. | System / planet / layered concepts. | `<div data-fx="orbit-ring">` |
|
|
128
|
+
| `galaxy-swirl` | Logarithmic spiral of ~800 particles, slow rotation. | Cover pages, intros. | `<div data-fx="galaxy-swirl">` |
|
|
129
|
+
| `word-cascade` | Words fall from top, pile up at bottom. | Vocabulary / concept cloud slides. | `<div data-fx="word-cascade">` |
|
|
130
|
+
| `letter-explode` | Heading letters fly in from random directions, loops every ~4.5s. | Big titles, hero text. | `<div data-fx="letter-explode" data-fx-text-value="EXPLODE">` |
|
|
131
|
+
| `chain-react` | 8 circles with a domino pulse wave traveling across. | Pipeline / sequential flow. | `<div data-fx="chain-react">` |
|
|
132
|
+
| `magnetic-field` | Particles travel bezier/sin curves leaving trails. | Energy / flow / abstract. | `<div data-fx="magnetic-field">` |
|
|
133
|
+
| `data-stream` | Rows of scrolling hex/binary text, cyberpunk. | Data, API, security. | `<div data-fx="data-stream">` |
|
|
134
|
+
| `gradient-blob` | 4 drifting blurred radial gradients (additive). | Soft hero backgrounds. | `<div data-fx="gradient-blob">` |
|
|
135
|
+
| `sparkle-trail` | Pointer-driven sparkle emitter (auto-wiggles if idle). | Interactive reveal, hover canvases. | `<div data-fx="sparkle-trail">` |
|
|
136
|
+
| `shockwave` | Expanding rings from center on loop. | Impact, launch, alert. | `<div data-fx="shockwave">` |
|
|
137
|
+
| `typewriter-multi` | 3 lines typing concurrently with blinking block cursors (DOM). | Terminal, agent boot log. | `<div data-fx="typewriter-multi" data-fx-line1="> boot...">` |
|
|
138
|
+
| `counter-explosion` | Number counts 0 → target, bursts particles, resets after 4s. | KPI reveal, record highs. | `<div data-fx="counter-explosion" data-fx-to="2400">` |
|
|
139
|
+
|
|
140
|
+
FX tips:
|
|
141
|
+
- One FX per slide is almost always enough. Mix with regular CSS `data-anim`
|
|
142
|
+
effects for layered polish.
|
|
143
|
+
- The container needs an explicit size (height) — the canvas fills 100%.
|
|
144
|
+
- Every module respects theme custom properties. Set `--accent` / `--accent-2`
|
|
145
|
+
on the slide or element to recolor on the fly.
|
|
146
|
+
- Lifecycle is automatic: entering a slide starts the FX, leaving stops it and
|
|
147
|
+
frees the canvas. You can also call `window.__hpxReinit(el)` manually.
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
# Authoring guide
|
|
2
|
+
|
|
3
|
+
How to turn a user request ("make me a deck about X") into a finished
|
|
4
|
+
html-ppt deck. Follow these steps in order.
|
|
5
|
+
|
|
6
|
+
## 1. Understand the deck
|
|
7
|
+
|
|
8
|
+
Before touching files, clarify:
|
|
9
|
+
|
|
10
|
+
1. **Audience** — engineers? designers? executives? consumers?
|
|
11
|
+
2. **Length** — 5 min lightning? 20 min share? 45 min talk?
|
|
12
|
+
3. **Language** — Chinese, English, bilingual? (Noto Sans SC is preloaded.)
|
|
13
|
+
4. **Format** — on-screen live, PDF export, 小红书图文?
|
|
14
|
+
5. **Tone** — clinical / playful / editorial / cyber?
|
|
15
|
+
|
|
16
|
+
The audience + tone map to a theme; the length maps to slide count; the
|
|
17
|
+
format maps to runtime features (live → notes + T-cycle; PDF → page-break
|
|
18
|
+
CSS, already handled in `base.css`).
|
|
19
|
+
|
|
20
|
+
## 2. Pick a theme
|
|
21
|
+
|
|
22
|
+
Use `references/themes.md`. When in doubt:
|
|
23
|
+
|
|
24
|
+
- **Engineers** → `catppuccin-mocha` / `tokyo-night` / `dracula`.
|
|
25
|
+
- **Designers / product** → `editorial-serif` / `aurora` / `soft-pastel`.
|
|
26
|
+
- **Execs** → `minimal-white` / `arctic-cool` / `swiss-grid`.
|
|
27
|
+
- **Consumers** → `xiaohongshu-white` / `sunset-warm` / `soft-pastel`.
|
|
28
|
+
- **Cyber / CLI / infra** → `terminal-green` / `blueprint` / `gruvbox-dark`.
|
|
29
|
+
- **Pitch / bold** → `neo-brutalism` / `sharp-mono` / `bauhaus`.
|
|
30
|
+
- **Launch / product reveal** → `glassmorphism` / `aurora`.
|
|
31
|
+
|
|
32
|
+
Wire the theme as `<link id="theme-link" href="../assets/themes/NAME.css">`
|
|
33
|
+
and list 3-5 alternatives in `data-themes` so the user can press T to audition.
|
|
34
|
+
|
|
35
|
+
## 3. Outline the deck
|
|
36
|
+
|
|
37
|
+
A solid 20-minute deck is usually:
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
cover → toc → section-divider #1 → [2-4 body pages] →
|
|
41
|
+
section-divider #2 → [2-4 body pages] → section-divider #3 →
|
|
42
|
+
[2-4 body pages] → cta → thanks
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Pick 1 layout per page from `references/layouts.md`. Don't repeat the same
|
|
46
|
+
layout twice in a row.
|
|
47
|
+
|
|
48
|
+
## 4. Scaffold the deck
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
./scripts/new-deck.sh my-talk
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
This copies `templates/deck.html` into `examples/my-talk/index.html` with
|
|
55
|
+
paths rewritten. Add/remove `<section class="slide">` blocks to match your
|
|
56
|
+
outline.
|
|
57
|
+
|
|
58
|
+
## 5. Author each slide
|
|
59
|
+
|
|
60
|
+
For each outline item:
|
|
61
|
+
|
|
62
|
+
1. Open the matching single-page layout, e.g. `templates/single-page/kpi-grid.html`.
|
|
63
|
+
2. Copy the `<section class="slide">…</section>` block.
|
|
64
|
+
3. Paste into your deck.
|
|
65
|
+
4. Replace demo data with real data. Keep the class structure intact.
|
|
66
|
+
5. Set `data-title="..."` (used by the Overview grid).
|
|
67
|
+
6. Add `<div class="notes">…</div>` with speaker notes.
|
|
68
|
+
|
|
69
|
+
## 6. Add animations sparingly
|
|
70
|
+
|
|
71
|
+
Rules of thumb:
|
|
72
|
+
|
|
73
|
+
- Cover/title: `rise-in` or `blur-in`.
|
|
74
|
+
- Body content: `fade-up` for the hero element, `stagger-list` for grids/lists.
|
|
75
|
+
- Stat pages: `counter-up`.
|
|
76
|
+
- Section dividers: `perspective-zoom` or `cube-rotate-3d`.
|
|
77
|
+
- Closer: `confetti-burst` on the "Thanks" text.
|
|
78
|
+
|
|
79
|
+
Pick **one** accent animation per slide. Everything else should be calm.
|
|
80
|
+
|
|
81
|
+
## 7. Chinese + English decks
|
|
82
|
+
|
|
83
|
+
- Fonts are already imported in `fonts.css` (Noto Sans SC + Noto Serif SC).
|
|
84
|
+
- Use `lang="zh-CN"` on `<html>`.
|
|
85
|
+
- For bilingual titles, stack lines: `<h1 class="h1">主标题<br><span class="dim">English subtitle</span></h1>`.
|
|
86
|
+
- Keep English subtitles in a lighter weight (300) and dim color to avoid
|
|
87
|
+
visual competition.
|
|
88
|
+
|
|
89
|
+
## 8. Review in-browser
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
open examples/my-talk/index.html
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
Walk through every slide with ← →. Press:
|
|
96
|
+
|
|
97
|
+
- **O** — overview grid; catch any layout clipping.
|
|
98
|
+
- **T** — cycle themes; make sure nothing looks broken in any theme.
|
|
99
|
+
- **S** — open speaker notes; verify every slide has notes.
|
|
100
|
+
|
|
101
|
+
## 9. Export to PNG
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
# single slide
|
|
105
|
+
./scripts/render.sh examples/my-talk/index.html
|
|
106
|
+
|
|
107
|
+
# all slides (autodetect count by looking for .slide sections)
|
|
108
|
+
./scripts/render.sh examples/my-talk/index.html all
|
|
109
|
+
|
|
110
|
+
# explicit slide count + output dir
|
|
111
|
+
./scripts/render.sh examples/my-talk/index.html 12 out/my-talk-png
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
Output is 1920×1080 by default. Change in `render.sh` if the user wants 3:4
|
|
115
|
+
for 小红书图文 (1242×1660).
|
|
116
|
+
|
|
117
|
+
## 10. What to NOT do
|
|
118
|
+
|
|
119
|
+
- Don't hand-author from a blank file.
|
|
120
|
+
- Don't use raw hex colors in slide markup. Use tokens.
|
|
121
|
+
- Don't load heavy animation frameworks. Everything should stay within the
|
|
122
|
+
CSS/JS that already ships.
|
|
123
|
+
- Don't add more than one new template file unless a genuinely new layout
|
|
124
|
+
type is needed. Prefer composition.
|
|
125
|
+
- Don't delete slides from the showcase decks.
|
|
126
|
+
- **Don't put presenter-only text on the slide.** Any descriptive text,
|
|
127
|
+
narration cues, or explanations meant for the speaker (e.g. "这一页的重点是…",
|
|
128
|
+
"Note: mention X here", small grey captions explaining the slide's purpose)
|
|
129
|
+
MUST go inside `<div class="notes">`, not as visible elements. The `.notes`
|
|
130
|
+
div is hidden (`display:none`) and only shown via the S overlay. Slides
|
|
131
|
+
should contain ONLY audience-facing content.
|
|
132
|
+
|
|
133
|
+
## Troubleshooting
|
|
134
|
+
|
|
135
|
+
- **Theme doesn't switch with T**: check `data-themes` on `<body>` and
|
|
136
|
+
`data-theme-base` pointing to the themes directory relative to the HTML
|
|
137
|
+
file.
|
|
138
|
+
- **Fonts fall back**: make sure `fonts.css` is linked before the theme.
|
|
139
|
+
- **Chart.js colors wrong**: charts read CSS vars in JS; make sure they run
|
|
140
|
+
after the DOM is ready (`addEventListener('DOMContentLoaded', …)`).
|
|
141
|
+
- **PNG too small**: bump `--window-size` in `scripts/render.sh`.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# Full-Deck Templates
|
|
2
|
+
|
|
3
|
+
Self-contained multi-slide HTML decks under `templates/full-decks/<name>/`. Each folder contains:
|
|
4
|
+
|
|
5
|
+
- `index.html` — complete multi-slide deck (cover / section / content / code / chart or diagram / CTA / thanks, 7+ slides)
|
|
6
|
+
- `style.css` — scoped with `.tpl-<name>` class prefix so multiple templates can coexist
|
|
7
|
+
- `README.md` — short rationale, inspiration, and use guidance
|
|
8
|
+
|
|
9
|
+
All templates pull the shared `assets/fonts.css`, `assets/base.css`, and `assets/runtime.js` from the skill root. Navigate with `← →` / `space`, use `F` for fullscreen, `O` for overview.
|
|
10
|
+
|
|
11
|
+
Use these when you want a coherent, opinionated look for an entire deck — not a mix-and-match of layouts. Each template is visually distinctive enough to be identified at a glance.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 1. xhs-white-editorial — 白底杂志风
|
|
16
|
+
|
|
17
|
+
- **Source inspiration:** `20260409 升级版知识库/小红书图文/v2-白底版/slide_01_cover.html` + `20260412-AI测试与安全/html/xhs-ai-testing-safety-v2.html`
|
|
18
|
+
- **Key visual traits:** pure-white background, top 10-color rainbow bar, 80-110px display headlines, purple→blue→green→orange→pink gradient text, macaron soft-card set (soft-purple/pink/blue/green/orange), black-on-white `.focus` pills, hero quote box.
|
|
19
|
+
- **When to use:** dual-purpose XHS image + horizontal deck; dense text with strong emphasis; Chinese-first audience.
|
|
20
|
+
- **Path:** `templates/full-decks/xhs-white-editorial/index.html`
|
|
21
|
+
|
|
22
|
+
## 2. graphify-dark-graph — 暗底知识图谱
|
|
23
|
+
|
|
24
|
+
- **Source inspiration:** `20260413-graphify/ppt/graphify.html`
|
|
25
|
+
- **Key visual traits:** `#06060c→#0e1020` deep-night gradient, drifting blur orbs, SVG force-directed graph overlay on cover, rainbow-shift gradient headlines, JetBrains Mono command-line glow, glass-morphism cards (warm/blue/green/purple/danger). Accent palette: amber `#e8a87c`, mint `#7ed3a4`, mist-blue `#7eb8da`, lilac `#b8a4d6`.
|
|
26
|
+
- **When to use:** dev-tool / CLI / knowledge-graph / data-viz launches; live-demo decks that want an "AI-native + sci-fi + warm" vibe.
|
|
27
|
+
- **Path:** `templates/full-decks/graphify-dark-graph/index.html`
|
|
28
|
+
|
|
29
|
+
## 3. knowledge-arch-blueprint — 奶油蓝图架构
|
|
30
|
+
|
|
31
|
+
- **Source inspiration:** `20260405-Karpathy-知识库/20260405 架构图v2.html`
|
|
32
|
+
- **Key visual traits:** cream paper `#F0EAE0` base, single rust accent `#B5392A`, 48px blueprint grid mask, hard 2px black border cards, pipeline step-boxes with one hero raised, right-side rust insight callout, Playfair serif big numbers, SVG dashed feedback-loop arrows. Zero gradients, zero soft shadows.
|
|
33
|
+
- **When to use:** system architecture diagrams, data-flow maps, engineering white-papers; you want a serious, printable, README-friendly feel.
|
|
34
|
+
- **Path:** `templates/full-decks/knowledge-arch-blueprint/index.html`
|
|
35
|
+
|
|
36
|
+
## 4. hermes-cyber-terminal — 暗终端 honest-review
|
|
37
|
+
|
|
38
|
+
- **Source inspiration:** `20260414-hermes-agent/ppt/hermes-record.html` + `hermes-vs-openclaw.html`
|
|
39
|
+
- **Key visual traits:** `#0a0c10` black, 56px cyber grid + CRT vignette + scanlines, window traffic-light chrome, `$ prompt` command-line headlines, mint-green `#7ed3a4` glow big text, JetBrains Mono throughout, stroke-only bar charts, blinking cursor, amber/green/red tag hierarchy, dark code box.
|
|
40
|
+
- **When to use:** reviews of CLI / agent / dev tools with trace, diff, and benchmarks; when you want the "honest technical reviewer" voice.
|
|
41
|
+
- **Path:** `templates/full-decks/hermes-cyber-terminal/index.html`
|
|
42
|
+
|
|
43
|
+
## 5. obsidian-claude-gradient — GitHub 暗紫渐变
|
|
44
|
+
|
|
45
|
+
- **Source inspiration:** `20260406-obsidian-claude/slides.html`
|
|
46
|
+
- **Key visual traits:** GitHub-dark `#0d1117`, purple+blue radial ambient plus 60px masked grid, center-aligned layout, purple pill tags, three-stop gradient text `#a855f7→#60a5fa→#34d399`, GitHub-ish code palette (`#010409` bg + purple/blue/orange/green tokens), purple-left-border highlight block.
|
|
47
|
+
- **When to use:** developer workflow / MCP / Agent / dev-tool tutorials; feels like GitHub Blog / Linear Changelog; config + steps heavy content.
|
|
48
|
+
- **Path:** `templates/full-decks/obsidian-claude-gradient/index.html`
|
|
49
|
+
|
|
50
|
+
## 6. testing-safety-alert — 红琥珀警示
|
|
51
|
+
|
|
52
|
+
- **Source inspiration:** `20260412-AI测试与安全/html/xhs-ai-testing-safety-v2.html`
|
|
53
|
+
- **Key visual traits:** top and bottom 45° red-black hazard stripes, red strike-through negation headlines, L1/L2/L3 green/amber/red tier cards, alert-box with circular status dot, policy-yaml code block with red left border and `bad` keyword highlighting, red/green checklist, Q1 incident stacked bar chart.
|
|
54
|
+
- **When to use:** safety / risk / incident post-mortem / red-team / pre-launch AI review / policy-as-code; when the audience needs to feel "this is serious, don't skim".
|
|
55
|
+
- **Path:** `templates/full-decks/testing-safety-alert/index.html`
|
|
56
|
+
|
|
57
|
+
## 7. xhs-pastel-card — 柔和马卡龙慢生活
|
|
58
|
+
|
|
59
|
+
- **Source inspiration:** `20260412-obsidian-skills/html/xhs-obsidian-skills.html` + pastel patterns shared with `20260409` v2-白底版
|
|
60
|
+
- **Key visual traits:** cream `#fef8f1` base, three soft blurred blobs, Playfair italic serif display headlines mixed with sans body, full-color 28px rounded macaron cards (peach / mint / sky / lilac / lemon / rose), italic Playfair `01-04` numerals, SVG donut chart, chip+page topbar.
|
|
61
|
+
- **When to use:** lifestyle / personal-growth / slow-living / emotional content; when you want a "magazine, handmade, not-so-techy" feel; themes like rest, pause, softness.
|
|
62
|
+
- **Path:** `templates/full-decks/xhs-pastel-card/index.html`
|
|
63
|
+
|
|
64
|
+
## 8. dir-key-nav-minimal — 方向键 8 色极简
|
|
65
|
+
|
|
66
|
+
- **Source inspiration:** `20260405-Karpathy-知识库/20260405 演示幻灯片【方向键版】.html`
|
|
67
|
+
- **Key visual traits:** 8 slides each on its own mono background (indigo / cream / crimson / emerald / slate / violet / white / charcoal), each with its own accent color, 160px display headline + 4px stubby accent line divider, arrow `→` prefixed Mono list, bottom-left `← →` kbd hint plus bottom-right page label, huge breathing negative space.
|
|
68
|
+
- **When to use:** keynote-style minimalist talk where you have something to say and not much to show; one idea per slide; talks / launches / public presentations.
|
|
69
|
+
- **Path:** `templates/full-decks/dir-key-nav-minimal/index.html`
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Scenario decks (generic, reusable)
|
|
74
|
+
|
|
75
|
+
These are not extracted from a single source — they are generic scaffolds for the most common presentation jobs. Each is visually distinctive and content-rich out of the box.
|
|
76
|
+
|
|
77
|
+
| # | Name | Slides | Feel | When to use |
|
|
78
|
+
|---|---|---|---|---|
|
|
79
|
+
| 9 | `pitch-deck` | 10 | White + blue→purple gradient, YC/VC vibe, big numbers, traction chart | Fundraising, startup pitch, investor meeting |
|
|
80
|
+
| 10 | `product-launch` | 8 | Dark hero + light content, warm orange→peach, feature cards, pricing tiers, CTA | Announcing a product, launch keynote |
|
|
81
|
+
| 11 | `tech-sharing` | 8 | GitHub-dark, JetBrains Mono, terminal code blocks, agenda + Q&A | 技术分享, internal tech talk, conference talk |
|
|
82
|
+
| 12 | `weekly-report` | 7 | Corporate clarity, 8-cell KPI grid, shipped list, 8-week bar chart, next-week table | 周报, team status update, business review |
|
|
83
|
+
| 13 | `xhs-post` | 9 | **3:4 @ 810×1080**, warm pastel, dashed sticker cards, page dots | 小红书 图文 post, Instagram carousel |
|
|
84
|
+
| 14 | `course-module` | 7 | Warm paper + Playfair serif, persistent left sidebar of learning objectives, MCQ self-check | 教学模块, online course, workshop module |
|
|
85
|
+
| 15 | `presenter-mode-reveal` 🎤 | 6 | **演讲者模式专用** · tokyo-night 默认 · 5 主题 T 键切换 · 每页带 150–300 字逐字稿示例 | **技术分享/演讲/课程**—需要按 S 键看逐字稿的场景 ✨ |
|
|
86
|
+
|
|
87
|
+
Each folder: `index.html`, scoped `style.css` (prefixed `.tpl-<name>`), `README.md`. The `xhs-post` template overrides the default `.slide` box to fixed `810×1080` for 3:4 portrait.
|
|
88
|
+
|
|
89
|
+
> 🎤 **任何演讲场景(技术分享 / 课程 / 路演)都推荐用 `presenter-mode-reveal`**,或者参考 [presenter-mode.md](./presenter-mode.md) 指南给其他模板加 `<aside class="notes">` 逐字稿。
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## Authoring notes
|
|
94
|
+
|
|
95
|
+
- Every template scopes its CSS under `.tpl-<name>` so two or more templates can load on the same page without collisions.
|
|
96
|
+
- Swap demo content, but keep the structural classes — they are what gives each template its identity.
|
|
97
|
+
- The shared runtime (`assets/runtime.js`) provides keyboard nav, fullscreen, overview grid, theme cycling — you don't need to add any JS.
|
|
98
|
+
- Charts are hand-rolled SVG (no CDN dependency). Feel free to replace with chart.js / echarts if you need interactive data.
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# Layouts catalog
|
|
2
|
+
|
|
3
|
+
Every layout lives in `templates/single-page/<name>.html` as a fully
|
|
4
|
+
functional standalone page with realistic demo data. Open any file directly
|
|
5
|
+
in Chrome to see it working.
|
|
6
|
+
|
|
7
|
+
To compose a new deck: open the file, copy the `<section class="slide">…</section>`
|
|
8
|
+
block (or multiple blocks) into your deck HTML, and replace the demo data.
|
|
9
|
+
Shared CSS (base, theme, animations) is already wired by `deck.html`.
|
|
10
|
+
|
|
11
|
+
## Openers & transitions
|
|
12
|
+
|
|
13
|
+
| file | purpose |
|
|
14
|
+
|---|---|
|
|
15
|
+
| `cover.html` | Deck cover. Kicker + huge title + lede + pill row. |
|
|
16
|
+
| `toc.html` | Table of contents. 2×3 grid of numbered cards. |
|
|
17
|
+
| `section-divider.html` | Big numbered section break (02 · Theme). |
|
|
18
|
+
|
|
19
|
+
## Text-centric
|
|
20
|
+
|
|
21
|
+
| file | purpose |
|
|
22
|
+
|---|---|
|
|
23
|
+
| `bullets.html` | Classic bullet list with card-wrapped items. |
|
|
24
|
+
| `two-column.html` | Concept + example side by side. |
|
|
25
|
+
| `three-column.html` | Three equal pillars with icons. |
|
|
26
|
+
| `big-quote.html` | Full-bleed pull quote in editorial-serif style. |
|
|
27
|
+
|
|
28
|
+
## Numbers & data
|
|
29
|
+
|
|
30
|
+
| file | purpose |
|
|
31
|
+
|---|---|
|
|
32
|
+
| `stat-highlight.html` | One giant number + subtitle (uses `.counter` animation). |
|
|
33
|
+
| `kpi-grid.html` | 4 KPIs in a row with up/down deltas. |
|
|
34
|
+
| `table.html` | Data table with hover rows, right-aligned numerics. |
|
|
35
|
+
| `chart-bar.html` | Chart.js bar chart, theme-aware colors. |
|
|
36
|
+
| `chart-line.html` | Chart.js dual-line chart with filled area. |
|
|
37
|
+
| `chart-pie.html` | Chart.js doughnut + takeaways card. |
|
|
38
|
+
| `chart-radar.html` | Chart.js radar comparing 2 products on 6 axes. |
|
|
39
|
+
|
|
40
|
+
## Code & terminal
|
|
41
|
+
|
|
42
|
+
| file | purpose |
|
|
43
|
+
|---|---|
|
|
44
|
+
| `code.html` | Syntax-highlighted code via highlight.js (JS example). |
|
|
45
|
+
| `diff.html` | Hand-rolled +/- diff view. |
|
|
46
|
+
| `terminal.html` | Terminal window mock with traffic-light header. |
|
|
47
|
+
|
|
48
|
+
## Diagrams & flows
|
|
49
|
+
|
|
50
|
+
| file | purpose |
|
|
51
|
+
|---|---|
|
|
52
|
+
| `flow-diagram.html` | 5-node pipeline with arrows and one highlighted node. |
|
|
53
|
+
| `arch-diagram.html` | 3-tier architecture grid. |
|
|
54
|
+
| `process-steps.html` | 4 numbered steps in cards. |
|
|
55
|
+
| `mindmap.html` | Radial mindmap with SVG path-draw animation. |
|
|
56
|
+
|
|
57
|
+
## Plans & comparisons
|
|
58
|
+
|
|
59
|
+
| file | purpose |
|
|
60
|
+
|---|---|
|
|
61
|
+
| `timeline.html` | 5-point horizontal timeline with dots. |
|
|
62
|
+
| `roadmap.html` | 4-column NOW / NEXT / LATER / VISION. |
|
|
63
|
+
| `gantt.html` | 12-week gantt chart with 5 parallel tracks. |
|
|
64
|
+
| `comparison.html` | Before vs After two-panel card. |
|
|
65
|
+
| `pros-cons.html` | Pros and cons two-card layout. |
|
|
66
|
+
| `todo-checklist.html` | Checklist with checked/unchecked states. |
|
|
67
|
+
|
|
68
|
+
## Visuals
|
|
69
|
+
|
|
70
|
+
| file | purpose |
|
|
71
|
+
|---|---|
|
|
72
|
+
| `image-hero.html` | Full-bleed hero with Ken Burns gradient background. |
|
|
73
|
+
| `image-grid.html` | 7-cell bento grid with gradient placeholders. |
|
|
74
|
+
|
|
75
|
+
## Closers
|
|
76
|
+
|
|
77
|
+
| file | purpose |
|
|
78
|
+
|---|---|
|
|
79
|
+
| `cta.html` | Call-to-action with big gradient headline + buttons. |
|
|
80
|
+
| `thanks.html` | Final "Thanks" page with confetti burst. |
|
|
81
|
+
|
|
82
|
+
## Picking a layout
|
|
83
|
+
|
|
84
|
+
- **Opener**: `cover.html`, often followed by `toc.html`.
|
|
85
|
+
- **Section break**: `section-divider.html` before every major section.
|
|
86
|
+
- **Core content**: `bullets.html`, `two-column.html`, `three-column.html`.
|
|
87
|
+
- **Show numbers**: `stat-highlight.html` (single) or `kpi-grid.html` (4-up).
|
|
88
|
+
- **Show plot**: `chart-bar.html` / `chart-line.html` / `chart-pie.html` / `chart-radar.html`.
|
|
89
|
+
- **Show a diff or change**: `comparison.html`, `diff.html`, `pros-cons.html`.
|
|
90
|
+
- **Show a plan**: `timeline.html`, `roadmap.html`, `gantt.html`, `process-steps.html`.
|
|
91
|
+
- **Show architecture**: `arch-diagram.html`, `flow-diagram.html`, `mindmap.html`.
|
|
92
|
+
- **Code / demo**: `code.html`, `terminal.html`.
|
|
93
|
+
- **Closer**: `cta.html` → `thanks.html`.
|
|
94
|
+
|
|
95
|
+
## Naming / structure conventions
|
|
96
|
+
|
|
97
|
+
- Each slide is `<section class="slide" data-title="...">`.
|
|
98
|
+
- Header pills: `<p class="kicker">…</p>`, eyebrow: `<p class="eyebrow">…</p>`.
|
|
99
|
+
- Titles: `<h1 class="h1">…</h1>` / `<h2 class="h2">…</h2>`.
|
|
100
|
+
- Lede: `<p class="lede">…</p>`.
|
|
101
|
+
- Cards: `<div class="card">…</div>` (variants: `card-soft`, `card-outline`, `card-accent`).
|
|
102
|
+
- Grids: `.grid.g2`, `.grid.g3`, `.grid.g4`.
|
|
103
|
+
- Notes: `<div class="notes">…</div>` per slide.
|