design-system

design-system is a skill for Codex from bestagentkits/agency-skills. It costs 204 tokens per session (2,827 once invoked), scanned A, original, MIT.

A shared brand-configuration tool for converting Markdown into HTML documents, reviews, and slides. It stores colors, fonts, visual style, syntax highlighting, table-of-contents behavior, and accessibility checks in one place.

In plain words
What is it for?
Use it to set up brand tokens, validate color contrast, and apply the same visual identity across Markdown-to-HTML outputs.
Why use it?
It prevents each generated document from using unrelated visual defaults. It also checks text and link contrast against WCAG 2.2 AA accessibility guidance.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions CLAUDE.md.

Good fit Use it to set up brand tokens, validate color contrast, and apply the same visual identity across Markdown-to-HTML outputs.

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

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/bestagentkits/agency-skills/design-system"><img src="https://agentmods.dev/badge/skills/bestagentkits/agency-skills/design-system.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 204 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,827 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.00204 $0.02827
Opus 5 $0.00102 $0.01413
Sonnet 5 $0.00041 $0.00565
Haiku 4.5 $0.00020 $0.00283

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

Security

Grade A, and why

design-system 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 8d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/brand_palette_validator.py, scripts/config_loader.py, scripts/onboard.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.

skills/claude-skills/design-system/SKILL.md · 163 lines

How it starts

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

Design System — Onboarding + Shared Brand Tokens

The design-system skill is the shared brand owner for the markdown-html plugin. Run its onboarding once. Every converter (md-document, md-review, md-slides) reads the resulting config via config_loader.py and applies the same 12 CSS custom properties to its output. Without this, conversions render with placeholder defaults — technically functional but unbranded.

This skill ships exactly three Python tools:

  1. onboard.py — interactive (or --defaults / --set / --show / --reset) wizard.
  2. config_loader.py — importable customization loader with project > global > defaults precedence and MARKDOWN_HTML_NO_CONFIG=1 bypass.
  3. brand_palette_validator.py — WCAG-AA contrast checker + HSL palette deriver.

All three are stdlib-only and contain no LLM calls (deterministic per Path-B discipline).

When to invoke

Symptom Action
User says "convert this markdown to HTML" for the first time in this workspace Run python3 markdown-html/skills/design-system/scripts/onboard.py
~/.config/markdown-html/design-system.json doesn't exist OR setup_completed_at is null Refuse conversion, surface onboarding
User wants per-repo brand override python3 .../onboard.py --scope project
User wants to change a single field non-interactively python3 .../onboard.py --set brand.primary=#FF6B35
User wants to reset and re-onboard python3 .../onboard.py --reset then re-run
User wants zero-touch defaults (CI, ephemeral session) python3 .../onboard.py --defaults
Headless / containerized run that should ignore saved config MARKDOWN_HTML_NO_CONFIG=1 ...

Onboarding question set (10 questions)

# Key Choices / Validator Default
1 default_output_dir path; os.access(parent, os.W_OK) ./markdown-html-out/
2 brand.primary HEX ^#?[0-9a-fA-F]{6}$ #0A1628
3 brand.accent HEX or blank (auto-derive) derive from primary
4 typography.heading_font Google Font name (12 safe defaults) Inter
5 typography.body_font Google Font name Inter
6 design_style editorial / technical / minimal / playful technical
7 code_theme light / dark / auto auto
8 toc.behavior sticky-sidebar / collapsible-top / inline / none sticky-sidebar
9 company_name string (may be empty) ""
10 logo_url URL or empty (base64-embedded at render) ""

Read the full file on GitHub · 163 lines

Files

What ships with it

8 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. 8d ago First seen · 163 lines · 204 tokens per session scan A f08198ea71ed

Subscribe to this mod's changes

design-system is a skill published in the GitHub repository bestagentkits/agency-skills (11 stars, last pushed 2mo ago), licensed MIT. It adds 204 tokens to every session and 2,827 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-09-03.

Related

Other skills, from other repositories

bencium-impact-designer

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics. Based on Anthropic's Frontend Designer Skill.

bencium/bencium-marketplace · 56 tokens

bencium-controlled-ux-designer

Expert UI/UX design guidance for unique, accessible interfaces. Use for visual decisions, colors, typography, layouts. Always ask before making design decisions. Use this skill when the user asks to build web components, pages, or applications.

bencium/bencium-marketplace · 56 tokens

ui-typography

Professional typography rules for UI design, web applications, software interfaces, and all screen-based text. Enforces timeless typographic correctness that LLMs consistently get wrong: proper quote marks, dashes, spacing, hierarchy, and layout. ENFORCEMENT MODE: When generating ANY HTML, CSS, React, JSX, or UI code…

bencium/bencium-marketplace · 200 tokens

file-processing

Process and analyze CSV, JSON, and text files with data transformation, cleaning, analysis, and visualization capabilities.

aws-samples/sample-strands-agents-agentskills · 24 tokens

bencium-innovative-ux-designer

Develop an independent visual language and turn the human-chosen direction into a production-ready graphic, brand, campaign, publication, web, or product system. Use when originality and differentiation matter enough to escape generic AI and Big Tech aesthetics. Guides a minimum-evidence start, ten isolated…

bencium/bencium-marketplace · 114 tokens

renaissance-architecture

Software architecture and UI/UX principles for building genuinely new solutions, not derivative work. Use when designing features, architecting software, brainstorming apps, reviewing designs, or during strategy discussions. Focuses on first-principles thinking, simplicity where it matters, and creating rather than…

bencium/bencium-marketplace · 62 tokens