seo-image-gen

seo-image-gen is a skill for Claude Code from ZachArticulateV/designer-pro-and-seo. It costs 109 tokens per session (990 once invoked), scanned A, original, MIT.

An image-generation tool for website search previews, social-media previews, blog headers, product visuals, infographics, and favicons. It can also provide exact image specifications and prompts when no image generator is available.

In plain words
What is it for?
It chooses a visual preset, prepares a generation prompt using the brand style, and produces or specifies images such as 1200×630 social previews, hero images, product shots, infographics, and favicon sets.
Why use it?
It removes the guesswork around image sizes, filenames, and alternative text needed for search engines and social sharing.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: mentions Gemini CLI.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the designer-pro-and-seo plugin — 41 skills, 14 agents, 1 MCP server shipped together

Good fit It chooses a visual preset, prepares a generation prompt using the brand style, and produces or specifies images such as 1200×630 social previews, hero images, product shots, infographics, and favicon sets.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add ZachArticulateV/designer-pro-and-seo
Claude Code
/plugin install designer-pro-and-seo

Made for: Claude Code.

Or install designer-pro-and-seo, the plugin that ships this one along with the rest of its 41 skills, 14 agents, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for seo-image-gen

README.md
[![agentmods](https://agentmods.dev/badge/skills/zacharticulatev/designer-pro-and-seo/seo-image-gen/github.svg)](https://agentmods.dev/skills/zacharticulatev/designer-pro-and-seo/seo-image-gen)
Your own site
<a href="https://agentmods.dev/skills/zacharticulatev/designer-pro-and-seo/seo-image-gen"><img src="https://agentmods.dev/badge/skills/zacharticulatev/designer-pro-and-seo/seo-image-gen/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for seo-image-gen

Your own site · 80×15
<a href="https://agentmods.dev/skills/zacharticulatev/designer-pro-and-seo/seo-image-gen"><img src="https://agentmods.dev/badge/skills/zacharticulatev/designer-pro-and-seo/seo-image-gen.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 990 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00109 $0.00990
Opus 5 $0.00055 $0.00495
Sonnet 5 $0.00022 $0.00198
Haiku 4.5 $0.00011 $0.00099

Measured 12d ago against content hash 3ced8f565d82, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

seo-image-gen scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/seo-image-gen/SKILL.md · 85 lines

How it starts

The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.

seo-image-gen

Family: seo Status: Stable

Purpose

The generation half of image SEO (split from the audit because it carries different legal/asset/API risk). Produces images at correct dimensions with SEO-aware presets, file naming, and suggested alt text. It is tool-aware: it renders through whatever generator you have — preferring the Gemini CLI — and, when no generator is available, still delivers production-ready prompts + exact specs + filenames + alt text so you can generate elsewhere. That prompts-and-specs output is real value on its own; it never just fails.

Triggers

  • "generate image" / "create a visual"
  • "og image" / "social preview"
  • "hero image" / "blog image"
  • "product photo" / "infographic" / "favicon"

Inputs

  • Subject/prompt and brand context (palette, style — pull from a design system)
  • Preset: og | hero | product | infographic | favicon
  • Output path (in the user's project workspace)

Steps

  1. Pick the preset and resolve its spec — e.g. OG 1200×630; hero ~1600×900; favicon set (16/32/180/512). Pull palette/style from a design-system-gen result so generated images match the brand.
  2. Compose the generation prompt — subject + style + palette + composition, with negative prompts to avoid unwanted text artifacts.
  3. Detect generators. Run python3 "${CLAUDE_PLUGIN_ROOT}/scripts/workflow/capability_probe.py" and check for a connected image-gen MCP. Route per the cascade below.
  4. Generate or hand off. If a generator is available, render at the preset dimensions into the user's workspace. If none is, output the prompt + exact specs and stop with a one-line note on how to enable rendering (install the Gemini CLI or connect an image-gen MCP/provider key).
  5. Name + alt. SEO-friendly filename (kebab-case, descriptive) + suggested alt text per image.
  6. Hand to seo-image-audit to verify generated assets pass the audit.

Capability routing

This skill follows the plugin's capability-tier cascade (references/CAPABILITY-TIERS.md). For image generation there is no built-in Claude renderer, so the numbers run 3 → 1 → 4 by design (the CLI is preferred over an MCP):

Read the full file on GitHub · 85 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 85 lines · 109 tokens per session scan A 3ced8f565d82

Subscribe to this mod's changes

seo-image-gen is a skill published in the GitHub repository ZachArticulateV/designer-pro-and-seo (8 stars, last pushed 2mo ago), licensed MIT. It adds 109 tokens to every session and 990 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

designlang-tokens

Use when styling UI for cal.com — references the extracted design system tokens instead of inventing colors, spacing, or typography.

Manavarya09/design-extract · 30 tokens

token-audit

Audit a design system's token definitions for naming violations, missing semantic tiers, and structural debt. This audits how tokens are defined and organised, NOT how they are consumed in code. Trigger when someone says: audit my tokens, token naming review, are my tokens consistent, token health check, review my…

murphytrueman/design-system-ops · 93 tokens

stakeholder-brief

Write a one-page stakeholder brief translating design system health or status into business language. Trigger when someone says: stakeholder update, exec brief, leadership summary, status report for leadership, system status for non-designers, write a brief for the business, or anything about communicating design…

murphytrueman/design-system-ops · 73 tokens

cicd-integration

Generate CI/CD pipeline configurations that automate design system quality checks — token validation, component linting, visual regression, accessibility scanning, and release gating. Produces ready-to-use pipeline files for GitHub Actions, GitLab CI, CircleCI, or Bitbucket Pipelines, configured to enforce the…

murphytrueman/design-system-ops · 177 tokens

codebase-index

Generate a pre-computed component index from a design system codebase — YAML infrastructure files containing a component inventory, relationship graph, and summary statistics that AI agents and MCP servers consume. This produces machine-readable index files in .ai/index/, NOT a health report or quality assessment.…

murphytrueman/design-system-ops · 132 tokens

engineering-onboarding

Create an onboarding guide for an engineer joining a team that consumes the design system. Trigger when someone says: onboard new engineer, developer getting started guide, new engineer guide, engineering onboarding, first day for developers, frontend onboarding, or anything about helping an engineer new to the team…

murphytrueman/design-system-ops · 68 tokens