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.
This commit is contained in:
Rijad Zuzo
2026-05-17 00:17:20 +02:00
parent dab50abf0e
commit f655adfbea
212 changed files with 24178 additions and 15895 deletions
+15
View File
@@ -0,0 +1,15 @@
# 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.