artifact-styler

artifact-styler is a skill for Codex from keepYaoung/artifact-organizer. It costs 119 tokens per session (1,047 once invoked), scanned A, original, MIT.

A tool for applying a visual theme to an existing structured HTML or component artifact. It changes the presentation while keeping the artifact’s content the same.

In plain words
What is it for?
Use it to restyle an Artifact Organizer output or another component-based artifact. It can create variants with the listed themes.
Why use it?
It avoids manually redesigning a report or visual document when only its appearance needs to change. Available themes include Notion, Linear, Vercel, Stripe, Supabase, Apple, and Tailwind styles.

Skill for Codex

Written for Codex: reads ~/.codex or $CODEX_HOME. Also seen: reads .claude/ paths; mentions Codex; mentions OpenCode.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./.claude/skills/artifact-organizer ~/.claude/skills/artifact-organizer \.

Good fit Use it to restyle an Artifact Organizer output or another component-based artifact. It can create variants with the listed themes.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/keepYaoung/artifact-organizer
agentmods
npx agentmods add skills/keepyaoung/artifact-organizer/artifact-styler

Made for: 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-styler

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/keepyaoung/artifact-organizer/artifact-styler"><img src="https://agentmods.dev/badge/skills/keepyaoung/artifact-organizer/artifact-styler.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,047 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.00119 $0.01047
Opus 5 $0.00060 $0.00524
Sonnet 5 $0.00024 $0.00209
Haiku 4.5 $0.00012 $0.00105

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

Security

Grade A, and why

artifact-styler 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 10d 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/artifact-styler/SKILL.md · 90 lines

How it starts

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

Artifact Styler

Take an existing artifact and re-render it in a different theme. The styler never edits HTML by hand — it works on the semantic envelope and lets the renderer own every visual decision. Theme is the only thing that changes; the content stays identical.

When to use

  • "Restyle this in the apple theme" / "make it look like tailwind".
  • "Apply our brand style to this report."
  • "Same dashboard, but the stripe look."
  • You produced an Artifact Organizer output earlier and want a themed variant.

The 7 themes

Theme Character
notion Warm cream, Notion Blue, reading-first (default)
linear Dark-native, indigo, tight Inter
vercel Gallery white, Geist, shadow-as-border
stripe Weight-300 luxury, deep navy
supabase Dark-native, emerald, border hierarchy
apple SF-style, cool greys, Apple Blue, soft elevation, true-black dark
tailwind Inter, slate ramp, indigo-600, layered shadows

How the input is obtained

The renderer parses JSON envelopes, never HTML. So:

  1. Artifact Organizer output — every render saves a <name>.json envelope next to the <name>.html. Restyle by re-rendering that sidecar JSON with a new --theme. No re-extraction needed.
  2. Raw HTML with no sidecar (e.g. a Claude chat artifact) — you (the model) read the HTML and reconstruct the semantic envelope: map each block to a catalog component (Section, DataTable, Callout, KPICard, Chart, CodeBlock, diagrams, …). Emit data only — no colors, fonts, or classes. This "HTML → envelope" step is a model job, by design.

See references/catalog.md in the artifact-organizer skill for prop schemas.

How to use

  1. Locate the renderer engine (shipped with the artifact-organizer skill):

    AO=$(for p in \
      ./.claude/skills/artifact-organizer ~/.claude/skills/artifact-organizer \
      ./.codex/skills/artifact-organizer ~/.codex/skills/artifact-organizer \
      ./.cursor/skills/artifact-organizer ~/.cursor/skills/artifact-organizer \
      ./.opencode/skills/artifact-organizer ~/.opencode/skills/artifact-organizer \
      ~/.claude/plugins/cache/artifact-organizer-marketplace/*/plugins/artifact-organizer \
      ./plugins/artifact-organizer
    do [ -x "$p/scripts/outprint" ] && { echo "$p/scripts/outprint"; break; }; done)
    

Read the full file on GitHub · 90 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. 10d ago First seen · 90 lines · 119 tokens per session scan A 609b36f49888

Subscribe to this mod's changes

artifact-styler is a skill published in the GitHub repository keepYaoung/artifact-organizer (2 stars, last pushed 2mo ago), licensed MIT. It adds 119 tokens to every session and 1,047 once invoked, about $0.0006 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

web-design

A web design workflow for turning a brief, reference website, screenshot, or keywords into a design specification and then web code. It covers visual style, page structure, interaction, responsive layouts, and motion.

xiaopu-ai/web-design · 151 tokens

cinematic-scroll

Build or improve cinematic websites with scroll-driven storytelling, pinned reveals, parallax, kinetic type, and optional 3D. Deliver standalone HTML or integrate into an existing app, with mobile and reduced-motion fallbacks and browser evidence. Also supports scroll audits and motion storyboards. Use for cinematic…

MustBeSimo/cinematic-scroll-skill · 75 tokens

cinematic-scroll

Build or improve cinematic websites with scroll-driven storytelling, pinned reveals, parallax, kinetic type, and optional 3D. Deliver standalone HTML or integrate into an existing app, with mobile and reduced-motion fallbacks and browser evidence. Also supports scroll audits and motion storyboards. Use for cinematic…

MustBeSimo/cinematic-scroll-skill · 75 tokens

dashmotion

Create dark-themed, animated technical diagrams as self-contained HTML+SVG files — flowcharts whose connectors visibly flow, and architecture diagrams where requests travel as light dots through the system (Diagrid/Temporal landing-page style). Use this skill whenever the user asks for a flowchart, workflow, pipeline…

csthink/dashmotion · 187 tokens

odoo-theme-fix

TRIGGER: User shares a screenshot of an Odoo page and asks for visual fixes, theming improvements, or readability changes.

19prince/claude-odoo-builder · 0 tokens

avoid-ai-design

Audit and rewrite frontend UI to remove generic AI design patterns ("AI slop"). Use this skill when asked to "de-slop a UI", "make a design look less AI-generated", "audit a component or page for AI design tells", or "fix Claude/Codex-generated frontend that looks generic". Covers HTML/CSS and React/Tailwind/shadcn.…

funboy322/avoid-ai-design · 90 tokens