modern-patterns-audit
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?
Activation Triggers
This skill activates when you:
- Ask about "modern patterns" or "modern practices"
- Request an "Input System audit" or "async/await review"
- Ask if your code is "up to date" or "modern"
- Ask about "dependency injection" or "decoupling"
Output Format
Returns analysis organized by pattern:
- Input System Readiness - How to adapt for modern Input System
- Async/Await Opportunities - Where to use async instead of coroutines
- DI Improvements - How to decouple systems
- Memory Safety Enhancements - Pooling and resource optimization suggestions
- Action Items - Prioritized changes to modernize the code
During Development
Use this to guide your code generation during the jam - all generated features will follow these modern patterns.
More from karchtho/my-claude-marketplace
ui-ux-design
UI/UX design principles, design systems, accessibility, responsive design, and user experience best practices. Activates when discussing layouts, styling, design decisions, user flows, or visual design.
12nginx-configuration
Configure Nginx web server for high-performance reverse proxy, load balancing, SSL/TLS, caching, and API gateway functionality. Master production deployments, security headers, and monitoring.
11docker-compose-creator
Design multi-container applications with Docker Compose. Covers service orchestration, networking, volumes, environment configuration, health checks, and production deployment patterns. Use when defining local development stacks or deploying multi-service applications.
10dockerfile-generator
Generate production-ready Dockerfiles with best practices for various tech stacks. Covers multi-stage builds, optimization, security, and language-specific patterns (Node.js, Python, Go, Rust, Java). Use when creating new application containers.
8docker-container-basics
Docker containerization fundamentals. Master container lifecycle, image management, networking, volumes, resource limits, and production deployment patterns. Use when building, running, debugging containers or implementing container orchestration.
8feature-architect
Design game feature architecture before writing code. Use when planning a new feature system, deciding on component structure, or mapping out how a feature integrates with existing systems.
6