An agentic skills framework & software development methodology that works.
Claude Code skills for product, design, and development
This repo packages 47 Claude Code skills into one library of reusable workflows. The skills cover design review, product writing, Next.js setup, Supabase setup, Vercel deploys, code review, testing, and browser automation. The skills are grouped by workflow and stored under `.claude/skills/`, so you can copy all of them or only the categories you want. The README also points to `SKILL-GUIDE.md` for the shared skill format.
Builders who want Claude Code skills they can copy into their projects and reuse across product, design, and shipping work.
You can give Claude Code repeatable workflows for design, product, development, testing, and deployment instead of re-teaching the same process each time.
What it does
Design skills
Includes design frameworks like `frontend-design` and `design-foundations`, plus commands such as `/audit`, `/critique`, `/polish`, `/clarify`, and `/onboard`.
Product skills
Includes `jtbd` and `lean-canvas`, with commands for interviews, competitive analysis, PRDs, stories, prioritization, scope, GTM, metrics, and retros.
Development skills
Includes `vercel-react-best-practices`, `web-design-guidelines`, `typescript-patterns`, and `api-design`, plus setup, review, test, and deploy commands.
Browser automation tool
Includes `agent-browser` for navigating pages, filling forms, taking screenshots, scraping, and testing in the browser.
How to get it
- 1Install everything — copy all skills into any project
cp -r .claude/skills/ your-project/.claude/skills/
- 2Install globally — available in every project
cp -r .claude/skills/* ~/.claude/skills/
README
builder-skills
47 Claude Code skills for product management, frontend design, full-stack development, and browser automation. Organized by workflow — from discovery through deployment.
Setup
Install everything — copy all skills into any project:
cp -r .claude/skills/ your-project/.claude/skills/
Install globally — available in every project:
cp -r .claude/skills/* ~/.claude/skills/
Install selectively — pick only the categories you need (recommended if you have many skills already, to avoid context bloat):
# Just design skills
cp -r .claude/skills/design/ your-project/.claude/skills/design/
# Just product skills
cp -r .claude/skills/product/ your-project/.claude/skills/product/
# Mix and match
cp -r .claude/skills/dev/setup/ your-project/.claude/skills/dev/setup/
cp -r .claude/skills/dev/review/ your-project/.claude/skills/dev/review/
Skills
Design
Frameworks
Knowledge skills that provide design principles and decision-making context.
| Skill | References | Covers |
|---|---|---|
frontend-design | 7 | Typography, color, spacing, motion, interaction, responsive, writing |
design-foundations | 5 | Five planes model — strategy, scope, structure, skeleton, surface |
Commands
Slash commands for targeted design work. Most accept an optional argument to scope the work (e.g. /audit header, /polish checkout-form).
| Group | Command | What it does |
|---|---|---|
| Setup | /design-brief | One-time setup — gathers design context and saves to config |
| Review | /audit | Technical quality checks: a11y, performance, theming, responsive |
/critique | Design review: hierarchy, clarity, emotional resonance | |
| Refine | /normalize | Align with design system standards |
/polish | Final pass before shipping | |
/distill | Strip to essence, remove complexity | |
/clarify | Improve unclear copy and labels | |
/extract | Pull reusable components into design system | |
| Adjust | /bolder | Amplify safe or boring designs |
/quieter | Tone down overly bold designs | |
/colorize | Add strategic color | |
/animate | Add purposeful motion | |
/delight | Add moments of joy and personality | |
| Hardening | /optimize | Performance: loading, rendering, bundle size |
/harden | Error handling, i18n, edge cases | |
/adapt | Adapt for different devices and contexts | |
/onboard | Design onboarding flows and empty states |
Product
Frameworks
Knowledge skills that provide product strategy and decision-making context.
| Skill | References | Covers |
|---|---|---|
jtbd | 5 | Jobs to Be Done — core concepts, discovering/defining/designing/delivering value |
lean-canvas | — | One-page business model — problem, solution, channels, metrics, unfair advantage |
Commands
Slash commands for product management work. Most accept an optional argument to scope the work (e.g. /prd search-feature, /prioritize backlog).
| Group | Command | What it does |
|---|---|---|
| Discover | /interview | Generate interview scripts or analyze transcripts for insights |
/competitive | Competitive analysis with feature comparison and positioning gaps | |
| Define | /prd | Write a product requirements document |
/stories | Write job stories with acceptance criteria | |
/spec | Write a technical specification from requirements | |
| Prioritize | /prioritize | Score and rank features using RICE, opportunity scoring, or impact/effort |
/scope | Cut scope to identify MVP and must-haves for a timeline | |
| Launch | /gtm | Go-to-market plan with positioning, messaging, and launch checklist |
/metrics | Define success metrics, KPIs, and instrumentation plan | |
/retro | Run a structured retrospective with actionable outcomes |
Development
Frameworks
Knowledge skills that provide development best practices and conventions.
| Skill | Covers |
|---|---|
vercel-react-best-practices | React/Next.js performance optimization from Vercel Engineering (58 rules) |
web-design-guidelines | Review UI code against Web Interface Guidelines |
typescript-patterns | Type design, generics, utility types, discriminated unions, error handling |
api-design | RESTful conventions, error formats, pagination, versioning, auth patterns |
Commands
Slash commands for development workflows. Most accept an optional argument to scope the work.
| Group | Command | What it does |
|---|---|---|
| Setup | /nextjs-init | Scaffold Next.js with App Router, TypeScript, Tailwind, opinionated defaults |
/supabase-setup | Initialize Supabase: schema, RLS policies, auth, storage, edge functions | |
/vercel-deploy | Deploy to Vercel: config, env vars, domains, preview deploys | |
/db-schema | Design a database schema from requirements (Postgres-first, Supabase-aware) | |
/env-config | Set up environment variables across local/staging/production with validation | |
| Review | /code-review | Structured code review: correctness, readability, performance, security |
/security-scan | OWASP top 10 check: injection, XSS, auth issues, secrets exposure | |
/deps-audit | Audit dependencies: outdated, vulnerable, unused, bloated | |
| Test | /test-plan | Write test strategy with coverage targets and testing pyramid |
/test-write | Generate tests for existing code (unit, integration, e2e) | |
| Deploy | /deploy-check | Pre-deployment checklist: migrations, env vars, rollback plan, smoke tests |
/monitor | Set up monitoring: error tracking, alerts, dashboards, SLOs |
Tools
| Skill | Covers |
|---|---|
agent-browser | Browser automation CLI — navigate, fill forms, screenshot, scrape, test |
Structure
.claude/skills/
design/
frameworks/
design-brief/ # one-time setup
frontend-design/ # 7 reference files
design-foundations/ # 5 reference files
review/
audit/
critique/
refine/
normalize/
polish/
distill/
clarify/
extract/
adjust/
bolder/
quieter/
colorize/
animate/
delight/
hardening/
optimize/
harden/
adapt/
onboard/
product/
frameworks/
jtbd/ # 5 reference files
lean-canvas/
discover/
interview/
competitive/
define/
prd/
stories/
spec/
prioritize/
prioritize/
scope/
launch/
gtm/
metrics/
retro/
dev/
frameworks/
vercel-react-best-practices/
web-design-guidelines/
typescript-patterns/
api-design/
setup/
nextjs-init/
supabase-setup/
vercel-deploy/
db-schema/
env-config/
review/
code-review/
security-scan/
deps-audit/
test/
test-plan/
test-write/
deploy/
deploy-check/
monitor/
tools/
agent-browser/
Every skill follows the same structure: SKILL.md + optional references/ directory. See SKILL-GUIDE.md for writing conventions.
Credits
JTBD skills based on The Jobs to Be Done Playbook by Jim Kalbach (Rosenfeld Media). Design skills adapted from pbakaus/impeccable, building on Anthropic's frontend-design skill. Vercel skills from vercel-labs/agent-skills. Browser automation from vercel-labs/agent-browser.
Files in the repo
- .claude
- .gitignore
- LICENSE
- README.md
- SKILL-GUIDE.md
Discussion (0)
Ask about usage, or say what you built with itSign in to join the discussion.
No comments yet. Be the first to say what this is good for.
More skills

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.
Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.
Public repository for Agent Skills
Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

Production-grade engineering skills for AI coding agents.