architecture-review-checklist
Installation
SKILL.md
Architecture Review Checklist
1. TASK Compliance
- Coverage: All Use Cases mapped to components?
- Constraints: All non-functional requirements met?
2. Data Model (CRITICAL)
- Completeness: All entities, attributes, relationships defined?
- Types: Correct data types chosen? (e.g., TIMESTAMP vs VARCHAR)
- Indexes: Defined for frequent queries?
- Migrations: Plan for existing data exists?
- Business Rules: Constraints enforced (UNIQUE, NOT NULL)?
3. System Design
- Simplicity: Least moving parts? (No overengineering).
- Style: Pattern matches problem (Monolith vs Microservices).
- Boundaries: Clear segregation of duties (SRP).