design-blog-hero
Generate a blog post hero artifact — TWO pixel-exact HTML canvases in a single file: an Open Graph card (1200×630) for social meta tags AND an in-page hero…
Generate a LinkedIn / Instagram multi-slide carousel — single HTML file with N square 1080×1080 .canvas divs, each representing one slide. Default N=5 (cover + 3 content + closing CTA). Cover and closing always use the brand's most distinctive treatments; middle slides are
$ npx -y skills add slogsdon/skills-design --skill design-carousel-slide --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/design-carousel-slideContext preview
The summary Claude sees to decide when to auto-load this skill.
Generate a LinkedIn / Instagram multi-slide carousel — single HTML file with N square 1080×1080 .canvas divs, each representing one slide. Default N=5 (cover + 3 content + closing CTA). Cover and closing always use the brand's most distinctive treatments; middle slides are
name: design-carousel-slide description: Generate a LinkedIn / Instagram multi-slide carousel — single HTML file with N square 1080×1080 .canvas divs, each representing one slide. Default N=5 (cover + 3 content + closing CTA). Cover and closing always use the brand's most distinctive treatments; middle slides are content-led. Reads ./design/<brand-slug>/DESIGN.md, tokens.css, and components.html. Triggers include "carousel for X", "linkedin carousel", "instagram carousel", "carousel slides", "/carousel-slide".
Produces a single self-contained HTML file containing N pixel-exact 1080×1080 canvas divs. Each canvas is an individual carousel slide; screenshot each separately at native dimensions to upload as a multi-slide post on LinkedIn or Instagram.
The carousel format is high-leverage for editorial brands — it lets the brand's longer-form thinking land in a feed that otherwise rewards single posts. The discipline: cover and closing slides do the visual work; middle slides do the content work.
`./design/<brand-slug>/artifacts/carousel-YYYY-MM-DD-<slug>.html`
test -f ./design/<brand-slug>/tokens.css
Ask in one message:
1. Topic / thesis — the carousel's argument in one sentence (sentence-case ending in period per brand voice) 2. Number of slides — default 5 (1 cover + N content + 1 closing CTA); valid range 3–9 (carousel max) 3. Per-slide content — optional. If omitted, the agent drafts from the topic. 4. Closing CTA — the action you want readers to take (e.g. "read the full piece at shane.logsdon.io")
Carousel formats reward visual variation between cover and content. The discipline:
**Cover slide** (slide 1) — picks from the most distinctive archetypes:
**Content slides** (slides 2 through N-1) — picks from CONSISTENT archetypes (slides should feel like a series, not a deck of mismatched cards):
**Closing slide** (slide N) — picks from action-oriented archetypes:
**Color treatment** must hold across all slides for series coherence: `cream-page` | `inverted-feature-on-cover` (cover dark, body cream, closing dark to bookend) | `full-cream`.
**Cross-artifact rule:** if a recent carousel for this brand used a particular cover archetype, vary it.
Template:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><Brand> — Carousel — <topic></title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=<families>&display=swap">
<style>
/* Embed tokens.css verbatim */
<contents of tokens.css>
html, body { margin: 0; padding: 0; background: #2a2a2a; min-height: 100vh; font-family: var(--type-sans-family); }
body { display: flex; flex-direction: column; align-items: center; gap: 32px; padding: 32px 0; }
.slide-label { font-family: var(--type-mono-family); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); align-self: center; }
/* All slides at exact 1080×1080 */
.canvas {
width: 1080px; height: 1080px;
background: var(--color-surface);
color: var(--color-ink);
position: relative; overflow: hidden;
padding: 80px;
box-sizing: border-box;
display: grid;
}
/* Cover slide — strongest treatment */
.canvas--cover { /* style per cover archetype: single-word / inverse-text / etc. */ }
/* Content slide — consistent archetype across slides 2..N-1 */
.canvas--content {
grid-template-rows: auto 1fr auto;
gap: 32px;
}
/* Closing slide — action-oriented */
.canvas--closing { /* style per closing archetype */ }
/* Slide-position folio (same as page numbers in a magazine) */
.slide-folio {
position: absolute; bottom: 64px; right: 64px;
font-family: var(--type-mono-family); font-size: 14px; letter-spacing: 0.06em;
color: var(--color-ink-3);
}
.slide-folio .pos { color: var(--color-ink); }
@page { size: 1080px 1080px; margin: 0; }
</style>
</head>
<body>
<!--
Variation choices:
cover-archetype: <picked>
content-archetype: <picked>
closing-archetype: <picked>
color: <picked>
-->
<span class="slide-label">→ Slide 1 / N · COVER · 1080×1080</span>
<article class="canvas canvas--cover">
<!-- cover content per chosen archetype -->
<span class="slide-folio"><span class="pos">01</span> / 05</span>
</article>
<span class="slide-label">→ Slide 2 / N · CONTENT</span>
<article class="canvas canvas--content">
<!-- content slide -->
<span class="slide-folio"><span class="pos">02</span> / 05</span>
</article>
<!-- ... repeat for content slides 3, 4 ... -->
<span class="slide-label">→ Slide N / N · CLOSING</span>
<article class="canvas canvas--closing">
<!-- closing CTA per archetype -->
<span class="slide-folio"><span class="pos">05</span> / 05</span>
</article>
</body>Brand-agnostic design system and artifact generators for Claude Code, plus a figure-worth audit and PDF and HTML-to-PNG export utilities. 19 skills total. Install via the slogsdon-claude-code-config marketplace.
Repo: slogsdon/skills-design
Generate a blog post hero artifact — TWO pixel-exact HTML canvases in a single file: an Open Graph card (1200×630) for social meta tags AND an in-page hero…
Generate a printable business card — pixel-exact 1050×600 front canvas + 1050×600 back canvas in a single HTML file. Standard 3.5×2 inch card at 300dpi. Front…
Generate an Instagram post artifact — pixel-exact HTML canvas at 1080×1350 (portrait, default — Instagram's max-real-estate format) with opt-in 1080×1080…
Generate a deliverable landing-page HTML file (NOT a screenshot artifact). 1440px design width, mobile-responsive (CSS-only, no JS). Sections: hero…
Generate a minimal single-column standalone HTML page — mobile-first at 375px width — for use as a link-in-bio destination. Contains: name/wordmark, short…
Generate a LinkedIn post artifact — a 1200×627 image canvas (LinkedIn's recommended share image dimension) plus a companion text suggestion (1300-char limit,…