A personal plugin marketplace and skill library for full-stack web application development, built on the Impeccable design language with enterprise-grade development patterns.
- Overview
- Quick Start
- Plugin: impeccable-fullstack
- Directory Structure
- Available Skills & Commands
- Usage Guide
- Development Preferences
- Attribution
This marketplace bundles 24 skills into a single plugin for Claude Code / Cowork:
- 17 Impeccable design commands β audit, polish, normalize, animate, and more for frontend design quality
- 7 design reference documents β typography, color, spatial design, motion, interaction, responsive, UX writing
- 6 custom enterprise skills β progress modals, full-stack architecture, frontend refactoring, codebase refactoring, README generation, and multi-phase refactoring plans
cp -r plugins/impeccable-fullstack/skills/* your-project/.claude/skills/cp -r plugins/impeccable-fullstack/skills/* ~/.claude/skills/The plugins/impeccable-fullstack/ directory is ready to use as a skill source. Point your Cowork session's skill path to this directory.
π¦ Plugin Metadata
| Field | Value |
|---|---|
| Name | impeccable-fullstack |
| Version | 1.0.0 |
| Author | Jerry |
| License | Apache-2.0 (Impeccable base) + Personal (custom skills) |
| Based On | pbakaus/impeccable |
| Total Skills | 24 |
carlos-code/
βββ CLAUDE.md # Marketplace manifest & dev preferences
βββ README.md # This file
βββ .claude/
β βββ skills/
β βββ impeccable-fullstack/
β βββ SKILL.md # Meta-skill (command reference)
β
βββ plugins/
β βββ impeccable-fullstack/
β βββ plugin.json # Plugin configuration
β βββ NOTICE.md # Licensing & attribution
β βββ skills/
β β
β β ββ Impeccable Design Skills (from pbakaus/impeccable) ββ
β β
β βββ frontend-design/ # Core design skill + 7 reference docs
β β βββ SKILL.md # Design direction, aesthetics, anti-patterns
β β βββ reference/
β β βββ typography.md # Type systems, font pairing, modular scales
β β βββ color-and-contrast.md # OKLCH, tinted neutrals, dark mode
β β βββ spatial-design.md # Spacing systems, grids, visual hierarchy
β β βββ motion-design.md # Easing curves, staggering, reduced motion
β β βββ interaction-design.md # Forms, focus states, loading patterns
β β βββ responsive-design.md # Mobile-first, fluid, container queries
β β βββ ux-writing.md # Button labels, errors, empty states
β β
β βββ audit/SKILL.md # Technical quality audit
β βββ polish/SKILL.md # Final pre-ship quality pass
β βββ normalize/SKILL.md # Align with design system standards
β βββ animate/SKILL.md # Add purposeful motion
β βββ harden/SKILL.md # Error handling, i18n, resilience
β βββ distill/SKILL.md # Strip to essence
β βββ clarify/SKILL.md # Improve UX copy clarity
β βββ colorize/SKILL.md # Introduce strategic color
β βββ critique/SKILL.md # UX design review
β βββ delight/SKILL.md # Add joy moments
β βββ extract/SKILL.md # Pull into reusable components
β βββ adapt/SKILL.md # Adapt for different devices
β βββ onboard/SKILL.md # Design onboarding flows
β βββ optimize/SKILL.md # Performance improvements
β βββ bolder/SKILL.md # Amplify bland designs
β βββ quieter/SKILL.md # Tone down aggressive designs
β βββ teach-impeccable/SKILL.md # One-time design context setup
β β
β β ββ Custom Enterprise Skills ββ
β β
β βββ progress-modal/SKILL.md # Multi-step progress modal component
β βββ enterprise-webapp/SKILL.md # Full-stack enterprise architecture
β βββ frontend-refactor/SKILL.md # shadcn/ui + Tailwind refactoring
β βββ codebase-refactor/SKILL.md # SOLID refactoring with naming rules
β βββ readme-generator/SKILL.md # Enterprise README.md generation
β βββ refactoring-plan/SKILL.md # Multi-phase refactoring with gates
β
βββ prompts/ # (Reserved for raw prompt storage)
These commands focus on frontend design quality and come from the Impeccable project:
| Command | Purpose | When to Use |
|---|---|---|
/teach-impeccable |
One-time setup β gather design context | First time with a project |
/audit |
Technical quality audit (a11y, perf, responsive) | Before shipping, periodic reviews |
/critique |
UX design review | When evaluating design decisions |
/normalize |
Align with design system standards | Inconsistent styling |
/polish |
Final pre-ship quality pass | Last step before shipping |
/distill |
Strip to essence | Overdesigned interfaces |
/clarify |
Improve UX copy clarity | Confusing labels or messages |
/optimize |
Performance improvements | Slow pages, heavy bundles |
/harden |
Error handling, i18n, resilience | Edge cases, internationalization |
/animate |
Add purposeful motion | Static, lifeless interfaces |
/colorize |
Introduce strategic color | Bland or monotone designs |
/bolder |
Amplify bland designs | Too safe, too generic |
/quieter |
Tone down aggressive designs | Too loud, overstimulating |
/delight |
Add joy moments | Functional but lifeless |
/extract |
Pull into reusable components | Code duplication |
/adapt |
Adapt for different devices | Mobile/tablet gaps |
/onboard |
Design onboarding flows | First-time user experience |
These skills extend Impeccable with full-stack enterprise development patterns:
| Skill | Purpose | Covers |
|---|---|---|
/progress-modal |
Build multi-step progress modal | TypeScript API, backend contract, WCAG 2.1 AA, cancellation, testing |
/enterprise-webapp |
Full-stack enterprise guide | Frontend, backend, auth, caching, async, security, observability, CI/CD |
/frontend-refactor |
Refactor to shadcn/ui | Design tokens, atomic design, feedback tiers, dark mode, 10-step process |
/codebase-refactor |
Systematic refactoring | SOLID, banned naming patterns, DRY, mirrored structure, 9-step process |
/readme-generator |
Generate README.md | 19 sections, collapsible deep-dives, external references, quality bar |
/refactoring-plan |
Multi-phase refactoring | 5 phases with validation gates, rollback protocols, success criteria |
The frontend-design skill includes 7 reference documents consulted automatically:
| Reference | What It Covers |
|---|---|
typography.md |
Type scales, font pairing, fluid sizing, OpenType features, loading strategies |
color-and-contrast.md |
OKLCH color, tinted neutrals, dark mode, accessibility contrast ratios |
spatial-design.md |
Spacing systems, grids, visual rhythm, container queries |
motion-design.md |
Timing, easing curves (no bounce/elastic), staggering, reduced motion |
interaction-design.md |
Forms, focus management, loading patterns, optimistic UI |
responsive-design.md |
Mobile-first, fluid design, container queries, adaptive layouts |
ux-writing.md |
Button labels, error messages, empty states, microcopy |
1. /teach-impeccable β Establish design context (once per project)
2. Build features β Use enterprise-webapp for architecture guidance
3. /audit β Find quality issues
4. /normalize β Fix inconsistencies
5. /polish β Final quality pass
/teach-impeccable β Set design direction
/enterprise-webapp β Reference architecture patterns
/codebase-refactor β Systematic SOLID refactoring
/frontend-refactor β Migrate to shadcn/ui
/refactoring-plan β Multi-phase plan with gates
/readme-generator β Generate comprehensive README.md
/progress-modal β Build progress feedback components
/extract β Pull into reusable components
/animate β Add purposeful motion
/harden β Add error handling and resilience
These preferences are encoded in CLAUDE.md and apply to all projects using this marketplace:
| Preference | Setting |
|---|---|
| Python packages | UV with .venv.nosync.noindex naming |
| Node.js packages | Yarn (not NPM β avoids large node_modules churn) |
| Code comments | Clear section comments explaining different areas |
| Process | Research β Check docs β Test β Validate before implementing |
| Changes | Small incremental changes with repeated testing |
The design skills in this plugin are based on Impeccable by Paul Bakaus, licensed under Apache 2.0. Impeccable itself builds on Anthropic's frontend-design skill.
The enterprise development skills (progress-modal, enterprise-webapp, frontend-refactor, codebase-refactor, readme-generator, refactoring-plan) are original works.
Sources: