svg-art

svg-art is a skill for Claude Code, Codex from jarvis-llm-codec/jarvis-code. It costs 71 tokens per session (1,167 once invoked), scanned A, original, Apache-2.0.

A set of scripts for generating vector artwork as SVG files. SVG is an image format made from shapes and paths, so it can usually be resized without becoming blurry.

In plain words
What is it for?
Creating grids, spirals, sunbursts, fractals, waves, particle patterns, charts, and icons, then optionally minifying the SVG.
Why use it?
It avoids hand-writing repetitive graphics and makes generated patterns and diagrams reproducible. The scripts can also optimize existing SVG output.

Skill for Claude CodeCodex

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

Good fit Creating grids, spirals, sunbursts, fractals, waves, particle patterns, charts, and icons, then optionally minifying the SVG.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jarvis-llm-codec/jarvis-code/svg-art
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 jarvis-llm-codec/jarvis-code --skill svg-art
Clone the repo
git clone --depth 1 https://github.com/jarvis-llm-codec/jarvis-code

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 svg-art

README.md
[![agentmods](https://agentmods.dev/badge/skills/jarvis-llm-codec/jarvis-code/svg-art/github.svg)](https://agentmods.dev/skills/jarvis-llm-codec/jarvis-code/svg-art)
Your own site
<a href="https://agentmods.dev/skills/jarvis-llm-codec/jarvis-code/svg-art"><img src="https://agentmods.dev/badge/skills/jarvis-llm-codec/jarvis-code/svg-art/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 svg-art

Your own site · 80×15
<a href="https://agentmods.dev/skills/jarvis-llm-codec/jarvis-code/svg-art"><img src="https://agentmods.dev/badge/skills/jarvis-llm-codec/jarvis-code/svg-art.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,167 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.00071 $0.01167
Opus 5 $0.00036 $0.00583
Sonnet 5 $0.00014 $0.00233
Haiku 4.5 $0.00007 $0.00117

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

Security

Grade A, and why

svg-art 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 9d ago.

The scan reads SKILL.md. This mod also ships 8 executable files (scripts/generate_chart.py, scripts/generate_fractal.py, scripts/generate_grid.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

jarvis-resources/skills/svg-art/SKILL.md · 128 lines

How it starts

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

SVG Art: Programmatic Generation

Generate high-quality SVG graphics using Python scripts. All scripts output valid SVG to stdout (or file with -o).

Available Scripts

Script Purpose Key Options
generate_grid.py Grid patterns --cols, --rows, --shape, --vary-*
generate_radial.py Radial/spiral/sunburst --spiral, --concentric, --sunburst
generate_fractal.py Fractals (tree, koch, sierpinski) --tree, --koch, --sierpinski, --depth
generate_wave.py Waves and audio viz --layers, --noise, --bars
generate_particles.py Scatter/cluster/constellation --cluster, --gradient, --constellation
generate_chart.py Data visualization --bar, --line, --pie, --donut
generate_icon.py Common UI icons --icon NAME, --list, --filled
optimize_svg.py Minify/optimize SVG --aggressive, --stats

Quick Examples

# Grid with size variation
python scripts/generate_grid.py -c 6 -r 6 --vary-size --vary-opacity -o grid.svg

# Spiral pattern
python scripts/generate_radial.py --spiral -n 60 --turns 4 -o spiral.svg

# Fractal tree
python scripts/generate_fractal.py --tree --depth 8 --vary-angle -o tree.svg

# Layered waves with fill
python scripts/generate_wave.py --layers 5 --fill -o waves.svg

# Constellation network
python scripts/generate_particles.py --constellation -n 30 --connect-distance 25 -o network.svg

# Bar chart
python scripts/generate_chart.py --bar --data "30,50,80,45,90" --labels "A,B,C,D,E" -o chart.svg

# Heart icon
python scripts/generate_icon.py --icon heart --filled --stroke "#E11D48" -o heart.svg

# Optimize existing SVG
python scripts/optimize_svg.py input.svg --aggressive -o output.svg

Script Usage Patterns

Grid Patterns

python scripts/generate_grid.py \
  -c 8 -r 8           # columns and rows
  -s 10 -g 2          # size and gap
  --shape circle      # rect, circle, or diamond
  --vary-size         # random size variation
  --vary-opacity      # random opacity
  --vary-hue          # color variation
  --seed 42           # reproducible randomness

Read the full file on GitHub · 128 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. 9d ago First seen · 128 lines · 71 tokens per session scan A 3ee1da9561d8

Subscribe to this mod's changes

svg-art is a skill published in the GitHub repository jarvis-llm-codec/jarvis-code (23 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 71 tokens to every session and 1,167 once invoked, about $0.0004 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

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