rails-model-generator
Installation
SKILL.md
Rails Model Generator (TDD Approach)
Overview
This skill creates models the TDD way:
- Define requirements (attributes, validations, associations)
- Write model spec with expected behavior (RED)
- Create factory for test data
- Generate migration
- Implement model to pass specs (GREEN)
- Refactor if needed