architecture-compliance
Installation
SKILL.md
Architecture Compliance Checker
Automatically verify code compliance with Tetris project architecture rules.
Prohibited Patterns ❌
1. Classes and Enums
// ❌ Prohibited
class GameState { }
enum Direction { UP, DOWN, LEFT, RIGHT }
// ✅ Required
type GameState = { /* ... */ }
type Direction = 'UP' | 'DOWN' | 'LEFT' | 'RIGHT'