Note: This repository contains Anthropic's implementation of skills for Claude. For information about the Agent Skills standard, see agentskills.io.
Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. Skills teach Claude how to complete specific tasks in a repeatable way, whether that's creating documents with your company's brand guidelines, analyzing data using your organization's specific workflows, or automating personal tasks.
For more information, check out:
- What are skills?
- Using skills in Claude
- How to create custom skills
- Equipping agents for the real world with Agent Skills
This repository contains skills that demonstrate what's possible with Claude's skills system. These skills range from creative applications (art, music, design) to technical tasks (testing web apps, MCP server generation, pre-deployment validation) to enterprise workflows (communications, branding, etc.).
Each skill is self-contained in its own folder with a SKILL.md file containing the instructions and metadata that Claude uses. Browse through these skills to get inspiration for your own skills or to understand different patterns and approaches.
Many skills in this repo are open source (Apache 2.0). We've also included the document creation & editing skills that power Claude's document capabilities under the hood in the skills/docx, skills/pdf, skills/pptx, and skills/xlsx subfolders. These are source-available, not open source, but we wanted to share these with developers as a reference for more complex skills that are actively used in a production AI application.
These skills are provided for demonstration and educational purposes only. While some of these capabilities may be available in Claude, the implementations and behaviors you receive from Claude may differ from what is shown in these skills. These skills are meant to illustrate patterns and possibilities. Always test skills thoroughly in your own environment before relying on them for critical tasks.
- ./skills: Skill examples for Creative & Design, Development & Technical, Enterprise & Communication, and Document Skills
- ./spec: The Agent Skills specification
- ./template: Skill template
| Skill | Description |
|---|---|
| algorithmic-art | Generative art using p5.js with seeded randomness, flow fields, and particle systems |
| ascii-mockup | Mobile-first ASCII art UI wireframes across 5 breakpoints with versioned design tokens, ARIA-compliant color palettes, CDN-served fonts, and zero-hardcode CSS β chains with ux-journey-mapper and frontend-design |
| canvas-design | Visual design in PNG/PDF β posters, artwork, and static design pieces |
| frontend-design | Production-grade web UIs: pages, components, dashboards, and HTML artifacts |
| slack-gif-creator | Animated GIFs optimized for Slack with constraint validation and animation utilities |
| theme-factory | Apply or generate themes (colors, fonts) across slides, docs, and HTML artifacts |
| Skill | Description |
|---|---|
| mcp-builder | Guide for building MCP servers in Python (FastMCP) or TypeScript to integrate external APIs |
| pre-deploy-validator | Pre-deployment flight checks: lint, security scanning, tests, dependency audit, and docs verification |
| skill-creator | Create, improve, and benchmark skills with evals and description optimization |
| web-artifacts-builder | Complex Claude.ai HTML artifacts using React, Tailwind CSS, and shadcn/ui |
| webapp-testing | Interact with and test local web apps via Playwright β screenshots, logs, UI verification |
| Skill | Description |
|---|---|
| brand-guidelines | Apply Anthropic brand colors and typography to any artifact |
| doc-coauthoring | Structured workflow for co-authoring docs, proposals, specs, and decision documents |
| internal-comms | Internal communications: status reports, newsletters, FAQs, incident reports, and updates |
| Skill | Description |
|---|---|
| docx | Create, read, edit, and manipulate Word documents (.docx) |
| Read, combine, split, annotate, fill forms, and create PDF files | |
| pptx | Create, edit, parse, and manipulate PowerPoint presentations (.pptx) |
| xlsx | Open, edit, create, and convert spreadsheet files (.xlsx, .csv, .tsv) |
| Skill | Description |
|---|---|
| claude-api | Reference docs and patterns for building apps with the Claude API and Anthropic SDKs |
You can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code:
/plugin marketplace add anthropics/skills
Then, to install a specific set of skills:
- Select
Browse and install plugins - Select
anthropic-agent-skills - Select
document-skillsorexample-skills - Select
Install now
Alternatively, directly install either Plugin via:
/plugin install document-skills@anthropic-agent-skills
/plugin install example-skills@anthropic-agent-skills
After installing the plugin, you can use the skill by just mentioning it. For instance, if you install the document-skills plugin from the marketplace, you can ask Claude Code to do something like: "Use the PDF skill to extract the form fields from path/to/some-file.pdf"
These example skills are all already available to paid plans in Claude.ai.
To use any skill from this repository or upload custom skills, follow the instructions in Using skills in Claude.
You can use Anthropic's pre-built skills, and upload custom skills, via the Claude API. See the Skills API Quickstart for more.
Skills are simple to create - just a folder with a SKILL.md file containing YAML frontmatter and instructions. You can use the template-skill in this repository as a starting point:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Add your instructions here that Claude will follow when this skill is active]
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2The frontmatter requires only two fields:
name- A unique identifier for your skill (lowercase, hyphens for spaces)description- A complete description of what the skill does and when to use it
The markdown content below contains the instructions, examples, and guidelines that Claude will follow. For more details, see How to create custom skills.
Skill invoked:
ascii-mockupProject: Taskflow β a minimal task-management web app Stack: React / Next.js Β· Tailwind-compatible tokens Β· Google Fonts CDN Version: 1.0.0 Β· 2026-03-26
| Pair | Foreground | Background | Ratio | AA Normal | AA Large |
|---|---|---|---|---|---|
| Body text on surface | #111827 |
#f9fafb |
16.0:1 | β | β |
| CTA button label | #ffffff |
#2563eb |
5.9:1 | β | β |
| Ghost button label | #2563eb |
#f9fafb |
4.6:1 | β | β |
| Muted caption on surface | #6b7280 |
#f9fafb |
4.6:1 | β | β |
| Status error on surface | #b91c1c |
#f9fafb |
7.1:1 | β | β |
All pairs meet WCAG 2.1 AA. Dark-mode overrides swap surface and text tokens automatically.
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');
:root {
--color-brand-primary: #2563eb;
--color-brand-secondary: #0891b2;
--color-brand-accent: #7c3aed;
--color-action-primary: var(--color-brand-primary);
--color-action-ghost: transparent;
--color-surface-base: var(--color-neutral-50);
--color-surface-elevated: var(--color-neutral-0);
--color-text-primary: var(--color-neutral-900);
--color-text-muted: var(--color-neutral-500);
--color-border-default: var(--color-neutral-200);
--font-display: 'Syne', serif;
--font-body: 'DM Sans', sans-serif;
--font-mono: 'JetBrains Mono', monospace;
--type-scale-base: 1rem;
--type-scale-3xl: 1.875rem;
--space-4: 1rem;
--radius-lg: 0.5rem;
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--duration-normal: 200ms;
--ease-default: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-color-scheme: dark) {
:root {
--color-surface-base: var(--color-neutral-950);
--color-surface-elevated: var(--color-neutral-900);
--color-text-primary: var(--color-neutral-50);
--color-text-muted: var(--color-neutral-400);
--color-border-default: var(--color-neutral-700);
}
}
@media (prefers-reduced-motion: reduce) {
:root { --duration-normal: 0ms; --duration-fast: 0ms; --duration-slow: 0ms; }
}ββββββββββββββββββββββββββββββββββββββββββββββββββ
β BREAKPOINT: xs β iPhone 720 Β· 390px Β· 48 cols β
ββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββ
β β status bar 9:41 β² ββ β
ββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β° Taskflow π π€ β
β // NAV: sticky Β· z var(--z-sticky) β
ββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β β Good morning, Alex π β β
β β You have 4 tasks due today β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β // font: var(--font-display) β
β // size: var(--type-scale-3xl) β
β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β β π Search tasksβ¦ β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β // input: min-height var(--space-12) β
β β
β ββ TODAY ββββββββββββββββββββββββββββ 4/7 ββ β
β βββββββββββββββββββββββββββββββββββββββββ β
β // progress: var(--color-brand-primary) β
β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β β β Write Q2 report [DUE TODAY] β β
β β Project: Marketing Β· π΄ High β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β β β Review PR #47 [DUE TODAY] β β
β β Project: Engineering Β· π‘ Medium β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β β β Team standup [DONE] β β
β β Project: General Β· π’ Low β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β // card: var(--shadow-md) var(--radius-lg) β
β // spacing: var(--space-4) padding β
β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β β [+ Add New Task] β β
β ββββββββββββββββββββββββββββββββββββββββββββ β
β // CTA: var(--color-action-primary) β
β // min-height: 44px (touch target WCAG 2.5.5) β
β β
ββββββββββββββββββββββββββββββββββββββββββββββββββ€
β π Home π Tasks π Board π€ Profile β
β // bottom nav: env(safe-area-inset-bottom) β
ββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β BREAKPOINT: sm β iPad Β· 768px Β· 96 cols β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Taskflow π Search tasksβ¦ π Alex βΎ β
β // NAV: full horizontal Β· var(--z-sticky) β
ββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β SIDEBAR (240px) β MAIN CONTENT β
β ββββββββββββββββ β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β π My Tasks β Good morning, Alex π ββββββββββββββββββ 4 of 7 complete β
β π Board β β
β π Projects βΎ β βββββββββββββββββββββββββββββββββ βββββββββββββββββββββββββββββββββββββ β
β Β· Marketing β β β Write Q2 report [DUE TODAY] β β β Design system audit [TOMORROW] β β
β Β· Engineering β β Marketing Β· π΄ High β β Design Β· π‘ Medium β β
β Β· Design β β [Edit] [Complete] β β [Edit][Complete]β β
β π
Calendar β βββββββββββββββββββββββββββββββββ βββββββββββββββββββββββββββββββββββββ β
β ββββββββββββββββ β βββββββββββββββββββββββββββββββββ βββββββββββββββββββββββββββββββββββββ β
β FILTERS β β β Review PR #47 [DUE TODAY] β β β Team standup [DONE] β β
β Priority βΎ β β Engineering Β· π‘ Medium β β General Β· π’ Low β β
β Project βΎ β β [Edit] [Complete] β β [Reopen][View] β β
β Date βΎ β βββββββββββββββββββββββββββββββββ βββββββββββββββββββββββββββββββββββββ β
β ββββββββββββββββ β β
β [+ New Task] β [+ Add New Task] β
ββββββββββββββββββββ΄ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// SIDEBAR: width 240px Β· var(--color-surface-elevated) Β· var(--shadow-md)
// GRID: 2-col cards Β· gap var(--space-6)
// [+ New Task] sidebar btn: var(--color-action-primary) Β· width 100%
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β BREAKPOINT: md β Desktop 1440 Β· 1440px Β· 180 cols β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β π Taskflow π My Tasks π Board π Projects π
Calendar π Search tasksβ¦ π [+ New Task] Alex βΎ β
ββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββ€
β SIDEBAR β TASK LIST β TASK DETAIL PANEL β
β ββββββββββ β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β βββββββββββββββββββββββββ β
β π My Tasks β FILTERS: [All βΎ] [Priority βΎ] [Project βΎ] [Due Date βΎ] [Assignee βΎ] Sort: Due Date β² View: β° β β Write Q2 report β
β π Board β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β β
β π Projects βΎ β β Write Q2 report Marketing π΄ High Alex Due: Today β 0% [Edit] [Complete] [Β·Β·Β·] β π Marketing β
β Β· Marketing β β Review PR #47 Engineering π‘ Medium Jordan Due: Today β 0% [Edit] [Complete] [Β·Β·Β·] β π΄ High Β· Due Today β
β Β· Design β β Design system audit Design π‘ Medium Sam Due: Tomorrow β 25% [Edit] [Complete] [Β·Β·Β·] β β
β Β· Engineeringβ β Update dependencies Engineering π’ Low Jordan Due: Fri β 0% [Edit] [Complete] [Β·Β·Β·] β Description β
β Β· General β β Team standup General π’ Low Team Completed β [Reopen] [View] β βββββββββββββββββββββββ β
β ββββββββββ β β Client call prep Marketing π΄ High Alex Due: Fri β 50% [Edit] [Complete] [Β·Β·Β·] β β Draft the Q2 report β β
β PROJECTS β β Accessibility review Design π‘ Medium Sam Due: Next Wk β 0% [Edit] [Complete] [Β·Β·Β·] β β for stakeholdersΒ·Β·Β· β β
β ββββββββββ β β βββββββββββββββββββββββ β
β [+ New Task] β Showing 7 tasks β β
β β β Subtasks (0/3) β
β β β β Gather metrics β
β β β β Write exec summary β
β β β β Peer review β
β β β [+ Add subtask] β
ββββββββββββββββββ΄ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ΄ββββββββββββββββββββββββββββββ
// 3-PANEL: sidebar 200px Β· task list flex-1 Β· detail panel 320px
// ROW hover: var(--color-surface-elevated) Β· var(--duration-fast) transition
// DETAIL PANEL: var(--shadow-xl) on scroll enter
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β BREAKPOINT: lg β Desktop 1920 Β· 1920px Β· 240 cols β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β π Taskflow π Tasks π Board π Projects π
Calendar π Analytics π Search tasksβ¦ π [+ New Task] Alex βΎ β β
ββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β SIDEBAR 240pxβ TASK BOARD β KANBAN β ANALYTICS PANEL (320px) β
β ββββββββββββ β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β π My Tasks β βββββββββββββββββββββββ βββββββββββββββββββββββ βββββββββββββββββββββββ βββββββββββββββββββββββ βββββββββββββββββββββββ β COMPLETION TREND β
β π Board β β π₯ BACKLOG (12) β β π TO DO (5) β β π IN PROGRESS (3) β β π REVIEW (2) β β β
DONE (7) β β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β π Projects β β βββββββββββββββββββ β β βββββββββββββββββββ β β βββββββββββββββββββ β β βββββββββββββββββββ β β βββββββββββββββββββ β β β 10 β ββββ β β
β Marketing β β βββββββββββββββββ β β βββββββββββββββββ β β βββββββββββββββββ β β βββββββββββββββββ β β βββββββββββββββββ β β β 8 β ββββββββββ β β
β Engineering β β β Update deps β β β β Write Q2 rpt β β β β Design audit β β β β Review PR#47 β β β β Team standup β β β β 6 β ββββββββ β β
β Design β β β Eng Β· π’ Low β β β β Mkt Β· π΄ High β β β β Dsgn Β·π‘ Med β β β β Eng Β·π‘ Med β β β β Gen Β· π’ Low β β β β 4 β ββββββ β β
β General β β βββββββββββββββββ β β βββββββββββββββββ β β β ββββββ 25% β β β βββββββββββββββββ β β βββββββββββββββββ β β β 2 β βββββ β β
β ββββββββββ β β Β·Β·Β· β β Β·Β·Β· β β βββββββββββββββββ β β Β·Β·Β· β β Β·Β·Β· β β β 0 ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β β
β π
Calendar β β β β β β β β β β β β β Mon Tue Wed Thu Fri Sat Sun Mon Tue Wed β β
β π Analyticsβ β [+ Add card] β β [+ Add card] β β [+ Add card] β β [+ Add card] β β [+ Add card] β β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β ββββββββββ β βββββββββββββββββββββββ βββββββββββββββββββββββ βββββββββββββββββββββββ βββββββββββββββββββββββ βββββββββββββββββββββββ β // chart: inline SVG Β· colors via currentColor β
β [+ New Task]β β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β β BY PROJECT TASKS DONE % β
β β β Marketing ββββββββββββ 5 2 40% β
β β β Engineering ββββββββββββ 4 2 50% β
β β β Design ββββββββββββ 3 1 33% β
β β β General ββββββββββββ 2 2 100% β
ββββββββββββββββ΄ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// KANBAN: horizontal scroll on md, native grid on lg Β· overflow-x auto
// ANALYTICS: sticky right panel, collapsible Β· var(--shadow-xl)
// CHART: CSS custom-prop colors, no hardcoded fills
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β BREAKPOINT: xl β UWHD 21:9 Β· 3440px Β· 430 cols [max-width: 1920px centered, gutters fill remainder] β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ββββ GUTTER (auto) βββββββββββββββββββββββββ max-width: 1920px [identical to lg layout, locked center] βββββββββββββββββββββββββββ GUTTER (auto) ββββ
β π Taskflow [full lg layout reproduced here β sidebar + kanban + analytics] β
β // BODY: background var(--color-surface-base) extends edge-to-edge (gutters bleed) β
β // CONTENT: max-width 1920px; margin-inline auto β
β // GUTTER COLOR: var(--color-surface-base) β no harsh edge β
β // FONT: same scale as lg β no increase to avoid readability issues at distance β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
// UWHD STRATEGY: center-lock with max-width. Never stretch content to full 3440px.
// Gutters intentionally use surface-base to feel like ambient background, not dead space.
// Optional: add a subtle ambient illustration or gradient in the gutter zone.
src/
design-system/
tokens/
tokens.json β source of truth (v1.0.0)
tokens.css β compiled CSS custom props + Google Fonts @import
tokens.ts β typed JS: export const color, space, shadow β¦
components/
primitives/
Button/
Button.tsx β variant: primary | ghost | danger
Button.module.css β uses only var(--*) tokens
Input/
Badge/
Avatar/
Icon/
layout/
Container/ β max-width + margin-inline auto
Grid/ β 12-col responsive
Stack/ β vertical / horizontal spacing
Divider/
navigation/
Navbar/
Sidebar/
BottomNav/ β xs only
Breadcrumb/
Tabs/
feedback/
Toast/
Alert/
Modal/
Skeleton/
ProgressBar/
data-display/
TaskCard/ β maps to ββββ card in mockup
KanbanColumn/
StatBar/
MiniChart/
forms/
Form/
Field/
Select/
Checkbox/
Radio/
media/
AspectRatio/
LazyImage/
mockups/
xs/ taskflow-dashboard.txt
sm/ taskflow-dashboard.txt
md/ taskflow-dashboard.txt
lg/ taskflow-dashboard.txt
xl/ taskflow-dashboard.txt
CHANGELOG.md
VERSION
## [1.0.0] β 2026-03-26
### Added
- Initial 5-breakpoint mockup set: xs, sm, md, lg, xl
- Design token manifest: tokens.json + tokens.css
- ARIA color palette β all pairs meet WCAG 2.1 AA
- Google Fonts CDN: Syne (display) + DM Sans (body) + JetBrains Mono
- Component scaffold for React / Next.js
- Dark mode token overrides
- prefers-reduced-motion support1.0.0
Step 1 β
ascii-mockup β wireframes + tokens (complete)
Step 2 β ux-journey-mapper β overlay task-creation & completion journey on mockup screens
Step 3 β frontend-design β production HTML/CSS/React using tokens.css as the style foundation
To continue, say: "Map the task creation journey" or "Build the production frontend from these tokens."
Skills are a great way to teach Claude how to get better at using specific pieces of software. As we see awesome example skills from partners, we may highlight some of them here:
- Notion - Notion Skills for Claude