What problem does it solve?
This Skill provides a structured approach to building offline-first data pipelines by integrating Store5 with Room as the SourceOfTruth, enabling cache-first reads, deterministic writes, and robust data mapping across layers.
Core Features & Use Cases
- Store5 integration with Room as the SourceOfTruth for reactive, offline-capable data storage
- Pattern guidance for reader/writer/delete operations and entity mapping with composite keys
- Flow-based DAO updates and cache invalidation to support deterministic pagination and offline-first behavior
- Clear handling of all StoreReadResponse states (Initial, Loading, Data, Error, NoNewData) to ensure stable UX
Quick Start
Use this skill to configure a Store5 + Room bridge by defining a Store with a Fetcher for network data, a SourceOfTruth backed by Room DAOs, and a writer that persists fetched data back to Room. Implement composite keys to support shared content across categories, and observe updates via Flow while handling cache-first and fresh fetch scenarios.