game-mechanics-design
Installation
SKILL.md
Game Mechanics Design
Use this skill to make gameplay systems explicit enough for an AI coding agent to implement, test, and tune. The mechanic spec should separate rule structure from presentation so the same idea can be prototyped cheaply before polish.
Source Traceability
Primary source: The Art of Game Design: A Book of Lenses, Third Edition by Jesse Schell, especially chapters 12-14 on mechanics, balance, and puzzles. The workflow is transformed and paraphrased.
Supporting source: MDA, which helps distinguish coded mechanics from the player-visible dynamics and aesthetic experience they produce.
Workflow
- Identify the core loop: player input, system response, feedback, reward or consequence, and next decision.
- Specify mechanics across space, time, objects, attributes, state, actions, rules, goals, skill, chance, and information visibility.
- Predict dynamics: dominant strategies, degenerate loops, emergent interactions, pacing, and failure states.
- Define player mastery: what starts simple, what becomes expressive, and how players improve.
- Produce implementation-ready rules with test cases and tuning parameters.