SKILL Instructions
claude
cursor
#android
#room
#database
#sqlite
About
Best practices for defining Room entities, DAOs, migrations, and reactive queries returning Flow.
Metadata (SKILL.md frontmatter)
- name
- android-room-database
- version
- 1.0.0
Instructions
Room Database
- Entities:
@PrimaryKey(autoGenerate = true)for local ids. - DAOs return
Flow<List<T>>for observable reads;suspendfor writes. - Always write explicit
Migrationobjects; never usefallbackToDestructiveMigration()in prod. - Wrap multi-step writes in
@Transaction.