skills/maximalist-wall-decorator/SKILL.md
Expert in maximalist interior wall decoration including bold color choices, freehand paintings, statement wallpapers, eclectic lamp arrangements, gallery walls, and curated chaos. Embraces "more is more" philosophy with sophisticated color theory and composition. Activate on "wall decor", "maximalist design", "bold colors", "gallery wall", "statement wallpaper", "freehand painting", "eclectic style", "accent wall", "lamp collection", "more is more", "silly decor". NOT for minimalist design (different aesthetic), exterior design (use fancy-yard-landscaper), or professional murals (consult mural artists).
npx skillsauth add curiositech/windags-skills maximalist-wall-decoratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Embrace abundance, celebrate color, and fill your walls with joy. More is more, and we're going to do it right.
ROOM SIZE × BOLDNESS LEVEL → COLOR APPROACH
SMALL ROOMS (under 100 sq ft):
├── Timid → Medium saturation single color + white trim
├── Confident → High saturation single wall + neutral others
├── Fearless → Full room bold color + dramatic ceiling
└── Pattern: Large-scale wallpaper (counterintuitive but works)
MEDIUM ROOMS (100-200 sq ft):
├── Timid → Accent wall strategy + gallery wall opposite
├── Confident → Two bold colors (60/40 split)
├── Fearless → Three colors + metallic accents
└── Pattern: Mix painted walls + patterned textiles
LARGE ROOMS (200+ sq ft):
├── Timid → Color blocking (half walls, wainscoting)
├── Confident → Salon-style gallery wall + statement ceiling
├── Fearless → Four-wall color story + pattern mixing
└── Pattern: Wallpaper + paint + mural combination
START HERE: What's your focal point?
EXISTING FURNITURE as focal → Paint walls to complement
├── Neutral furniture → Go bold on walls (any color works)
├── Patterned furniture → Solid bold walls (no wallpaper)
└── Bold furniture → Either echo color or go complementary
NO CLEAR FOCAL POINT → Create one with walls
├── Small budget → Freehand painted accent wall
├── Medium budget → Statement wallpaper on one wall
├── Large budget → Full room wallpaper + ceiling treatment
└── Rental → Removable wallpaper + gallery wall
ARCHITECTURAL FEATURES present
├── Good bones (moldings, built-ins) → Paint them bold too
├── Ugly features → Paint everything same dark color (hide flaws)
├── No features → Create with color blocking or faux wainscoting
└── Beautiful features → Contrast with wall color (highlight them)
LIGHTING CONDITIONS:
├── North-facing/dark → Warm colors (coral, gold, peach)
├── South-facing/bright → Cool colors work (blues, greens)
├── Poor artificial lighting → Light colors + metallic accents
└── Great natural light → Any color works, go saturated
Symptoms: Colors fighting each other, no visual breathing room, headache-inducing Detection Rule: If you can't look at the wall for more than 30 seconds without feeling overwhelmed Diagnosis: No unifying element, wrong saturation levels, poor color temperature mix Fix: Choose one dominant color (covers 60% of visual space), ensure all colors share same undertone (warm or cool), add neutral buffer zones
Symptoms: Room feels electric/buzzing, can't relax in space, visitors comment on energy Detection Rule: If you avoid spending time in the room you decorated Diagnosis: All colors at 100% saturation, no tonal variation, lack of visual rest areas Fix: Introduce tonal variations of your bold colors (lighter/darker versions), add 20% neutral elements, use matte finishes to reduce intensity
Symptoms: Started bold, got scared, added neutrals that muddy the vision Detection Rule: If room looks neither maximalist nor minimalist, just confused Diagnosis: Lost confidence mid-process, tried to please everyone, diluted original vision Fix: Commit fully to original vision OR strip back to neutral and start fresh, never try to blend maximalist with minimalist in same space
Symptoms: Frames floating randomly, inconsistent spacing, no visual flow between pieces Detection Rule: If your eye can't find a path through the arrangement Diagnosis: No anchor piece, wrong spacing ratios, mixed too many frame styles without intention Fix: Start with largest piece as anchor, maintain 2-3" consistent spacing, use paper templates on floor first, limit to 3 frame styles max
Initial Situation: 12x14 bedroom, white walls, north-facing, client wants "cozy but energizing"
Decision Process:
Expert Approach:
What Novice Would Miss:
Result Validation: Client reports room feels like "warm hug" but still energizing in mornings. Photography shows colors hold true in all lighting conditions.
Don't use this skill for:
Delegate to other skills:
Remember: Your walls are autobiography written in color. Every choice should reflect joy, personality, and the full spectrum of who you are. When you think it's "too much," you're probably just getting started.
The goal isn't perfection—it's expression. Confidence is the secret ingredient that makes bold choices work.
tools
Building resilient distributed systems with circuit breakers, retries with full-jitter exponential backoff, retry budgets (per-request 3-attempt + per-client 10% ratio per Google SRE), deadline propagation, and the cascading-failure math (4 layers × 3 retries = 64x amplification). Grounded in Resilience4j, Microsoft Cloud Patterns, AWS Architecture Blog (Marc Brooker), and Google SRE Book.
testing
Designing HTTP cache headers that work correctly across browsers, CDNs, and shared proxies — `Cache-Control` directives per RFC 9111, `stale-while-revalidate` and `stale-if-error` per RFC 5861, the Vary header for varying responses, and surrogate keys for tag-based purging. Grounded in IETF RFCs and Cloudflare/Fastly docs.
development
Use when designing or fixing a Content Security Policy on a real site, choosing between nonce-based and hash-based CSP, adding strict-dynamic, debugging "Refused to execute inline script" errors, deploying CSP in report-only mode first, configuring report-to / report-uri, or auditing an existing policy for unsafe-inline / unsafe-eval / wildcards. Triggers: "CSP blocks legitimate inline script", strict-dynamic, nonce-{RANDOM}, sha256-{HASH}, object-src none, base-uri none, frame-ancestors, Trusted Types, X-Content-Security-Policy obsolete, report-only vs enforced. NOT for general HTTP security headers (HSTS, COOP/COEP), Trusted Types deep dive, CORS configuration, or building a WAF.
tools
Choosing and operating an HTTP API versioning strategy that doesn't break clients — Stripe's date-based pinned versions, the Deprecation/Sunset header pair (RFC 9745 + RFC 8594), URI vs header vs media-type approaches, and the version-transformer pattern. Grounded in Stripe's published architecture and IETF RFCs.