Design

heartbeat hearthstone audit - Claude MCP Skill

Heartbeat Hearthstone Design Audit

SEO Guide: Enhance your AI agent with the heartbeat hearthstone audit tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to heartbeat hearthstone design audit... Download and configure this skill to unlock new capabilities for your AI workflow.

🌟1 stars • 1 forks
📥0 downloads

Documentation

SKILL.md
# Heartbeat Hearthstone Design Audit

Audit Heartbeat components for Hearthstone design system compliance.

## Trigger
- `heartbeat:audit-design` or `/heartbeat:audit-design`
- When asked to check Heartbeat design compliance
- When asked to audit Heartbeat styling

## Scope
- Only applies to `/Users/phaedrus/Development/heartbeat` project
- Checks React components, CSS, and TypeScript files

## Hearthstone Design System Rules

### Colors (MUST use CSS variables)

**Light Mode:**
| Token | Value | Usage |
|-------|-------|-------|
| `--color-bg-primary` | `#f5efe5` | Main background |
| `--color-bg-secondary` | `#f0e8dc` | Secondary surfaces |
| `--color-bg-elevated` | `#faf6f0` | Cards, elevated surfaces |
| `--color-text-primary` | `#2a2018` | Primary text |
| `--color-text-secondary` | `#5c4a3a` | Secondary text |
| `--color-accent-primary` | `#a0522d` | Buttons, links |
| `--color-status-up` | `#d4891a` | Healthy status |
| `--color-status-degraded` | `#c1762e` | Warning status |
| `--color-status-down` | `#8b7359` | Error status |

**Dark Mode:**
| Token | Value | Usage |
|-------|-------|-------|
| `--color-bg-primary` | `#1f1815` | Main background |
| `--color-text-primary` | `#faf6f0` | Primary text |
| `--color-accent-primary` | `#ff9500` | Ember glow |
| `--color-status-up` | `#ffb366` | Healthy status |

### Typography

**Allowed fonts:**
- Display: `Lora` (serif)
- Body: `Nunito` (rounded sans)
- Mono: `IBM Plex Mono`

**Banned fonts (from other systems):**
- Inter, Roboto, Space Grotesk
- Noto Serif JP, Manrope

### Animations

**Use these (Hearthstone):**
- `animate-hs-ember-pulse` - Status indicator up
- `animate-hs-ember-flicker` - Status indicator degraded
- `animate-hs-float-up` - Ember particles
- `animate-hs-fade-in` - Enter animations
- `animate-hs-fade-in-up` - Enter with motion

**Remove these (Kyoto Moss):**
- `animate-km-breathe` → `animate-hs-ember-pulse`
- `animate-km-breathe-subtle` → `animate-hs-ember-flicker`
- `animate-km-fade-in` → `animate-hs-fade-in`
- `animate-zen-*` → `animate-hs-*`

### Border Radii (softer)
- `--radius-sm`: 6px (was 4px)
- `--radius-md`: 8px
- `--radius-lg`: 12px
- `--radius-xl`: 16px

## Quick Audit Commands

```bash
# Find banned fonts
grep -rn "Inter\|Roboto\|Space Grotesk\|Noto Serif\|Manrope" --include="*.tsx" --include="*.ts" /Users/phaedrus/Development/heartbeat

# Find old animations
grep -rn "animate-km-\|animate-zen-" --include="*.tsx" --include="*.ts" --include="*.css" /Users/phaedrus/Development/heartbeat

# Find hardcoded colors (excluding CSS files)
grep -rn "#[0-9a-fA-F]\{6\}" --include="*.tsx" --include="*.ts" /Users/phaedrus/Development/heartbeat | grep -v "var(--"

# Find rgba/rgb colors
grep -rn "rgb(" --include="*.tsx" --include="*.ts" /Users/phaedrus/Development/heartbeat
```

## Workflow

1. Run quick audit commands above
2. Review each finding
3. For hardcoded colors: Replace with `var(--color-*)` tokens
4. For banned fonts: Replace with Lora/Nunito/IBM Plex Mono
5. For old animations: Replace with `animate-hs-*` classes
6. Verify with `pnpm type-check && pnpm lint`

## Components to Check

Priority components for visual consistency:
1. `components/ui/StatusIndicator.tsx` - Status dot animations
2. `app/page.tsx` - Landing page hero
3. `components/landing/StatusDisplayVariants.tsx` - Bento grid card
4. `components/DashboardMonitorCard.tsx` - Monitor cards
5. `app/globals.css` - Token definitions

## Success Criteria

- [ ] No banned fonts in codebase
- [ ] No old animation classes
- [ ] No hardcoded colors in components
- [ ] EmberParticles on landing page hero
- [ ] StatusIndicator uses `animate-hs-ember-pulse`
- [ ] `pnpm type-check` passes
- [ ] `pnpm lint` passes

Signals

Avg rating0.0
Reviews0
Favorites0

Information

Repository
phrazzld/claude-config
Author
phrazzld
Last Sync
3/2/2026
Repo Updated
3/1/2026
Created
2/3/2026

Reviews (0)

No reviews yet. Be the first to review this skill!

Related Skills

firecrawl-build-search

Integrate Firecrawl `/search` into product code and agent workflows. Use when an app needs discovery before extraction, when the feature starts with a query instead of a URL, or when the system should search the web and optionally hydrate result content.

35092

firecrawl-build-onboarding

Get Firecrawl credentials and SDK setup into a project. Use when an application needs `FIRECRAWL_API_KEY`, when an agent should add Firecrawl to `.env`, when the user wants to authenticate Firecrawl for app code, or when choosing the first SDK and docs for a new Firecrawl integration. This skill includes its own browser auth flow, so it does not depend on the website onboarding skill.

35092

firecrawl-build

Integrate Firecrawl into application code whenever a product, agent, or workflow needs web data inside the app — web search, live search results, page scraping, structured extraction, or browser interaction. Use when building any feature that needs data from the web in code, even if the user does not mention Firecrawl explicitly and only describes wanting web data, website content, search, scraping, or interaction in an application. Trigger for Firecrawl requests, "fire girl" shorthand, and generic app-level web-data needs that should map to `/scrape`, `/search`, or `/interact`. Do not use this skill for one-off terminal-only web tasks during the current session; use `firecrawl/cli` for those.

35092

firecrawl-build-interact

Integrate Firecrawl `/interact` into product code for dynamic pages and browser actions after scraping. Use when a feature needs clicks, form fills, pagination, authentication-aware flows, or other multi-step interactions that plain `/scrape` cannot complete.

35092

Related Guides