Files
rely/lib/app/data/README.md
T
Rijad Zuzo f655adfbea feat: add local-first private AI digest workflow
Migrate app code into canonical feature slices, add phone-only AI digest scheduling and review, wire local notification/background task support, and cover the flow with tests.
2026-05-17 00:17:20 +02:00

768 B

App Data

This folder contains the prototype app store and persistence adapters.

relationship_repository.dart is the single local-first write boundary for the prototype. It now delegates behavior into part files so the code is grouped by slice instead of one giant file:

  • relationship_repository_people.dart: people CRUD and profile merging.
  • relationship_repository_share.dart: share intake, inbox, and person resolution.
  • relationship_repository_activity.dart: captures, facts, ideas, reminders, and task toggles.
  • relationship_repository_sync.dart: sync envelopes and remote-change application.

If you are changing persistence behavior, start with the matching part file and only touch the root repository file when the shared lifecycle changes.