cloudflare-api
Hit the Cloudflare REST API directly for operations that wrangler and MCP can't handle well. Bulk DNS, custom hostnames, email routing, cache purge, WAF rules,…
Compare UX patterns across multiple reference apps using pattern libraries produced by ux-extract. Reads 2+ pattern-library.md files, walks them category by category, identifies where apps converge (strong signal), where they diverge (genuine design choice), what's unique to one
$ npx -y skills add jezweb/claude-skills --skill ux-compare --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ux-compareContext preview
The summary Claude sees to decide when to auto-load this skill.
Compare UX patterns across multiple reference apps using pattern libraries produced by ux-extract. Reads 2+ pattern-library.md files, walks them category by category, identifies where apps converge (strong signal), where they diverge (genuine design choice), what's unique to one
name: ux-compare description: "Compare UX patterns across multiple reference apps using pattern libraries produced by ux-extract. Reads 2+ pattern-library.md files, walks them category by category, identifies where apps converge (strong signal), where they diverge (genuine design choice), what's unique to one app, and what's absent across the set. Produces an opinionated comparison document with recommendations for a new build. No browser needed — pure markdown analysis. Trigger with 'compare UX patterns', 'how do top apps handle X', 'ux comparison', 'pattern comparison across reference apps'." compatibility: claude-code-only
Read N pattern libraries produced by `ux-extract` and synthesise a comparison. Answers questions like:
A single extract is a reference point. Multiple extracts are a design library. A comparison is a *decision aid* — it turns the library into "here's what to do and why".
First, discover what's available. Pattern libraries live at:
List everything you find. Show the user the inventory with the extraction date for each so they can spot stale ones:
Available pattern libraries: - claude.ai (extracted 2026-03-12) - linear.app (extracted 2026-02-28) - notion.so (extracted 2026-01-15) ← 3 months old - superhuman (extracted 2026-03-20)
If only one library exists, stop and suggest running `ux-extract` on more apps first. A one-library "comparison" is just the library.
Ask the user what to compare — or infer from their request:
Narrower scope produces sharper recommendations. Default to asking: *"What feature or pattern do you want to compare?"*
By default, include every library the user mentions or all of them if they don't specify. Let them exclude: *"all except notion — their library is too stale"*.
For each library in scope, read the full `pattern-library.md`. Note:
For the scope requested, walk each pattern category that appears in any library. For each category:
1. **List what each app does** — one bullet per app, concrete and verbatim where possible 2. **Identify convergence** — what's the same across most or all? This is the low-risk default. 3. **Identify divergence** — where do they genuinely differ? This is a design decision. 4. **Flag unique approaches** — only one app does X. Either innovation or weirdness; call it out either way. 5. **Flag coverage gaps** — if an app's library doesn't cover this category, say so (don't silently treat absent-from-library as absent-from-app).
After walking categories, collect what's absent across the set. If 4 of 5 apps have no undo on destructive actions, that's a pattern. If 3 of 5 apps have no keyboard shortcut for new-record creation, that's a decision someone keeps making.
Close with opinionated guidance:
The recommendations section is the reason to run the comparison. Without it, the doc is a pile of bullets. With it, it's a decision.
Write to `docs/ux-comparisons/<topic>-YYYY-MM-DD.md` (or `.jez/artifacts/ux-comparisons/<topic>-YYYY-MM-DD.md` if that path exists).
Topic slug from the scope — e.g. `empty-states`, `keyboard-shortcuts`, `onboarding`, `destructive-actions`.
See [references/comparison-template.md](references/comparison-template.md) for the full output shape.
Short version:
# UX Comparison: Empty States Compared: claude.ai, linear.app, notion.so, superhuman Date: 2026-04-19 Scope: How these apps handle empty states across list views, onboarding, and zero-data dashboards. ## At a glance [2-3 sentences: what converges, what diverges, what's missing across the set] ## Pattern-by-pattern ### Empty list state - **claude.ai**: illustration + headline + description + primary CTA + 3 shortcut hints - **linear**: headline only, small text, no CTA - **notion**: template picker (unique — offers 12 templates) - **superhuman**: empty state not reached in extract (all-data demo account) Convergence: most show some form of guidance; none are fully blank. Dive
Production workflow skills for Claude Code. Each skill guides Claude through a recipe to produce tangible output — scaffolded projects, generated assets, professional documents, deployed services. Ten plugins of practical, production-oriented skills.
Repo: jezweb/claude-skills
Hit the Cloudflare REST API directly for operations that wrangler and MCP can't handle well. Bulk DNS, custom hostnames, email routing, cache purge, WAF rules,…
Scaffold and deploy Cloudflare Workers with Hono routing, Vite plugin, and Static Assets. Describe project, scaffold structure, configure bindings, deploy. Use…
Generate Drizzle ORM schemas for Cloudflare D1 databases with correct D1-specific patterns. Produces schema files, migration commands, type exports, and…
Cloudflare D1 migration workflow: generate with Drizzle, inspect SQL for gotchas, apply to local and remote, fix stuck migrations, handle partial failures. Use…
Generate database seed scripts with realistic sample data. Reads Drizzle schemas or SQL migrations, respects foreign key ordering, produces idempotent…
Scaffold Hono API routes for Cloudflare Workers. Produces route files, middleware, typed bindings, Zod validation, error handling, and API_ENDPOINTS.md…