Generate Preset Sub-Skill
Generates a ready-to-use CSS + JS preset bundle for self-media cards, derived from the user's free-form style description. The output is a pair of files (<preset-name>.css + <preset-name>.js) that follow the exact same anatomy as the built-in presets (neo-brutalism, code-dispatch, dark-tech).
When to Load This Skill
Load this skill immediately when any of the following is true:
English triggers:
- The user selects "Custom style — describe the visual language you want" in the Step 4.1 preset picker.
- The user says phrases like "make a new preset", "create a style for me", "I want a custom template", "design a theme that looks like…".
- The user provides a reference image, Figma frame, or screenshot and asks to "generate a matching preset".
Multilingual triggers:
- The user selects the localized equivalent of "Custom style" in Step 4.1.
- The user asks for a custom visual style, new preset, visual template, theme, palette system, or design system in any language.
- The user provides a reference image, Figma file, or screenshot and asks to match that style.
Do not load this skill for small card-level tweaks (e.g. "change this card's background color"). This skill is exclusively for authoring a reusable preset bundle.
Output Language Contract
Follow the parent self-media-composer Output Language Contract:
- Keep CSS class names, preset slugs, JS namespaces, token names, filenames, and API-shaped values in stable English/ASCII.
- Write preview card copy, placeholder content, comments, labels, and visible demo prose in the user's preferred output language.
- If the user did not specify a language for demo content, infer it from the parent post request; otherwise default to concise English for preview scaffolds.
- Do not translate brand names, product names, source quotes, code identifiers, or fixed schema values.
Workflow
Step G1 — Extract the Design Brief
Interview the user (or infer from context) to resolve these five axes. Use ask_user if any axis is missing and cannot be safely inferred.
| Axis |
Key questions |
Examples |
| Mood / Aesthetic |
How should a viewer feel? |
Energetic, calm, authoritative, playful, minimalist, luxurious, retro, futuristic |
| Color Palette |
Primary bg, accent, text, border colors |
Light or dark bg? Warm or cool tones? Saturated or muted? |
| Typography |
Font personality |
Serif, sans-serif, monospace? Heavy weight contrast or uniform? |
| Decoration |
Visual texture and ornamentation |
Grid lines, ruled paper, noise texture, clean flat, geometric shapes, gradient overlays |
| Content Domain |
What topics will the cards cover? |
Tech/coding, lifestyle, beauty, finance, travel, food, product reviews |
If the user provides a reference image, use visual_understanding to extract the palette, dominant textures, typography weight, and layout language before proceeding.
Step G2 — Define Design Tokens
Translate the brief into a concrete token set. Write these down before writing any code.
Required tokens:
Preset name: <safe-for-filesystem slug, e.g. "soft-pastel">
Global prefix: <2-4 letter prefix for all CSS classes, e.g. "sp-">
JS namespace: window.<PascalCase>Presets (e.g. window.SoftPastelPresets)
Color tokens:
bg-primary: <hex> Main card background
bg-surface: <hex> Elevated surface / inner block bg
bg-surface2: <hex> Second elevation (optional)
accent: <hex> Primary accent / CTA color
accent-light: <hex> Lighter accent variant (hover states, highlights)
text-primary: <hex> Main body text
text-muted: <hex> Secondary / subdued text
border: <hex> Default border / rule color
border-accent: <hex> Accented border (optional)
positive: <hex> Positive / success indicator (green-family)
negative: <hex> Negative / danger indicator (red-family)
Typography tokens:
font-display: <CSS font-family string> Titles and large display text
font-body: <CSS font-family string> Body and label text
weight-heavy: <number> e.g. 900 or 700
weight-light: <number> e.g. 300 or 400
letter-spacing-display: <em value>
letter-spacing-body: <em value>
Border & Shadow tokens:
border-width: <px> e.g. 3px (neo-brutalism) or 1px (dark-tech)
border-radius: <px or 0> e.g. 0 for hard edges, 8px for soft
shadow-style: <CSS value or "none"> Hard offset = "4px 4px 0 #000", soft = "none"
Texture / background decoration:
bg-pattern: <CSS background-image or "none"> e.g. grid lines, dots, ruled lines
Step G3 — Author the CSS File
Write <preset-name>.css using the token values from Step G2. Follow the exact section structure (§0 variables, §1 card shell, §2 content components, §3 utility classes, §4 layout helpers) documented in references/css-anatomy.md.
Critical constraint from §0: html, body { width:540px; height:720px; overflow:hidden; } must appear verbatim. Never set font-size on html.
Step G4 — Author the JS File
Write <preset-name>.js as a self-executing IIFE that exposes a global registry window.<PascalCase>Presets. Load references/js-skeleton.md for the complete skeleton to fill in.
Key rules:
- Keep design tokens in
T object — same hex values as in the CSS :root block.
- Include at least 3 preset chart types from: bar, line, donut, radar, column, scatter.
- Only use ECharts (assumed present on page). No
fetch, no DOM manipulation outside of ECharts.
- The IIFE must use the exact wrapper:
(function(global){ ... }(window));
- Expose only one global:
window.<PascalCase>Presets.
- Include the full CSS class quick-reference as a JSDoc comment block.
Step G5 — Author the Preview File
Write <preset-name>/preview.html — a standalone gallery page that showcases all major CSS components and at least one chart rendered by the JS preset. Load references/preview-skeleton.md for the full platform-specific template.
Key rules:
- Override
html, body { width: auto; height: auto; overflow: auto; } so the page scrolls.
- Include at least 4 cards: cover, content/stats, content/chart, content/list.
- Exercise every §2 component class and every §3 utility group at least once across all cards.
- Load ECharts from CDN (
https://cdn.jsdelivr.net/npm/echarts@5/dist/echarts.min.js) and render at least one chart using the JS preset's .get() method.
- Fill cards with representative placeholder content matching the content domain from Step G1 — never leave cards empty or use generic "Lorem ipsum".
- Use the same class prefix and naming as the authored CSS; do not introduce ad-hoc styles that bypass the preset.
Preview layout by platform:
| Platform |
Container layout |
Card wrapper size |
Notes |
rednote |
flex-wrap: wrap |
540×720 |
Cards at native size, side-by-side |
instagram |
flex-direction: column |
1080×1350 scaled to 50% |
Use transform: scale(0.5) + negative margin-bottom |
Step G6 — Save the Files
Write all three files directly into the project's shared/presets/<preset-name>/ folder:
<project-root>/shared/presets/<preset-name>/<preset-name>.css
<project-root>/shared/presets/<preset-name>/<preset-name>.js
<project-root>/shared/presets/<preset-name>/preview.html
Use write_file for all three. If the destination already exists, ask the user before overwriting.
Step G7 — Register the Preset
After writing the files, do not modify the master self-media-composer/SKILL.md. The generated preset lives only in the project's shared/presets/ folder. It is a project-local preset, not a built-in one.
The self-media-composer workflow (Step 4.4) will reference it exactly like a built-in preset:
<link
rel="stylesheet"
href="../../shared/presets/<preset-name>/<preset-name>.css"
/>
<script src="../../shared/presets/<preset-name>/<preset-name>.js"></script>
Quality Checklist
Before handing off the generated files, verify every item:
CSS
JS
Preview
Files
References
Load these files during the corresponding steps:
| Reference |
When to load |
| CSS File Anatomy |
During Step G3 — full §0–§4 structure, component list, utility groups |
| JS File Skeleton |
During Step G4 — complete IIFE skeleton to fill in |
| Preview HTML Skeleton |
During Step G5 — platform-specific gallery template, card content guidelines |
Example: Deriving a "Soft Pastel" Preset
User description: "I want something soft and feminine — pastel pink and mint, rounded corners, no harsh shadows, light and airy feel."
Derived tokens:
Preset name: soft-pastel
Global prefix: sp-
JS namespace: window.SoftPastelPresets
bg-primary: #FFF8F8 Warm near-white
bg-surface: #FFE8EE Soft pink surface
bg-surface2: #E8F8F2 Soft mint surface
accent: #F472A0 Rose pink
accent-light: #FBB6D1 Light rose
text-primary: #3D2B35 Deep warm brown
text-muted: #9E7A88 Muted pink-brown
border: #F0D0DC Soft pink border
positive: #52C97A Mint green
negative: #F07070 Muted coral
font-display: 'Noto Serif SC', Georgia, serif
font-body: 'Noto Sans SC', sans-serif
weight-heavy: 700
weight-light: 300
letter-spacing-display: 0.02em
letter-spacing-body: 0.01em
border-width: 1.5px
border-radius: 16px
shadow-style: 0 4px 16px rgba(244,114,160,0.12)
bg-pattern: none (clean flat)
Resulting visual identity: Warm white + blush pink + mint accent, soft rounded corners, gentle box shadows (no hard offset), serif display font for warmth. Ideal for beauty, lifestyle, relationship, wellness topics.
1---2name: generate-preset3description: Optional sub-skill of self-media-composer. Generates a custom CSS + JS preset pair from a user's style description. Load this skill when the user chooses "Custom style" in Step 4.1 of the self-media-composer workflow, or explicitly asks to create / design a new visual template. English triggers: - "make a new preset", "create a style for me", "I want a custom template" - "design a theme that looks like…", "generate a matching preset" - User provides a reference image / Figma frame / screenshot and asks for a matching preset Multilingual triggers: - Equivalent custom-style, new-template, theme-design, palette-system, design-system, reference-image, Figma, or screenshot-matching requests in any user language.4---5
6# Generate Preset Sub-Skill
7
8Generates a ready-to-use CSS + JS preset bundle for self-media cards, derived from the user's free-form style description. The output is a pair of files (`<preset-name>.css` + `<preset-name>.js`) that follow the exact same anatomy as the built-in presets (`neo-brutalism`, `code-dispatch`, `dark-tech`).
9
10---
11
12## When to Load This Skill
13
14Load this skill immediately when **any** of the following is true:
15
16**English triggers:**
17
18- The user selects "Custom style — describe the visual language you want" in the Step 4.1 preset picker.
19- The user says phrases like "make a new preset", "create a style for me", "I want a custom template", "design a theme that looks like…".
20- The user provides a reference image, Figma frame, or screenshot and asks to "generate a matching preset".
21
22**Multilingual triggers:**
23
24- The user selects the localized equivalent of "Custom style" in Step 4.1.
25- The user asks for a custom visual style, new preset, visual template, theme, palette system, or design system in any language.
26- The user provides a reference image, Figma file, or screenshot and asks to match that style.
27
28Do **not** load this skill for small card-level tweaks (e.g. "change this card's background color"). This skill is exclusively for authoring a reusable preset bundle.
29
30---
31
32## Output Language Contract
33
34Follow the parent `self-media-composer` Output Language Contract:
35
36- Keep CSS class names, preset slugs, JS namespaces, token names, filenames, and API-shaped values in stable English/ASCII.
37- Write preview card copy, placeholder content, comments, labels, and visible demo prose in the user's preferred output language.
38- If the user did not specify a language for demo content, infer it from the parent post request; otherwise default to concise English for preview scaffolds.
39- Do not translate brand names, product names, source quotes, code identifiers, or fixed schema values.
40
41---
42
43## Workflow
44
45### Step G1 — Extract the Design Brief
46
47Interview the user (or infer from context) to resolve these five axes. Use `ask_user` if any axis is missing and cannot be safely inferred.
48
49| Axis | Key questions | Examples |
50| -------------------- | --------------------------------------- | --------------------------------------------------------------------------------------- |
51| **Mood / Aesthetic** | How should a viewer _feel_? | Energetic, calm, authoritative, playful, minimalist, luxurious, retro, futuristic |
52| **Color Palette** | Primary bg, accent, text, border colors | Light or dark bg? Warm or cool tones? Saturated or muted? |
53| **Typography** | Font personality | Serif, sans-serif, monospace? Heavy weight contrast or uniform? |
54| **Decoration** | Visual texture and ornamentation | Grid lines, ruled paper, noise texture, clean flat, geometric shapes, gradient overlays |
55| **Content Domain** | What topics will the cards cover? | Tech/coding, lifestyle, beauty, finance, travel, food, product reviews |
56
57If the user provides a reference image, use `visual_understanding` to extract the palette, dominant textures, typography weight, and layout language before proceeding.
58
59### Step G2 — Define Design Tokens
60
61Translate the brief into a concrete token set. Write these down before writing any code.
62
63**Required tokens:**
64
65```
66Preset name: <safe-for-filesystem slug, e.g. "soft-pastel">
67Global prefix: <2-4 letter prefix for all CSS classes, e.g. "sp-">
68JS namespace: window.<PascalCase>Presets (e.g. window.SoftPastelPresets)
69
70Color tokens:
71 bg-primary: <hex> Main card background
72 bg-surface: <hex> Elevated surface / inner block bg
73 bg-surface2: <hex> Second elevation (optional)
74 accent: <hex> Primary accent / CTA color
75 accent-light: <hex> Lighter accent variant (hover states, highlights)
76 text-primary: <hex> Main body text
77 text-muted: <hex> Secondary / subdued text
78 border: <hex> Default border / rule color
79 border-accent: <hex> Accented border (optional)
80 positive: <hex> Positive / success indicator (green-family)
81 negative: <hex> Negative / danger indicator (red-family)
82
83Typography tokens:
84 font-display: <CSS font-family string> Titles and large display text
85 font-body: <CSS font-family string> Body and label text
86 weight-heavy: <number> e.g. 900 or 700
87 weight-light: <number> e.g. 300 or 400
88 letter-spacing-display: <em value>
89 letter-spacing-body: <em value>
90
91Border & Shadow tokens:
92 border-width: <px> e.g. 3px (neo-brutalism) or 1px (dark-tech)
93 border-radius: <px or 0> e.g. 0 for hard edges, 8px for soft
94 shadow-style: <CSS value or "none"> Hard offset = "4px 4px 0 #000", soft = "none"
95
96Texture / background decoration:
97 bg-pattern: <CSS background-image or "none"> e.g. grid lines, dots, ruled lines
98```
99
100### Step G3 — Author the CSS File
101
102Write `<preset-name>.css` using the token values from Step G2. Follow the exact section structure (§0 variables, §1 card shell, §2 content components, §3 utility classes, §4 layout helpers) documented in [references/css-anatomy.md](./references/css-anatomy.md).
103
104**Critical constraint from §0**: `html, body { width:540px; height:720px; overflow:hidden; }` must appear verbatim. Never set `font-size` on `html`.
105
106### Step G4 — Author the JS File
107
108Write `<preset-name>.js` as a self-executing IIFE that exposes a global registry `window.<PascalCase>Presets`. Load [references/js-skeleton.md](./references/js-skeleton.md) for the complete skeleton to fill in.
109
110**Key rules:**
111
112- Keep design tokens in `T` object — same hex values as in the CSS `:root` block.
113- Include **at least 3 preset chart types** from: bar, line, donut, radar, column, scatter.
114- Only use ECharts (assumed present on page). No `fetch`, no DOM manipulation outside of ECharts.
115- The IIFE must use the exact wrapper: `(function(global){ ... }(window));`
116- Expose only one global: `window.<PascalCase>Presets`.
117- Include the full CSS class quick-reference as a JSDoc comment block.
118
119### Step G5 — Author the Preview File
120
121Write `<preset-name>/preview.html` — a standalone gallery page that showcases all major CSS components and at least one chart rendered by the JS preset. Load [references/preview-skeleton.md](./references/preview-skeleton.md) for the full platform-specific template.
122
123**Key rules:**
124
125- Override `html, body { width: auto; height: auto; overflow: auto; }` so the page scrolls.
126- Include **at least 4 cards**: cover, content/stats, content/chart, content/list.
127- Exercise every §2 component class and every §3 utility group at least once across all cards.
128- Load ECharts from CDN (`https://cdn.jsdelivr.net/npm/echarts@5/dist/echarts.min.js`) and render at least one chart using the JS preset's `.get()` method.
129- Fill cards with representative placeholder content matching the content domain from Step G1 — never leave cards empty or use generic "Lorem ipsum".
130- Use the same class prefix and naming as the authored CSS; do not introduce ad-hoc styles that bypass the preset.
131
132**Preview layout by platform:**
133
134| Platform | Container layout | Card wrapper size | Notes |
135| ----------- | ------------------------ | ------------------------- | ------------------------------------------------------ |
136| `rednote` | `flex-wrap: wrap` | `540×720` | Cards at native size, side-by-side |
137| `instagram` | `flex-direction: column` | `1080×1350` scaled to 50% | Use `transform: scale(0.5)` + negative `margin-bottom` |
138
139### Step G6 — Save the Files
140
141Write all three files directly into the project's `shared/presets/<preset-name>/` folder:
142
143```
144<project-root>/shared/presets/<preset-name>/<preset-name>.css
145<project-root>/shared/presets/<preset-name>/<preset-name>.js
146<project-root>/shared/presets/<preset-name>/preview.html
147```
148
149Use `write_file` for all three. If the destination already exists, ask the user before overwriting.
150
151### Step G7 — Register the Preset
152
153After writing the files, do **not** modify the master `self-media-composer/SKILL.md`. The generated preset lives only in the project's `shared/presets/` folder. It is a **project-local** preset, not a built-in one.
154
155The self-media-composer workflow (Step 4.4) will reference it exactly like a built-in preset:
156
157```html
158<link
159 rel="stylesheet"
160 href="../../shared/presets/<preset-name>/<preset-name>.css"
161/>
162<script src="../../shared/presets/<preset-name>/<preset-name>.js"></script>
163```
164
165---
166
167## Quality Checklist
168
169Before handing off the generated files, verify every item:
170
171**CSS**
172
173- [ ] `html, body { width:540px; height:720px; overflow:hidden; }` present and exact
174- [ ] No `font-size` set on `html`
175- [ ] `:root` block lists all tokens from Step G2
176- [ ] All six required component classes are present
177- [ ] All four utility groups are present
178- [ ] Layout helpers section complete
179- [ ] Class names all share the same prefix and do not collide with Tailwind (`tw-` is safe; avoid single-word names like `.card`, `.header`)
180
181**JS**
182
183- [ ] Token object `T` matches CSS `:root` hex values exactly
184- [ ] At least 3 chart presets implemented
185- [ ] Wrapped in IIFE, exposes only one global
186- [ ] CSS quick-reference included as JSDoc comment
187- [ ] No external fetches or dynamic DOM manipulation
188
189**Preview**
190
191- [ ] `preview.html` present in the same directory as CSS/JS
192- [ ] `html, body` override removes fixed canvas (width/height: auto, overflow: auto)
193- [ ] At least 4 cards shown (cover + 3 content variants)
194- [ ] Every §2 component class appears at least once
195- [ ] Every §3 utility group demonstrated at least once
196- [ ] ECharts loaded from CDN and at least one chart rendered via the JS preset
197- [ ] Card content is domain-relevant (not generic placeholders)
198- [ ] No broken layout — cards do not overflow or overlap
199
200**Files**
201
202- [ ] All three files saved at `shared/presets/<preset-name>/`
203- [ ] File names match the preset slug exactly (e.g. `soft-pastel.css`, `soft-pastel.js`, `preview.html`)
204
205---
206
207## References
208
209Load these files during the corresponding steps:
210
211| Reference | When to load |
212| --------------------------------------------------------- | ---------------------------------------------------------------------------- |
213| [CSS File Anatomy](./references/css-anatomy.md) | During Step G3 — full §0–§4 structure, component list, utility groups |
214| [JS File Skeleton](./references/js-skeleton.md) | During Step G4 — complete IIFE skeleton to fill in |
215| [Preview HTML Skeleton](./references/preview-skeleton.md) | During Step G5 — platform-specific gallery template, card content guidelines |
216
217---
218
219## Example: Deriving a "Soft Pastel" Preset
220
221**User description:** "I want something soft and feminine — pastel pink and mint, rounded corners, no harsh shadows, light and airy feel."
222
223**Derived tokens:**
224
225```
226Preset name: soft-pastel
227Global prefix: sp-
228JS namespace: window.SoftPastelPresets
229
230bg-primary: #FFF8F8 Warm near-white
231bg-surface: #FFE8EE Soft pink surface
232bg-surface2: #E8F8F2 Soft mint surface
233accent: #F472A0 Rose pink
234accent-light: #FBB6D1 Light rose
235text-primary: #3D2B35 Deep warm brown
236text-muted: #9E7A88 Muted pink-brown
237border: #F0D0DC Soft pink border
238positive: #52C97A Mint green
239negative: #F07070 Muted coral
240
241font-display: 'Noto Serif SC', Georgia, serif
242font-body: 'Noto Sans SC', sans-serif
243weight-heavy: 700
244weight-light: 300
245letter-spacing-display: 0.02em
246letter-spacing-body: 0.01em
247
248border-width: 1.5px
249border-radius: 16px
250shadow-style: 0 4px 16px rgba(244,114,160,0.12)
251bg-pattern: none (clean flat)
252```
253
254**Resulting visual identity:** Warm white + blush pink + mint accent, soft rounded corners, gentle box shadows (no hard offset), serif display font for warmth. Ideal for beauty, lifestyle, relationship, wellness topics.