# Quick-Dev Checklist (Game Development) ## Before Implementation - [ ] Context loaded (tech-spec, prototype, or user guidance) - [ ] Files to modify identified - [ ] Game systems affected understood - [ ] Patterns and conventions identified ## Implementation - [ ] All tasks completed - [ ] Code follows existing patterns - [ ] Error handling appropriate - [ ] Performance considerations addressed ## Game-Specific Checks - [ ] No allocations in hot paths (game loop, update, render) - [ ] Object pooling used where appropriate - [ ] Input feels responsive - [ ] Visual/audio feedback present - [ ] Frame rate maintained at target ## Testing - [ ] Game runs without errors - [ ] Feature works as specified - [ ] Related systems still work (no regressions) - [ ] Manual playtest completed ## Completion - [ ] Acceptance criteria satisfied - [ ] Tech-spec updated (if applicable) - [ ] Summary provided to user - [ ] Performance acceptable