game-design
The mechanic-level evaluation toolkit — apply the 5-Component Framework (Clarity, Motivation, Response, Satisfaction, Fit) to any individual mechanic. Use when designing or evaluating a single mechanic, reviewing whether a feature pulls its weight, debugging why a specific action feels off, comparing alternative implementations of the same mechanic, or doing a first-pass critique on a player-facing feature. For session-level pacing or emotional arcs see experience-design; for moment-to-moment juice see game-feel; for system-of-systems interactions see systems-design. This skill is the per-mechanic lens.
What this skill does
# Game Design Framework
**Purpose:** Central evaluation framework for game mechanics. Use this as the **first pass** on any feature — the 5-Component Filter identifies what's weak, then specialized skills provide deep guidance.
**Core principle:** Mechanics are code. Gameplay is the player's *experience* of that code. The goal is not to implement features, but to implement **Relevance**.
**Influences:** The 5-Component Framework synthesizes principles from experience engineering theory, cognitive UX research, and systematic balance methodology.
---
## Quick Reference: The 5-Component Filter
Before implementing or critiquing ANY game feature, evaluate against:
| Component | Core Question | Quick Check |
|-----------|---------------|-------------|
| **Clarity** | Can the player predict what will happen? | Telegraph exists before resolution |
| **Motivation** | Does the player care about the outcome? | Outcome affects persistent state |
| **Response** | Do player inputs matter? | Actions can be buffered/cancelled meaningfully |
| **Satisfaction** | Does success feel earned? | Multiple feedback channels fire (visual + audio minimum) |
| **Fit** | Does it match the game's identity? | Weight, timing, audio match entity type |
**Conflict priority:** Response > Clarity > Satisfaction > Fit > Motivation
For detailed evaluation rubrics, consult `references/5-component-rubric.md`.
---
## Operating Protocol
### 1. Before Implementation
1. **Check system context** — Which system does this feature participate in? What other systems does it interact with? (See **systems-design** for interaction analysis)
2. Identify active domain(s) from `references/domain-guide.md`
3. Evaluate against the 5-Component Filter
4. Complete the State Machine Checklist if the feature involves player state changes
5. Check the Numbers Policy before proposing any values
### 2. Numbers Policy (Mandatory)
When proposing ANY numeric value (timing windows, costs, speeds, damage, etc.), choose ONE:
**Option A — Source-backed:**
- Cite a verifiable reference (GDC talk, postmortem, published analysis)
- Example: "Coyote time of 80-150ms (Source: Celeste postmortem, GDC 2018)"
**Option B — Starting value with test plan:**
- Label explicitly as "Starting value"
- Include: micro test plan, pass/fail metric, adjustment direction if it fails
- Example: "Starting value: 120ms. Test: Can players make intended jumps 9/10 times? If fail rate >20%, increase by 30ms increments."
**Never** claim "industry standard" or "common practice" without a source.
### 3. Assumption Labeling
When critical information is missing, state explicitly:
```
ASSUMPTION: [what you're assuming]
IMPACT: [why it matters to the design]
IF WRONG: [failure mode]
VALIDATE: [how to check quickly]
```
### 4. Research Triggers
Search before proposing when:
- About to claim "best practice" or "standard approach"
- Balance/economy values need benchmarks
- Accessibility requirements apply
- Comparative references needed from similar games
If search unavailable, convert to "Assumption + Test Plan" format.
---
## State Machine Checklist
For ANY feature that changes player state (movement abilities, combat actions, status effects):
| Property | Must Define |
|----------|-------------|
| **Entry conditions** | What states can transition INTO this? |
| **Exit conditions** | What ends this state? (timer, input, external event) |
| **Interruptibility** | What can cancel this? (damage, player input, other abilities) |
| **Chained actions** | What states can this transition TO? |
| **Resource cost** | What is consumed on entry? On sustain? |
| **Edge cases** | Behavior on: slopes, ceilings, moving platforms, during hitstun, at resource zero |
---
## Debugging Protocol
When told "it feels wrong/boring/clunky," diagnose in order:
| Symptom | Check First | Before Tuning Numbers | Deep Dive |
|---------|-------------|----------------------|-----------|
| "I didn't know that would happen" | Clarity | Add telegraph, audio cue, UI indicator | **player-ux** |
| "I don't care" | Motivation | Connect to progression, increase stakes | **experience-design** |
| "It feels laggy" | Response | Add buffering, allow cancels, reduce lockouts | **game-feel** |
| "It feels weak" | Satisfaction | Add feedback channels (minimum 2) | **game-feel** |
| "It doesn't fit" | Fit | Adjust timing, weight, audio texture | **game-feel** |
| "It's not balanced" | Balance | Check cost curves, dominant strategies | **game-balance** |
| "It's boring" | Engagement | Check loop, pacing, meaningful choice | **experience-design** |
| "It's too hard/easy" | Progression | Check flow channel, difficulty curve | **progression-systems** |
**Rule:** Do not tune damage/timing numbers until Clarity and Response are verified as not the root cause.
---
## Playtest Requirements
Every significant feature must include scenarios for:
1. **New player test:** Can they infer the rules without being told?
2. **Stress test:** Spam inputs, boundary conditions, edge cases
3. **Skill test:** Can mastery improve outcomes meaningfully?
4. **Abuse test:** Can this be exploited to skip content or trivialize risk?
5. **Readability test:** Can an observer understand what happened and why?
---
## Red Flags (Stop and Clarify)
- State machine transitions are undefined ("works from any state")
- Multiplayer authority is unspecified
- Economy/currency feature has no balance targets
- Camera behavior during action is undefined
- Feature scope is actually 3+ features in disguise
---
## Definition of Done
- [ ] 5-Component Filter evaluated and documented
- [ ] State Machine Checklist completed (if applicable)
- [ ] Edge cases enumerated and handled
- [ ] Minimum 2 feedback channels for significant actions
- [ ] Playtest script written and smoke-tested
- [ ] Numbers justified per Numbers Policy
---
## Output Structure
When proposing or critiquing a feature:
1. **Player Goal & Context** — What is the player trying to do and why?
2. **System Rules** — Core behavior, failure conditions, edge cases
3. **5-Component Evaluation** — Which components are strong/weak?
4. **Risks & Abuse Cases** — What could break or be exploited?
5. **Playtest Scenarios** — How to validate quickly
6. **Tuning Priority** — What to adjust first if it doesn't feel right
---
## Related Skills
**Upstream** — before evaluating individual mechanics:
| Area | Skill | When to Use |
|------|-------|-------------|
| Concept & vision | **game-vision** | Pillars, target experience, core loop crystallization, MVG |
| System architecture | **systems-design** | System interactions, emergence analysis, possibility space |
**Downstream** — after the 5-Component Filter identifies a weakness:
| Area | Skill | When to Use |
|------|-------|-------------|
| Balance & economy | **game-balance** | Cost curves, dominant strategies, economy sinks/sources |
| Economy architecture | **economy-design** | Currency design, sink/source modeling, inflation, LiveOps |
| Engagement & pacing | **experience-design** | Core loops, emotion layering, "why isn't this fun?" |
| Player motivation | **motivation-design** | Reward psychology, reinforcement schedules, retention |
| Cognitive load & UI | **player-ux** | Perception/attention/memory, Gestalt UI, onboarding |
| Difficulty & leveling | **progression-systems** | Power curves, flow channel, XP math, unlock pacing |
| Spatial & AI design | **encounter-design** | Combat spaces, enemy behavior, environmental flow |
| Story & quests | **narrative-design** | Quest structure, branching narrative, narrative as system |
| Feedback & juice | **game-feel** | Juice checklists, timing, "why does this feel bad?" |
| Audio systems | **audio-design** | Sound as information system, adaptive music, spatial audio |
| Multiplayer | **multiplayer-design** | Competitive balance, co-op, social systems, matchmaking |
| Accessibility | **accessibility-design** | Four pillars (visual, auditory, motor, cogRelated in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.