feature-module-architect
Installation
SKILL.md
Feature Module Architect
Quick Start
This skill scaffolds feature modules following project architecture:
- Feature structure: Standard directory layout with components, hooks, services, types, utils
- File size limit: 500 LOC maximum per file (hard limit)
- Colocation: Keep related code together within feature directory
- Public API: Export only what other features need via
index.ts
When to Use
- Creating new feature modules
- Refactoring files exceeding 500 LOC
- Organizing scattered feature code
- Need feature architecture guidance