Skip to content

TrystPilot/skills

Β 
Β 

Repository files navigation

Note: This repository contains Anthropic's implementation of skills for Claude. For information about the Agent Skills standard, see agentskills.io.

Skills

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:

About This Repository

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.

Disclaimer

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.

Skill Sets

  • ./skills: Skill examples for Creative & Design, Development & Technical, Enterprise & Communication, and Document Skills
  • ./spec: The Agent Skills specification
  • ./template: Skill template

Example Skills

Creative & Design

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

Development & Technical

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

Enterprise & Communication

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

Document Skills

Skill Description
docx Create, read, edit, and manipulate Word documents (.docx)
pdf 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)

API & SDK Skills

Skill Description
claude-api Reference docs and patterns for building apps with the Claude API and Anthropic SDKs

Try in Claude Code, Claude.ai, and the API

Claude Code

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:

  1. Select Browse and install plugins
  2. Select anthropic-agent-skills
  3. Select document-skills or example-skills
  4. 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"

Claude.ai

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.

Claude API

You can use Anthropic's pre-built skills, and upload custom skills, via the Claude API. See the Skills API Quickstart for more.

Creating a Basic Skill

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 2

The 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.


ASCII Mockup Skill β€” Demo

Skill invoked: ascii-mockup Project: Taskflow β€” a minimal task-management web app Stack: React / Next.js Β· Tailwind-compatible tokens Β· Google Fonts CDN Version: 1.0.0 Β· 2026-03-26

ARIA Color Palette

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.


tokens.css (excerpt β€” zero hardcoded values after :root)

@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; }
}

ASCII Wireframes β€” All 5 Breakpoints

xs β€” iPhone 720 Β· 390px Β· 48 cols

╔════════════════════════════════════════════════╗
β•‘  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)     β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

sm β€” iPad Β· 768px Β· 96 cols

╔════════════════════════════════════════════════════════════════════════════════════════════════╗
β•‘  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%

md β€” Desktop 1440 Β· 1440px Β· 180 cols

╔══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
β•‘  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

lg β€” Desktop 1920 Β· 1920px Β· 240 cols

╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
β•‘  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

xl β€” UWHD 21:9 Β· 3440px Β· 430 cols (center-locked max-width)

╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
β•‘  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.

Component Directory Scaffold (React / Next.js)

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

mockups/CHANGELOG.md

## [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 support

mockups/VERSION

1.0.0

Skill Chain β€” Next Steps

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."


Partner Skills

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:

About

Public repository for Agent Skills

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 82.8%
  • HTML 12.1%
  • JavaScript 3.2%
  • Shell 1.9%