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 test with expected behavior (RED)
- Create fixtures for test data
- Generate migration
- Implement model to pass tests (GREEN)
- Refactor if needed