spring-data-jpa
Installation
SKILL.md
Working with JPA Entities
When the task involves creating or modifying a JPA entity:
- If entity conventions have not been detected yet in this conversation — check memory for previously saved conventions first. If found in memory, reuse them. Otherwise read
references/entity-conventions.mdand follow all substeps there to detect project conventions. - Read
references/entity-rules-impl.mdand follow the rules there when writing or modifying the entity
Reviewing JPA Patterns
When the user asks to review JPA patterns, conventions, or code quality in the project:
- Detect current conventions by following
references/entity-conventions.md(steps 1.1–1.5). - Compare the detected conventions against the best practices defined in
references/entity-rules-impl.md. For each deviation, output a recommendation in the format:
### JPA Review
Related skills