From bbeierle12-skill-mcp-claude
Game building mechanics case studies and decision frameworks. Use when designing building systems, evaluating trade-offs, or learning from existing games. Reference-only skill with detailed analysis of Fortnite, Rust, Valheim, Minecraft, No Man's Sky, and Satisfactory building systems.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin bbeierle12-skill-mcp-claudeThis skill uses the workspace's default tool permissions.
Detailed analysis of building systems from successful games, plus decision frameworks for new projects.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Detailed analysis of building systems from successful games, plus decision frameworks for new projects.
| Game | Building Focus | Physics | Scale | Key Innovation |
|---|---|---|---|---|
| Fortnite | Combat/action | Arcade | Small | Edit system, speed |
| Rust | Survival/raids | Heuristic | Large | Tool Cupboard, decay |
| Valheim | Exploration | Heuristic | Medium | Stability from ground |
| Minecraft | Creativity | None | Infinite | Voxel simplicity |
| No Man's Sky | Base building | Minimal | Medium | Snap points, free place |
| Satisfactory | Factory | Grid-based | Large | Hybrid grid/free |
Use case studies when making design decisions such as which physics model to implement, how to handle multiplayer building, choosing between grid and free placement, and deciding on decay/upkeep systems. The analyses provide concrete examples of trade-offs and their outcomes.
See references/ for detailed documentation covering game-by-game breakdowns of building mechanics and performance strategies, decision matrices for common architectural choices, anti-patterns identified from games that struggled, and architectural recommendations organized by game genre.
For quick decisions, use the matrices in game-analyses.md:
Physics Mode Selection: Are you building a survival game where building is about shelter? Use heuristic physics like Rust or Valheim. Is building core to moment-to-moment combat? Use arcade physics like Fortnite. Is engineering challenge the point? Consider realistic physics with caution since Medieval Engineers showed this approach frustrates most players.
Multiplayer Architecture: Competitive and PvP games require server-authoritative building with latency accepted as the cost of security. Cooperative games can use client prediction with server reconciliation for responsive feel. Single-player can use fully client-side for maximum responsiveness.
Persistence Strategy: Long-running servers need decay and cleanup. Rust's model combines gameplay balance through resource sinks with server health through automatic cleanup. Without decay, servers accumulate abandoned bases until performance degrades.
Rust demonstrates that decay serves dual purposes: gameplay balance by forcing maintenance, and server health by cleaning abandoned structures. Valheim shows that "magic force from ground" stability is more intuitive than realistic physics. Fortnite proves that speed and simplicity trump realism for action games. Satisfactory's hybrid approach of grid for structures plus free placement for conveyors satisfies both organized and creative builders.
This reference skill pairs with implementation skills that provide working code for the patterns discussed here. Use performance-at-scale for spatial indexing, structural-physics for stability systems, multiplayer-building for networking, terrain-integration for foundation systems, decay-upkeep for maintenance systems, and builder-ux for user experience patterns.