nexu-io/open-design/plugins/_official/examples/fs-creative-voltage/SKILL.md
fs-creative-voltage
Open Design's seed pitch: the open, local alternative to closed AI design — why now, the wedge, and the ask. Built as a decision-grade fundraising pitch deck for pre-seed & seed VCs.
- Source repository stars
- 82,073
- Declared platforms
- 0
- Static risk flags
- 0
- Last source update
- 2026-07-28
- Source checked
- 2026-07-28
Decision brief
What it does—and where it fits
A locked single-theme deck plugin derived from the Creative Voltage preset (section 3 of STYLEPRESETS.md) in the MIT-licensed zarazhangrui/frontend-slides. Vibe: bold, creative, energetic, retro-modern — a retro poster shop wired to a power grid.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/nexu-io/open-design --skill "plugins/_official/examples/fs-creative-voltage"Inspect the Agent Skill "fs-creative-voltage" from https://github.com/nexu-io/open-design/blob/89d6d4ef21baf80f871595abdf6f7de6e941dd44/plugins/_official/examples/fs-creative-voltage/SKILL.md at commit 89d6d4ef21baf80f871595abdf6f7de6e941dd44. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Fixed 16:9 stage — NON-NEGOTIABLE scaling system
Every deck is authored on a fixed 1920×1080 canvas: .deck-viewport (fills the window) wraps .deck-stage (1920×1080, transform-origin: 0 0).
Every deck is authored on a fixed 1920×1080 canvas: .deck-viewport (fills the window) wraps .deck-stage (1920×1080, transform-origin: 0 0).JavaScript scales the whole stage uniformly: factor = min(innerWidth/1920, innerHeight/1080), then transform: translate(x, y) scale(factor) to center with letterbox/pillarbox; re-run on resize.Never reflow slide content per device. No responsive breakpoints inside slides. All measurements are fixed px at the 1920×1080 design size. - 02
Locked design tokens (:root — reproduce exactly)
Google Fonts (the only external reference allowed): https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Yellowtail&display=swap
Google Fonts (the only external reference allowed): https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Yellowtail&display=swapForbidden: any color outside the token table; Inter / Roboto / Arial / system display fonts; purple gradients; generic indigo 6366f1; rounded-corner glassmorphism. Neon yellow is an accent, never a slide background. - 03
Slide shell chrome (every slide)
directly inside .deck-stage; 10 slides per deck — split content into more slides rather than shrinking type.
directly inside .deck-stage; 10 slides per deck — split content into more slides rather than shrinking type..slide-no top-left: Space Mono 700, neon yellow, format NN / VOLT..crumbs top-right: uppercase mono breadcrumbs; active section in neon (.on). - 04
Signature devices (the theme's identity — use them, don't invent new ones)
1. Split panels — .panel-blue (46% width, linear-gradient(160deg, 0066ff, 0052cc)) against the deep navy base; .panel-blue.right mirrors it. Covers, dividers, quotes, and closings lean on this two-tone split. 2. Halftone dot texture — .halftone: pure CSS radial-gradient(circle,…
Split panels — .panel-blue (46% width, linear-gradient(160deg, 0066ff, 0052cc)) against the deep navy base; .panel-blue.right mirrors it. Covers, dividers, quotes, and closings lean on this two-tone split.Halftone dot texture — .halftone: pure CSS radial-gradient(circle, rgba(255,255,255,.30) 2.2px, transparent 2.9px) on a 22px grid, faded out with a mask-image linear gradient (.fade or inline masks). .halftone.neon swap…Neon badges — .badge: neon yellow block, navy mono uppercase text, rotate(-2deg), hard offset shadow 6px 6px 0 rgba(0,0,0,.35). Sticker energy. - 05
Layout masters (compose every deck from these — all present in the seed)
Review the “Layout masters (compose every deck from these — all present in the seed)” section in the pinned source before continuing.
Review and apply the “Layout masters (compose every deck from these — all present in the seed)” source section.
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 82/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 82,073 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- nexu-io/open-design
- Skill path
- plugins/_official/examples/fs-creative-voltage/SKILL.md
- Commit
- 89d6d4ef21baf80f871595abdf6f7de6e941dd44
- License
- Apache-2.0
- Collected
- 2026-07-28
- Default branch
- main
View the original SKILL.md
Creative Voltage (fs-creative-voltage)
A locked single-theme deck plugin derived from the Creative Voltage preset (section 3 of STYLE_PRESETS.md) in the MIT-licensed zarazhangrui/frontend-slides. Vibe: bold, creative, energetic, retro-modern — a retro poster shop wired to a power grid.
Start from example.html in this plugin folder. It is the proven seed: copy its stage CSS, slide shell chrome, signature-device CSS, and the entire SlidePresentation controller script verbatim, then replace only the slide content. Do not rewrite the stage system, the navigation script, or the design tokens. Do not introduce any colors or fonts outside this spec.
Locked design tokens (:root — reproduce exactly)
:root {
--stage-bg: #10101f; /* letterbox behind the stage */
--slide-bg: #1a1a2e; /* default slide background */
--bg-primary: #0066ff; /* electric blue panel */
--bg-primary-deep: #0052cc; /* blue gradient stop */
--bg-dark: #1a1a2e; /* deep navy panel */
--bg-dark-2: #23234a; /* lifted navy card */
--accent-neon: #d4ff00; /* neon yellow badge/highlight */
--accent-neon-soft: rgba(212, 255, 0, 0.14);
--text-light: #ffffff;
--text-dim: rgba(255, 255, 255, 0.64);
--text-faint: rgba(255, 255, 255, 0.34);
--text-on-neon: #1a1a2e; /* navy text on neon yellow */
--line: rgba(255, 255, 255, 0.18);
--line-blue: rgba(255, 255, 255, 0.28);
--font-display: 'Syne', sans-serif; /* 700/800, uppercase headlines */
--font-mono: 'Space Mono', monospace; /* 400/700, body + labels + chrome */
--font-script: 'Yellowtail', cursive; /* script flourishes only */
--title-size: 138px;
--h2-size: 88px;
--subtitle-size: 32px;
--body-size: 27px;
--label-size: 20px;
--slide-pad: 96px;
--ease-volt: cubic-bezier(0.16, 1, 0.3, 1); /* the one signature easing */
--duration-normal: 0.7s;
}
Google Fonts (the only external reference allowed):
https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Yellowtail&display=swap
Forbidden: any color outside the token table; Inter / Roboto / Arial / system display fonts; purple gradients; generic indigo #6366f1; rounded-corner glassmorphism. Neon yellow is an accent, never a slide background.
Fixed 16:9 stage — NON-NEGOTIABLE scaling system
- Every deck is authored on a fixed 1920×1080 canvas:
.deck-viewport(fills the window) wraps.deck-stage(1920×1080,transform-origin: 0 0). - JavaScript scales the whole stage uniformly:
factor = min(innerWidth/1920, innerHeight/1080), thentransform: translate(x, y) scale(factor)to center with letterbox/pillarbox; re-run onresize. - Never reflow slide content per device. No responsive breakpoints inside slides. All measurements are fixed px at the 1920×1080 design size.
- Include the full viewport-base block from the seed
<style>(stage, slide stacking, print,prefers-reduced-motion). - Slide switching toggles
.active/.visibleclasses flippingvisibility/opacity/pointer-events— neverdisplay: none.
Slide shell chrome (every slide)
<section class="slide">directly inside.deck-stage; ~10 slides per deck — split content into more slides rather than shrinking type..slide-notop-left: Space Mono 700, neon yellow, formatNN / VOLT..crumbstop-right: uppercase mono breadcrumbs; active section in neon (.on)..baselinebottom: 2px rule with uppercase mono caption left andNN / 10right..deck-controlspage counter is fixed-positioned outside the scaled stage.
Signature devices (the theme's identity — use them, don't invent new ones)
- Split panels —
.panel-blue(46% width,linear-gradient(160deg, #0066ff, #0052cc)) against the deep navy base;.panel-blue.rightmirrors it. Covers, dividers, quotes, and closings lean on this two-tone split. - Halftone dot texture —
.halftone: pure CSSradial-gradient(circle, rgba(255,255,255,.30) 2.2px, transparent 2.9px)on a22pxgrid, faded out with amask-imagelinear gradient (.fadeor inline masks)..halftone.neonswaps the dots torgba(212,255,0,.45). Place one halftone patch per slide, in a corner. - Neon badges —
.badge: neon yellow block, navy mono uppercase text,rotate(-2deg), hard offset shadow6px 6px 0 rgba(0,0,0,.35). Sticker energy. - Script flourishes —
.script(Yellowtail) in neon yellow, used for one emphasized word inside a headline or a signature line; oftenrotate(-2deg/-3deg). Never for body text. - Ghost numerals —
.ghost-num: transparent fill with-webkit-text-stroke: 4px var(--accent-neon)for giant section-divider characters.
Layout masters (compose every deck from these — all present in the seed)
| Master | Seed slide | Notes |
|---|---|---|
| Cover (split blue/dark) | 1 | badge + giant Syne title + script tagline left; mono metadata + neon rule right |
| Agenda | 2 | rows with neon mono index, Syne uppercase name, dim mono hint |
| Section divider | 3 | giant ghost numeral on blue panel + badge + intro paragraph |
| Bullets | 4 | max 3-4 items: rotated neon tick (inline SVG) + Syne heading + mono support line |
| Big stat | 5 | one oversized neon Syne number (≈480px) + side note column |
| Principle grid | 6 | 2×2 cards on --bg-dark-2, one .hot card on electric blue, inline SVG icons stroked #d4ff00 |
| CSS bar chart | 7 | scaleY-animated bars (navy / blue / neon for the hero bar), mono values + labels, no chart libraries |
| Quote | 8 | Syne quote with neon <em>, Yellowtail attribution, narrow blue panel right |
| Comparison | 9 | navy "before" column (× markers) vs blue "after" column (→ markers, neon tag) |
| Closing | 10 | badge + giant title ending in a script word + mono contact links with inline SVG icons |
Motion
- Entrances via
.revealelements that transition when the slide gains.visible; stagger withtransition-delaysteps of ~0.1s (nth-childrules in the seed). - Chart bars animate
transform: scaleY(0 → 1)fromtransform-origin: bottomwith per-bar delays. - One signature easing only:
cubic-bezier(0.16, 1, 0.3, 1). Animate onlytransformandopacity.prefers-reduced-motionsupport is mandatory (in the base CSS).
Navigation runtime (keep the seed's script verbatim)
- Keyboard:
←/→,↑/↓,Space,PageUp/PageDown,Home/End. - Hash routing: current slide mirrored to
#/<index>; deep links andhashchangerestore the slide. - Mouse wheel (debounced ~650ms) and touch swipe (≥40px threshold).
Output contract
- One self-contained
.htmlfile: all CSS and JS inline, no build step, no external JS libraries, no CDN scripts; Google Fonts link is the only external reference. - Icons are inline SVG stroked in
#d4ff00(or#1a1a2eon neon ticks). No remote images; halftone patterns, gradients, and panels are the visual language. - No scrolling, no overflow, no overlapping text panels. Comment each section
/* === SECTION NAME === */. - CSS gotcha: never negate CSS functions directly (
-clamp()is silently ignored) — usecalc(-1 * clamp(...)).
Attribution
Theme tokens and the fixed-stage model come from the upstream MIT-licensed zarazhangrui/frontend-slides (© 2025 Zara Zhang), Creative Voltage preset. The LICENSE file ships in this plugin folder; keep it in place when redistributing.
Alternatives
Compare before choosing
coreyhaines31/marketingskills
ab-testing
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
churn-prevention
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
event4u-app/agent-config
design-intelligence
Grounded design brief from the adopted corpus — style, WCAG-checked color tokens, typography, layout pattern, anti-patterns. Use on ui-design-brief or any which-style/palette/font/chart decision.
event4u-app/agent-config
design-system-capture
Write and maintain DESIGN.md + PRODUCT.md — captures visual decisions and interaction patterns so design tasks stay consistent across sessions without re-scanning past work.