Visual Design

Visual Design is a skill for Claude Code, Codex from rhuss/cc-slidev. It costs 68 tokens per session (4,816 once invoked), scanned A, original, MIT.

Guidance for adding diagrams, images, and a consistent visual style to presentations. It includes Mermaid diagrams, stock-photo selection, AI image prompts, color choices, and accessibility practices.

In plain words
What is it for?
Use it to create flowcharts, decision trees, workflows, state machines, API flows, architecture visuals, presentation images, and visual themes.
Why use it?
It helps turn text-heavy slides into visuals that are easier to follow and more accessible. It also provides rules for choosing diagram types and keeping the presentation visually consistent.

Skill for Claude CodeCodex

Part of the slidev plugin — 8 skills, 18 commands, 2 agents shipped together

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.

agentmods
npx agentmods add skills/rhuss/cc-slidev/visual-design
Any agent
npx skills add rhuss/cc-slidev --skill visual-design
Clone the repo
git clone --depth 1 https://github.com/rhuss/cc-slidev

Made for: Claude Code, Codex.

Or install slidev, the plugin that ships this one along with the rest of its 8 skills, 18 commands, 2 agents.

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 Visual Design

README.md
[![agentmods](https://agentmods.dev/badge/skills/rhuss/cc-slidev/visual-design.svg)](https://agentmods.dev/skills/rhuss/cc-slidev/visual-design)
Your own site
<a href="https://agentmods.dev/skills/rhuss/cc-slidev/visual-design"><img src="https://agentmods.dev/badge/skills/rhuss/cc-slidev/visual-design.svg" alt="Measured on agentmods" height="20"></a>
Per session 68 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,816 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00068 $0.04816
Opus 5 $0.00034 $0.02408
Sonnet 5 $0.00014 $0.00963
Haiku 4.5 $0.00007 $0.00482

Measured 4d ago against content hash c00339181986, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

Visual Design 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 4d 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.

slidev/skills/visual-design/SKILL.md · 801 lines

How it starts

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

Visual Design for Presentations

Effective visual design combines diagrams, images, and consistent theming to create engaging, professional, accessible presentations. Master mermaid diagrams, stock photography, AI image generation, colorblind-safe palettes, and visual cohesion.

Evidence-based accessibility: This skill incorporates research-based best practices for accessible visual design. See references/presentation-best-practices.md for full guidelines.

Mermaid Diagrams

Mermaid provides text-based diagramming that renders beautifully in Slidev and exports well.

Flowcharts

Best for: Processes, decision trees, workflows

Basic syntax:

graph TD
    A[Start] --> B{Decision}
    B -->|Yes| C[Action 1]
    B -->|No| D[Action 2]
    C --> E[End]
    D --> E

Direction options:

  • graph TD - Top to bottom
  • graph LR - Left to right
  • graph RL - Right to left
  • graph BT - Bottom to top

Node shapes:

graph LR
    A[Rectangle]
    B(Rounded)
    C([Stadium])
    D[[Subroutine]]
    E[(Database)]
    F((Circle))
    G>Flag]
    H{Diamond}
    I{{Hexagon}}

Arrow types:

graph LR
    A-->B      %% Solid arrow
    C-.->D     %% Dotted arrow
    E==>F      %% Thick arrow
    G-.-H      %% Dotted line
    I---J      %% Solid line

Edge labels:

graph LR
    A -->|Label text| B
    B -.->|Another label| C

Sequence Diagrams

Best for: API calls, interactions, communication flows

sequenceDiagram
    participant Client
    participant Server
    participant Database

    Client->>Server: HTTP Request
    Server->>Database: Query
    Database-->>Server: Results
    Server-->>Client: HTTP Response

Message types:

  • -> Solid line
  • --> Dotted line
  • ->> Solid arrow
  • -->> Dotted arrow

Activation boxes:

sequenceDiagram
    Client->>+Server: Request
    Server->>+Database: Query
    Database-->>-Server: Data
    Server-->>-Client: Response

Read the full file on GitHub · 801 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. 4d ago First seen · 801 lines · 68 tokens per session scan A c00339181986

Subscribe to this mod's changes

Visual Design is a skill published in the GitHub repository rhuss/cc-slidev (50 stars, last pushed 16d ago), licensed MIT. It adds 68 tokens to every session and 4,816 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

motion-graphics

A short, design-led motion graphic where motion is the message — kinetic typography, stat count-up, chart/data-viz hit, logo sting / brand lockup, lower-third / callout / social overlay, animated map (highlight regions, connect places, zoom to a location), animated tweet / news-article / headline, webpage / UI…

heygen-com/hyperframes · 139 tokens

liquid-glass

Apple Liquid Glass design system. Use when building UI with translucent, depth-aware glass morphism following Apple's design language. Provides CSS tokens, component patterns, dark/light mode, and animation specs.

fengshao1227/ccg-workflow · 43 tokens

feishu-cli-visual

飞书可视化与展示统一入口,负责选择合适载体,并覆盖画板、Slides、妙笔BOX 动态组件、 妙搭 HTML 应用和统一数据可视化设计规范。用户要求画板/whiteboard、架构图、流程图、飞轮、 鱼骨、路线图、海报、插画、SVG/Mermaid、数据图表或 dashboard,创建 Slides/PPT,嵌入会动的 ECharts/地图/3D/window.magic 组件,或用妙搭/Miaoda/spark 发布 HTML 应用时必须使用本 Skill。 消息卡片由 feishu-cli-messaging 构造和发送;Markdown 图表导入由 feishu-cli-docs 执行。.

riba2534/feishu-cli · 167 tokens

render-vo-anchored-motion-listicle

Assemble an expert/educator motion-graphic LISTICLE video ad from a config — a spoken authoritative voiceover carries a numbered listicle while N web-animated hyperframe beats (HTML plus the Web Animations API, one branded design system of alternating tiles, big hero numerals, and glass-pill callouts) are rendered…

gooseworks-ai/goose-skills · 216 tokens

frame-light-leak-cinema

Film light leaks, grain, 16:9 letterbox, and large serif type for cinematic openings or chapter cards.

nexu-io/html-video · 31 tokens

frame-bold-signal

Bold colored card on a dark gradient — big section number, nav breadcrumb, orange card sliding in, title rising.

nexu-io/html-video · 28 tokens