modern-patterns-audit
Installation
SKILL.md
Modern Patterns Audit Skill
Analyzes your starter scripts against modern Unity development practices and identifies gaps.
What This Does
Evaluates starter scripts for:
- Input System - Are scripts ready for modern Input System (not legacy Input)? Do they support rebindable controls?
- Async/Await Patterns - Are coroutines replaceable with modern async/await? Identifies patterns that should be async
- Dependency Injection - Are systems loosely coupled? Can they be injected rather than hardcoded?
- Memory Optimization - Are pooling patterns in place? Resource cleanup? Proper use of Addressables?
- Architecture Modularity - Can new features plug in cleanly without modifying existing code?