kkoppenhaver/cc-skills · Archived

featured-image

Generate branded blog/social featured images by authoring an HTML "card" and rendering it to a PNG with headless Chromium ("HTML first, then to PNG"). Use when the user wants a featured image, hero/header image, OG or social card, or any branded post graphic for a content project. Handles one-time per-project brand setup (colors, fonts, dimensions), then composing and rendering per-post images. Triggers include "make a featured image", "create a blog header/social card", "og image", "render thi…

First seen Aug 4, 2026

Installation

$ npx skills add kkoppenhaver/cc-skills --skill featured-image

Summary

  • Generate branded blog/social featured images by authoring an HTML "card" and rendering it to a PNG with headless Chromium ("HTML first, then to PNG").
  • Use when the user wants a featured image, hero/header image, OG or social card, or any branded post graphic for a content project.
  • Handles one-time per-project brand setup (colors, fonts, dimensions), then composing and rendering per-post images.
  • Triggers include "make a featured image", "create a blog header/social card", "og image", "render this to PNG for the post", or branded post graphics for a repo's blog.

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from kkoppenhaver/cc-skills.

npx skills add kkoppenhaver/cc-skills

Browse all from kkoppenhaver/cc-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,104 B
  • docs SUMMARY.md 588 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Featured Image

Author a 1280×720 HTML card, render it to a 2× PNG with headless Chromium. HTML-first gives full layout control and pixel-perfect brand fidelity; the PNG is the deliverable the user uploads.

Workflow

  1. Locate the project's image directory. Default infographics/ at the repo root. Confirm or detect it.
  1. Check whether the project is configured. Configured = the image dir contains export.mjs, featured-image.json, and a brand-template.html.

- If not configured → follow references/setup.md to set it up. Do this once per project, then continue.

  1. Compose the post's card. Copy brand-template.html to <post-slug>-featured.html in the image dir, then edit:

- Headline — short, fits two lines. - Subhead — optional, one line. - Visual — one supporting graphic that illustrates the post's core idea. Replace the template's example visual. - Put the brand accent color on the one key phrase only.

  1. Preview in the browser BEFORE rendering. Always open <post-slug>-featured.html so the user sees the live HTML card and can request tweaks. Wait for their go-ahead (or apply their tweaks and re-open) before exporting the PNG. Never skip straight to the render.
  1. Render. From the image dir: node export.mjs <post-slug>-featured → writes <post-slug>-featured.png at 2× (1280×720 → 2560×1440).
  1. Review and deliver. Read the PNG to confirm fonts loaded and the layout reads cleanly; re-render after tweaks. Give the user the PNG path. If they'll upload it by hand, copy it to ~/Desktop.

Design

  • Headline ≤ ~8 words, two lines max — the image is glanced at, not read.
  • One accent color, on one key phrase. Everything else in the primary text color.
  • One visual metaphor (a before/after pair, a single UI mock, an icon trio). Don't crowd it.
  • 1280×720 (16:9) by default. Dimensions live in the template CSS, not the script.
  • Generous margins; clear hierarchy (large headline, small uppercase label).

Notes

  • Rendering needs Playwright's Chromium. Setup installs it in the image dir (node_modules is gitignored; the browser binary is cached globally and reused across projects).
  • WordPress: the MCP/abilities plugin cannot upload media. Featured images and in-body screenshots are added manually in the editor — deliver the PNG path, don't try to push it through the API.

See references/setup.md for one-time per-project brand configuration.