Graphic Design Studio

Graphic Design Studio is a skill for Claude Code, Codex from YousefNabil-SOC/claude-apex. It costs 28 tokens per session (1,227 once invoked), scanned A, original, MIT.

A code-based graphic design toolkit that uses HTML, CSS, SVG, screenshots, and image processing to create visual assets.

In plain words
What is it for?
Use it to create logos, icons, banners, posters, social images, interface mockups, and other brand or presentation graphics.
Why use it?
It helps developers produce fixed-size graphics and make image changes without relying on a separate design application.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; positional $N argument; mentions Claude Code.

Good fit Use it to create logos, icons, banners, posters, social images, interface mockups, and other brand or presentation graphics.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yousefnabil-soc/claude-apex/graphic-design-studio
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add YousefNabil-SOC/claude-apex --skill graphic-design-studio
Clone the repo
git clone --depth 1 https://github.com/YousefNabil-SOC/claude-apex

Made for: Claude Code, Codex.

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 Graphic Design Studio

README.md
[![agentmods](https://agentmods.dev/badge/skills/yousefnabil-soc/claude-apex/graphic-design-studio/github.svg)](https://agentmods.dev/skills/yousefnabil-soc/claude-apex/graphic-design-studio)
Your own site
<a href="https://agentmods.dev/skills/yousefnabil-soc/claude-apex/graphic-design-studio"><img src="https://agentmods.dev/badge/skills/yousefnabil-soc/claude-apex/graphic-design-studio/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 Graphic Design Studio

Your own site · 80×15
<a href="https://agentmods.dev/skills/yousefnabil-soc/claude-apex/graphic-design-studio"><img src="https://agentmods.dev/badge/skills/yousefnabil-soc/claude-apex/graphic-design-studio.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,227 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.00028 $0.01227
Opus 5 $0.00014 $0.00613
Sonnet 5 $0.00006 $0.00245
Haiku 4.5 $0.00003 $0.00123

Measured 7d ago against content hash 148c4b2d4af0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

Graphic Design Studio 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 7d 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/graphic-design-studio/SKILL.md · 116 lines

How it starts

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

Graphic Design Studio

Description

Full graphic design capability using code-based rendering. Turns Claude Code's HTML/CSS/SVG skills into production graphic design output.

When to Use

  • User asks for logos, icons, graphics, banners, social media images
  • User says "design", "graphic", "logo", "banner", "poster", "visual"
  • User needs marketing visuals, brand assets, or presentation graphics
  • User needs image editing, resizing, format conversion, optimization

Design Pipeline (4 methods — pick the best for the task)

Method 1: HTML/CSS → Playwright Screenshot (BEST FOR MOST TASKS)

Best for: Logos, banners, cards, social media graphics, UI mockups

  1. Create a self-contained HTML file with inline CSS
  2. Use modern CSS: gradients, shadows, blend modes, filters, animations (freeze frame)
  3. Set exact pixel dimensions via viewport meta + body sizing
  4. Use Google Fonts via CDN link for typography
  5. Render with Playwright: take screenshot at exact dimensions
  6. Post-process with Pillow if needed (crop, resize, optimize)
from playwright.sync_api import sync_playwright
with sync_playwright() as p:
    browser = p.chromium.launch()
    page = browser.new_page(viewport={"width": 1200, "height": 630})
    page.set_content(html_content)
    page.screenshot(path="output.png", full_page=False)
    browser.close()

Method 2: SVG Generation (BEST FOR VECTOR GRAPHICS)

Best for: Icons, logos, geometric patterns, scalable assets

  1. Use svgwrite Python library for programmatic SVG
  2. Or write SVG XML directly (more control)
  3. Export as .svg for vector use or convert to PNG via Playwright
import svgwrite
dwg = svgwrite.Drawing('output.svg', size=('400px', '400px'))
# Replace colors with your project's brand palette
dwg.add(dwg.circle(center=(200, 200), r=100, fill='<primary-color>'))
dwg.add(dwg.text('<INITIALS>', insert=(160, 215), fill='<accent-color>',
         font_size='60px', font_family='Georgia'))
dwg.save()

Method 3: Python Pillow (BEST FOR IMAGE PROCESSING)

Best for: Photo editing, compositing, batch processing, format conversion

  1. Open/create images with PIL.Image
  2. Draw shapes, text, gradients with ImageDraw
  3. Apply filters: blur, sharpen, contrast, color adjustment
  4. Composite multiple images together
  5. Export in any format: PNG, JPG, WebP, ICO

Read the full file on GitHub · 116 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. 7d ago First seen · 116 lines · 28 tokens per session scan A 148c4b2d4af0

Subscribe to this mod's changes

Graphic Design Studio is a skill published in the GitHub repository YousefNabil-SOC/claude-apex (2 stars, last pushed 3mo ago), licensed MIT. It adds 28 tokens to every session and 1,227 once invoked, about $0.0001 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-09-03.

Related

Other skills, from other repositories

brand-identity

Brand strategy and identity design for businesses and products. Use when creating brand guidelines, developing visual identity systems, or defining brand positioning.

travisjneuman/.claude · 30 tokens

graphic-design

Professional graphic design principles for digital and print media. Use when creating visual designs, choosing color palettes, typography, layouts, or providing design feedback.

travisjneuman/.claude · 32 tokens

lookdev-auto

Tune a visual/animation/render parameter by eye using a VISION or VIDEO model as the judge — render several labeled variants into ONE artifact, ask the model to rate them and suggest better values, render the suggestions, ask it to pick the best, repeat until good. Use whenever "looks/feels right" is the success…

connerkward/lookdev-auto-skill · 120 tokens

audio-production

Professional audio production for music, podcasts, and sound design. Use when working with audio recording, mixing, mastering, or sound design for any medium.

travisjneuman/.claude · 33 tokens

generic-react-ux-designer

Professional UI/UX design expertise for React applications. Covers design thinking, user psychology (Hick's/Fitts's/Jakob's Law), visual hierarchy, interaction patterns, accessibility, performance-driven design, and design critique. Use when designing features, improving UX, solving user problems, or conducting design…

travisjneuman/.claude · 69 tokens

guizang-ppt-skill

A generator for presentation decks delivered as a single HTML file that runs in a web browser. It provides magazine-style and Swiss-style visual templates for swipeable presentations.

seaworld008/Commonly-used-high-value-skills · 56 tokens