drawing-visuals

drawing-visuals is a skill for Claude Code, Codex from kamiazya/whiteboard. It costs 58 tokens per session (3,893 once invoked), scanned A, original, Apache-2.0.

Instructions for drawing and revising diagrams on a shared JSON Canvas whiteboard. JSON Canvas is a file format for storing boxes, connections, text, and their positions.

In plain words
What is it for?
It is for creating flowcharts, comparing structures, arranging connected notes, checking overlaps, and rendering the board as SVG.
Why use it?
Some structures and relationships are easier to understand when they are visible on a board. The instructions also define the available editing, layout, rendering, and version-saving operations.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Part of the whiteboard plugin — 21 skills, 18 agents, 3 hooks shipped together

Good fit It is for creating flowcharts, comparing structures, arranging connected notes, checking overlaps, and rendering the board as SVG.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kamiazya/whiteboard/drawing-visuals
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 kamiazya/whiteboard --skill drawing-visuals
Clone the repo
git clone --depth 1 https://github.com/kamiazya/whiteboard

Made for: Claude Code, Codex.

Or install whiteboard, the plugin that ships this one along with the rest of its 21 skills, 18 agents, 3 hooks.

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 drawing-visuals

README.md
[![agentmods](https://agentmods.dev/badge/skills/kamiazya/whiteboard/drawing-visuals/github.svg)](https://agentmods.dev/skills/kamiazya/whiteboard/drawing-visuals)
Your own site
<a href="https://agentmods.dev/skills/kamiazya/whiteboard/drawing-visuals"><img src="https://agentmods.dev/badge/skills/kamiazya/whiteboard/drawing-visuals/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 drawing-visuals

Your own site · 80×15
<a href="https://agentmods.dev/skills/kamiazya/whiteboard/drawing-visuals"><img src="https://agentmods.dev/badge/skills/kamiazya/whiteboard/drawing-visuals.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,893 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 257
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00058 $0.03893
Opus 5 $0.00029 $0.01946
Sonnet 5 $0.00012 $0.00779
Haiku 4.5 $0.00006 $0.00389

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

Security

Grade A, and why

drawing-visuals 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 2d 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/drawing-visuals/SKILL.md · 288 lines

How it starts

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

drawing-visuals

Like a whiteboard on the wall of a meeting room, this is a tool for AI and humans to align by drawing on the same workspace. Use it when drawing and pointing is faster than iterating in prose. What you draw stays on the document and can be revisited and refined later.

Coverage note. The whiteboard MCP surface is deliberately small: edit nodes and edges, tidy the layout, render SVG, save/restore versions. There is no icon or template library, no align/distribute, and no viewport control. Plan the diagram with that ceiling in mind rather than assuming a full-featured drawing-app tool set.

Use these tools:

  • wb_document_create / wb_document_list / wb_document_resolve / wb_document_delete — create, find, and remove documents
  • wb_canvas_editthe whole spatial-editing surface. One call takes a list of ops (add, patch, remove, lock, tidy) and applies them as a single transaction. Pass mode: "apply": the default proposes content changes for a person to adopt, because nobody watches an agent type — but somebody just asked you to draw this, and they are looking at it
  • wb_canvas_snapshot — read a canvas: node types, text, geometry and lock state, plus every edge. Pass layout: true to also get the laid-out analysis (overlaps, clusters, free regions) for judging whether the board is tidy
  • wb_scene_render — render the laid-out scene as SVG (the only export format)
  • wb_version_save / wb_version_list / wb_version_restore — checkpoint and roll back

Open references/reading-map.md first and read only the note you need.

  • references/reading-map.md: the routing note that tells you which guidance to open for which kind of diagram
  • style-reference.md: the deep reference for coordinates, color, and layout recipes; open only when needed
  • visual-vocabulary.md: the deep reference for labeling, diagram choice, and anti-patterns; open only when needed

Do not read style-reference.md and visual-vocabulary.md end-to-end every time. Choose the diagram type through the reading map, then open only 1-2 relevant notes.

If you need the collaborative workflow for tightening the visual together while talking with the user, also open ../coauthoring-visuals/SKILL.md. This drawing-visuals skill covers canvas operations, diagram vocabulary, and drawing mechanics. coauthoring-visuals covers context gathering, iterative refinement, and fresh-viewer testing.


Read the full file on GitHub · 288 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. 2d ago Changed · +13 lines cd2329ff0083
  2. 5d ago Changed · +3 lines b399eb63e565
  3. 9d ago First seen · 272 lines · 58 tokens per session scan A adebf8397a4f

Subscribe to this mod's changes

drawing-visuals is a skill published in the GitHub repository kamiazya/whiteboard (6 stars, last pushed today), licensed Apache-2.0. It adds 58 tokens to every session and 3,893 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-31.

Related

Other skills, from other repositories

html-ppt-zhangzara-retro-zine

A neighborhood zine on the disappearing corner shops — portraits, voices, and what a block loses when they close. Built as a decision-grade story deck for community, local readers.

nexu-io/open-design · 49 tokens

html-ppt-zhangzara-studio

A photography studio's portfolio-and-rate deck — the signature work, the process, and the packages that win the brief. Built as a decision-grade design craft deck for prospective clients.

nexu-io/open-design · 47 tokens

motion-frames

A single-frame motion-design composition with looping CSS animations — rotating type ring, animated globe, ticking timer, parallax labels. Renders as a hero video poster you can hand straight to HyperFrames or any keyframe-based exporter. Use when the brief asks for "motion design", "animated hero", "loop", "video…

nexu-io/open-design · 91 tokens

webgl-halftone-drift

A self-contained WebGL2 hero: a flowing field screened through a rotated halftone dot grid into a duotone print aesthetic; move the cursor to bend the drift.

nexu-io/open-design · 44 tokens

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

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