artifact-design

artifact-design is a skill for Claude Code, Codex from open-octo/octo-agent. It costs 195 tokens per session (2,799 once invoked), scanned A, original, MIT.

Design guidance for self-contained files shown in an app's Artifacts panel, such as reports, dashboards, diagrams, and slide-style pages. It covers HTML, Markdown, images, and related formats.

In plain words
What is it for?
Use it when creating an artifact with layouts, charts, graphs, or interactive elements for that panel.
Why use it?
It helps avoid creating files that look poor or fail inside the panel's isolated display area.

Skill for Claude CodeCodex

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

Good fit Use it when creating an artifact with layouts, charts, graphs, or interactive elements for that panel.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/open-octo/octo-agent/artifact-design
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 open-octo/octo-agent --skill artifact-design
Clone the repo
git clone --depth 1 https://github.com/open-octo/octo-agent

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 artifact-design

README.md
[![agentmods](https://agentmods.dev/badge/skills/open-octo/octo-agent/artifact-design/github.svg)](https://agentmods.dev/skills/open-octo/octo-agent/artifact-design)
Your own site
<a href="https://agentmods.dev/skills/open-octo/octo-agent/artifact-design"><img src="https://agentmods.dev/badge/skills/open-octo/octo-agent/artifact-design/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 artifact-design

Your own site · 80×15
<a href="https://agentmods.dev/skills/open-octo/octo-agent/artifact-design"><img src="https://agentmods.dev/badge/skills/open-octo/octo-agent/artifact-design.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 195 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,799 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 pass 7 Sept 2026
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.00195 $0.02799
Opus 5 $0.00097 $0.01399
Sonnet 5 $0.00039 $0.00560
Haiku 4.5 $0.00019 $0.00280

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

Security

Grade A, and why

artifact-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 3d 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.

internal/skills/defaults/artifact-design/SKILL.md · 173 lines

How it starts

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

Artifact design

An artifact is any .html/.htm/.md/.markdown/.png/.jpg/.jpeg/.gif/.svg/.webp file the agent produces. Writing one through write_file/edit_file surfaces it automatically in the web UI's Artifacts panel; a file built some other way (a script, a build step, a download) needs one show_artifact call with its absolute path. This skill is about what to put inside the HTML — read it before writing the first line.

If the page contains any chart, graph, plot, heatmap, sparkline, or stat tile, read references/charts.md before writing the chart — chart-type selection, the color system (with a validated default palette in references/palette.md), legend/axis/tooltip conventions, and chart legibility at the panel's docked width.

How the panel actually works — design within these constraints

  • The page runs on its own origin — a real one, not the app's. HTML renders from http://<token>.artifacts.localhost:<port>/ inside a frame, so everything a normal web page can do locally works: localStorage and IndexedDB persist, <a download> saves a file, requestFullscreen() and pointer lock work, WebGL and Web Audio work. Its network is fenced by a Content-Security-Policy: the page may load from and talk to its own origin and the allowlisted CDN hosts below, and nothing else — no fetch to other APIs, no images or media from other hosts, no reaching octo's /api. Data the page needs must be in the page or in a file beside it; do not write code that calls external services or octo's API from inside the page.
  • Files beside the page load by relative path. <script src="./app.js">, <link href="./style.css">, <img src="./chart.png">, loader.load('./model.glb'), fonts, audio and video in the same directory (or a subdirectory) are served with the page. Only page-asset types are: images, .css/.js/.mjs/.json/.wasm/.csv/.txt/.xml, .glb/ .gltf/.bin/.obj/.mtl/.hdr, .woff/.woff2/.ttf/.otf, .mp3/.wav/.ogg/.mp4/.webm. A second .html is not — one entry page per artifact. A single file is still the simplest artifact; split into sibling files when the page has a real script or a binary asset (a model, a font, a recording) that would be absurd to inline.
  • External references are allowlist-gated, and the allowlist is enforced. A <script src=…> / <link rel="stylesheet" href=…> pointing at another host may only use these CDN hosts; anything else is stripped before rendering, under a banner saying how many were removed: cdnjs.cloudflare.com, cdn.jsdelivr.net, unpkg.com, fonts.googleapis.com, fonts.gstatic.com, and the mainland-China mirrors cdn.bootcdn.net, cdn.staticfile.org, cdn.staticfile.net, registry.npmmirror.com. Pin exact versions; if the user is in mainland China, prefer the CN mirrors. Reach for a CDN only when the page needs a real library (React, ECharts, Chart.js, three.js, …) — a page that depends on one shows nothing when that host is unreachable. Relative references are not external and are never stripped.
  • The default viewport is narrow. The panel is a 420px-wide docked sidebar by default; the user can maximize it to min(900px, 75vw), but don't design for that as the common case. Build the layout to read cleanly at ~380–420px first, then let it use extra space gracefully above that — not the other way around. This is the opposite of most artifact platforms, where the canvas starts wide. Multi-column layouts, wide tables, and side-by-side diagram lanes need an explicit @media (max-width: 720px) (or tighter) fallback to a single column, or they'll clip or force horizontal scroll in the default view.
  • Theme support is one-directional. Only @media (prefers-color-scheme: dark) is a live signal in octo today — the panel does not push its own light/dark toggle state into the iframe (unlike some other artifact hosts). Still write :root[data-theme="dark"] / :root[data-theme="light"] overrides alongside the media query — they're free, harmless if unused, and correct if that wiring ever lands — but don't rely on them being live; the media query is what actually renders today for most users.
  • Update in place, not by versioning. Re-running write_file/edit_file against the same absolute path updates that same panel entry rather than creating a new one. If you're iterating on a diagram, keep writing the same file.
  • No title/gallery metadata to set. The panel derives the display name from the file's basename and its type label from the extension — there is no favicon or description field to populate. A <title> tag is harmless but cosmetically inert here.
  • Markdown gets code-block styling for free (the panel inlines a highlight.js theme for .md previews) — don't hand-roll code-fence CSS in a Markdown artifact; that's only a concern for HTML artifacts.

Read the full file on GitHub · 173 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 3d ago Changed · +18 lines · +13 tokens per session cd15c8455e66
  2. 8d ago Changed · +6 lines · +7 tokens per session 91ec82d5d913
  3. 12d ago First seen · 149 lines · 175 tokens per session scan A 9c3347dbe871

Subscribe to this mod's changes

artifact-design is a skill published in the GitHub repository open-octo/octo-agent (99 stars, last pushed today), licensed MIT. It adds 195 tokens to every session and 2,799 once invoked, about $0.0010 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.