pygame-patterns
Installation
SKILL.md
Pygame Patterns Skill
Provides tested, verified pygame patterns from this project. Use when implementing new entities or systems to ensure consistency and correctness.
Core Principles
- Frame-Independent Movement: All movement uses delta_time for consistent speed regardless of framerate
- Verified Patterns Only: All patterns come from working code in this project
- Config-Driven: Use centralized config.py dataclasses, never hardcode values
- Angle Conventions: 0° = right, 90° = up, 180° = left, 270° = down (pygame Y-axis is inverted)
Available Patterns
Related skills
More from ikatechis/claude-agentic-mastery
game-artist
Manage game assets with Kenney-ONLY approach. Search 36,000+ Kenney CC0 assets. If asset not found, ask user to find/generate manually. Ensure style consistency with flat/vector Kenney aesthetic. Auto-triggers on asset requests.
30python-testing
Generate pytest tests for Python modules with parametrization, shared fixtures in conftest.py, and minimal mocking. Use when creating unit tests, test suites, or improving test coverage. Follows 1-1 file correspondence and real object testing principles.
7