agentic-webdesign-shadcn-typeset

agentic-webdesign-shadcn-typeset is a skill for Claude Code, Codex from S3YED/appie-kit. It costs 65 tokens per session (580 once invoked), scanned A, original, MIT.

A CSS-only styling system that applies consistent formatting to HTML and rendered Markdown by adding one class to a container. CSS is the language that controls how web content looks.

In plain words
What is it for?
It helps style blog posts, documentation, chat messages, and AI-generated HTML or Markdown in shadcn/ui projects, with controls for text size, line spacing, and block spacing.
Why use it?
It avoids adding separate styling classes to every element and keeps formatting consistent for documents, chat messages, and streamed content.

Skill for Claude CodeCodex

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

Good fit It helps style blog posts, documentation, chat messages, and AI-generated HTML or Markdown in shadcn/ui projects, with controls for text size, line spacing, and block spacing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s3yed/appie-kit/agentic-webdesign-shadcn-typeset
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 S3YED/appie-kit --skill agentic-webdesign-shadcn-typeset
Clone the repo
git clone --depth 1 https://github.com/S3YED/appie-kit

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 agentic-webdesign-shadcn-typeset

README.md
[![agentmods](https://agentmods.dev/badge/skills/s3yed/appie-kit/agentic-webdesign-shadcn-typeset/github.svg)](https://agentmods.dev/skills/s3yed/appie-kit/agentic-webdesign-shadcn-typeset)
Your own site
<a href="https://agentmods.dev/skills/s3yed/appie-kit/agentic-webdesign-shadcn-typeset"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/agentic-webdesign-shadcn-typeset/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 agentic-webdesign-shadcn-typeset

Your own site · 80×15
<a href="https://agentmods.dev/skills/s3yed/appie-kit/agentic-webdesign-shadcn-typeset"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/agentic-webdesign-shadcn-typeset.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 580 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.00065 $0.00580
Opus 5 $0.00032 $0.00290
Sonnet 5 $0.00013 $0.00116
Haiku 4.5 $0.00006 $0.00058

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

Security

Grade A, and why

agentic-webdesign-shadcn-typeset 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.

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/agentic-webdesign-shadcn-typeset/SKILL.md · 72 lines

What it actually says

shadcn/typeset

A single CSS file that styles HTML elements and rendered markdown. Add one class, everything inside gets styled. No per-element classes needed.

Quick Start

npx shadcn@latest add typeset
<div className="typeset">{markdownContent}</div>

Core Controls (3 CSS custom properties)

Property Purpose Default
--typeset-size Base font size Inherits from container
--typeset-leading Line height multiplier ~1.6
--typeset-flow Spacing between block elements ~1em

Multiple Contexts

.typeset-chat {
  --typeset-leading: 1.6;
  --typeset-flow: 1em;
}

.typeset-docs {
  --typeset-size: 15px;
  --typeset-leading: 1.75;
  --typeset-flow: 1.5em;
}
<div className="typeset typeset-chat">{message}</div>
<article className="typeset typeset-docs">{page}</article>

Why This Helps AI Agents

  1. Single class — agents don't need to add per-element Tailwind classes
  2. Streaming-safe — new blocks appended during streaming don't restyle earlier ones
  3. No dependencies — CSS file lives in your project, no package layer
  4. Theme-aware — uses your existing shadcn theme tokens (colors, fonts)
  5. Flexible — create as many typesets as you need for different contexts

Use Cases

  • Blog posts rendered from MDX/markdown
  • Documentation pages
  • Chat message content (AI-generated markdown)
  • Product descriptions
  • Any content where you have raw HTML or markdown that needs consistent typography

Pitfalls

  • Typeset only styles semantic HTML elements (h1-h6, p, ul, ol, table, pre, code, etc.)
  • If your content has class-based styling already, typeset won't override it
  • For streaming, wrap only the content portion, not the entire conversation
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 · 72 lines · 65 tokens per session scan A 131247c667a1

Subscribe to this mod's changes

agentic-webdesign-shadcn-typeset is a skill published in the GitHub repository S3YED/appie-kit (8 stars, last pushed 13d ago), licensed MIT. It adds 65 tokens to every session and 580 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

clone-website

Reverse-engineer and clone a website in one shot — extracts assets, CSS, and content section-by-section and proactively dispatches parallel builder agents in worktrees as it goes. Use this whenever the user wants to clone, replicate, rebuild, reverse-engineer, or copy any website. Also triggers on phrases like "make a…

vibeeval/vibecosystem · 93 tokens

animation-patterns

Framer Motion patterns, page transitions, skeleton loading, scroll-linked animations, and gesture-based interactions for React.

vibeeval/vibecosystem · 26 tokens

component-library-patterns

Design system token management, component API design, Storybook, and visual regression testing patterns.

vibeeval/vibecosystem · 22 tokens

design-loop

Autonomous multi-page site builder using a baton-passing loop. Each iteration reads a task from .design/next-prompt.md, generates a page in HTML/Tailwind, integrates it into the site, verifies visually, then writes the next task to keep the loop alive. Use whenever the user asks to build an entire site autonomously…

jezweb/claude-skills · 130 tokens

color-palette

Generate complete, accessible colour palettes from a single brand hex. Produces 11-shade scale (50-950), semantic tokens, dark mode variants, Tailwind v4 CSS output, WCAG contrast checks. Use whenever the user supplies a brand hex and asks for a palette, mentions setting up a design system, wants Tailwind theme…

jezweb/claude-skills · 87 tokens

accessibility-a11y

WCAG 2.2 compliance, ARIA patterns, keyboard navigation, screen readers, automated testing.

travisjneuman/.claude · 26 tokens