agentsclimarketplace

Visual explainer

Skill theclaymethod/artifacture/plugins/visual-explainer

Generate beautiful, self-contained HTML artifacts from MDX/React sources that visually explain systems, code changes, plans, and data. Use when the user asks for a diagram, architecture overview, diff review, plan review, project recap, comparison table, code walkthrough, or any visual explanation of technical concepts. Also use proactively when you are about to render a complex ASCII table (4+ rows or 3+ columns) — present it as a styled generated HTML page instead.From its SKILL.md

Install
npx -y skills add theclaymethod/artifacture --skill visual-explainer

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 7 commands, including `git clone --depth 1 https://github.com/theclaymethod/artifacture ~/.artifacture` and 6 more.
  • fetches URLsInstructs the agent to fetch 1 URL, including https://github.com/theclaymethod/artifacture.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

7.0 KB, ~1.6k tokens by cl100k_base, as published. Nobody here has run it

Visual Explainer

MDX/TSX -> HTML -> verify. Never ASCII; 4+ row or 3+ column tables become HTML.

Pipeline location

Rendering requires the Artifacture repo (components + export pipeline). Resolve REPO first:

  • If ../../visual-explainer-mdx/components.tsx exists relative to this file, you are inside a full clone: REPO = the repo root (two directories up from this file).
  • Otherwise clone or update it once: git clone --depth 1 https://github.com/theclaymethod/artifacture ~/.artifacture (if ~/.artifacture exists: git -C ~/.artifacture pull --ff-only), then npm install --prefix ~/.artifacture. REPO = ~/.artifacture. Requires Node >= 22.

All npm run ve:* commands below run from REPO; author your .mdx/.tsx source anywhere and pass absolute paths.

Tier 0

Workflow, in order:

  1. Pick the flow's card from the routing table below and read it (plus this file — nothing else for covered flows).
  2. Author .mdx (default; .tsx only for state/custom SVG/video). Import shared components from REPO/visual-explainer-mdx/components.tsx exactly as the card skeleton shows.
  3. Export: npm --prefix REPO run ve:export -- <abs-src> --out <abs-out> (static video: npm --prefix REPO run ve:export-static -- <abs-tsx> --out <abs-out>). Fix any strict-export integrity errors at the source.
  4. Verify (§6 below), then open the artifact and tell the user the file path. The MDX/TSX source stays the editable source of truth — apply feedback there and re-export.

Components

  • ExplainerShell(title,summary?,preset?,reviewTools?)
  • Section(title,kicker?)
  • Callout(children)
  • Pipeline(steps)
  • DecisionMatrix(rows)
  • RiskLedger(risks)
  • DiagramCanvas(nodes,edges,layout?,lanes?,dates?; shape rect/oval/diamond/dot; style solid/dashed/bidirectional)
  • FlowDiagram(nodes,edges)
  • CodeBlock(code,language,filename?,highlightLines?,annotations?,diff?)
  • DiffBlock(patch? OR before+after,language?,filename?,mode?)
  • TerminalBlock(content,title?,showPrompt?)
  • JsonTree(data,collapsedDepth?)
  • Quiz(questions)
  • MermaidBlock(chart,caption?)
  • SlideDeck(title,orientation?,preset?,reviewTools?)
  • Slide(title,kicker?,tone?)
  • PosterCanvas(eyebrow?,title,stat?,footer?,preset?)

Presentation deck (presented/interactive decks — fixed 1920×1080 stage scaled to fit, slide rail, keyboard nav, drill-downs; when in doubt see REPO/docs/presentation-deck.md for PresentationDeck vs SlideDeck):

Before creating or editing presentation chrome, read ./references/deck-navigation-shell.md. Reuse the workspace's canonical shell and shader when present; do not copy either implementation into a new deck.

  • PresentationDeck(title,eyebrow?,preset?,stageWidth?,stageHeight?,railAutoCollapseMs?)
  • PresentationSlide(kicker,title?,shortTitle?,tone?,rightLabel?,footer?,sub?)
  • DrillCard(drillId,title,eyebrow?,body?,hint?,accent?,origin?,minHeight?)
  • DrillChip(label,onClick,drillId,variant?,hint?)
  • DrillSheet(eyebrow,onClose,origin?)
  • CloseX(onClose)
  • LayerExplorer(layers,initialIndex?,drillIdPrefix?,listWidth?)
  • LadderDiagram(stages,stepOffset?,gridBackdrop?,renderStage?,framed?)
  • FanoutDiagram(source,outputs,sourceWidth?,connectorWidth?)
  • PullQuote(quote,attribution,size?,panel?)
  • Metric(value,label,size?)
  • StatRow(stats)
  • HairlineList(items,accent?,gap?,columns?)
  • Stepper(steps,accentIndex?)
  • CodePanel(rows? OR lines?,fontSize?)
  • MonoLabel(children,size?,color?,ls?,caps?,block?)
  • DisplayText(children,size?,lh?,color?,italic?,maxW?)
  • IconChip(icon,accent?,size?)
  • ShineOverlay(color?,radius?)
  • IconBase(children,size?,color?)
  • IconFile(color?,size?)
  • IconTool(color?,size?)
  • IconAction(color?,size?)
  • IconLoop(color?,size?)
  • IconGauge(color?,size?)
  • IconTag(color?,size?)
  • IconFit(color?,size?)
  • IconFilter(color?,size?)
  • IconCorpus(color?,size?)
  • IconArrowDown(color?,size?)
  • IconArrowRight(color?,size?)

Presets: mono-industrial, nothing, blueprint, editorial, paper-ink, terminal, custom; use --ve-*. Any other preset name resolves against the external design-system registry ($ARTIFACTURE_DESIGN_DIR → ~/.artifacture/design-systems → repo design-systems/) and its tokens.css is inlined at export; learn new systems with npm run ve:learn -- <code|url|image> --name <slug>. See docs/design-systems.md.

FlowCardTier 2
diagramcards/web-diagram.mdreferences/diagrams-svg.md
plancards/visual-plan.md
tablecards/comparison-table.md
slidescards/slide-deck.mdreferences/slide-patterns.md
codecards/code-walkthrough.md
explain-diffcards/explain-diff.md

Clarify: ./references/clarify.md. Use components/tokens, not hand CSS/coords. Run Unslop on drafted copy; do not emulate it with an embedded fallback. Delegated verification ownership: ./references/delegated-skills.md. Visual judgment model policy: ./references/model-routing.md. Poster/video/brand/bespoke -> ./references/legacy-html.md.

6. Verify

Read ./references/verification.md, ./references/delegated-skills.md, and ./references/model-routing.md; run node {{skill_dir}}/scripts/verify/ve-verify.mjs <artifact.html> --json <report.json> --screens <screens-dir> (in this repo, {{skill_dir}} = plugins/visual-explainer); run only the routed Artifacture passes and delegated Impeccable/Unslop checks. The main thread orchestrates and summarizes; it does not perform screenshot judgment. Dispatch each Artifacture-owned visual pass to the smallest eval-qualified model and exact batch size in the generated policy. If no qualified route can run, skip with no-eval-qualified-model instead of silently using the host/frontier model. Report the artifact path, report JSON, actual model/batch per pass, per-pass pass/fail, and an explicit disclosure if anything could not be verified.

Design-craft delegation

Artifacture does not maintain a general AI-slop checklist. Use the ownership contract in ./references/delegated-skills.md:

  • Impeccable owns general visual craft, design specificity, typography, color, generic decoration, and visual AI tells.
  • Unslop owns prose patterns, cadence, voice, and AI-writing tells.
  • Artifacture owns mechanical artifact checks and the explicit artifacture:slop-gap pass.

The Artifacture gap is limited to decoration that falsely implies sequence, measured state/confidence, or provenance/verification. Do not expand that list with generic taste rules. If Impeccable or Unslop is unavailable, disclose the skipped delegated check instead of recreating its rubric here.

What ships with it: 106 files

1273.4 KB alongside SKILL.md, 22 of them executable

.claude-plugin/

66 more files not listed here. See all 106 in the repository.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.