integration-validator
Installation
SKILL.md
Integration Validator Skill
Ensures new code integrates properly with existing systems and starter scripts.
What This Does
Validates integration between:
- New Code ↔ Starter Scripts - Does the new feature work with GameManager, managers, utilities?
- Manager Dependencies - InputManager → PlayerController, AudioManager → sound events, etc.
- Initialization Order - Do things initialize in the right sequence?
- Circular Dependencies - Are there any dependency cycles?
- Reference Integrity - Will all serialized fields and connections work?
- Event/Callback Chains - Will events fire in correct order?
- Pooling Integration - If new code spawns objects, are they pooled correctly?
- Async Coordination - Do async operations coordinate without race conditions?