Add streak freeze and repair#19
Merged
Merged
Conversation
added 7 commits
June 5, 2026 15:53
StreakStateManager ties StreakReconciler to persisted state + review logs. StreakProvider now combines review logs with frozen days so gaps covered by freeze tokens count toward the consecutive streak.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
StreakCalculatoris unchanged: a frozen day is fed to it as just another active day. All the new statefulness lives in one reconciler.How it works
StreakReconciler(pure): decides which missed days become frozen, earns freezes (idempotent, capped), and computes repair eligibility.StreakStatepersisted in Room (single-row table, migration v2→v3) and synced as a per-user Firestore doc via the existingSyncManager(LWW).StreakStateManagerties the reconciler to the repos; reconcile runs on app foreground + session finish (never inside a Flow).StreakProviderunions frozen days into the streak; the Today header shows a ❄️+count chip and a "Repair your N-day streak" banner; the session summary surfaces freeze count + repair.Test Plan
./gradlew :app:testDebugUnitTest— green (new:StreakReconcilerTest9,StreakStateManagerTest,StreakStateRepositoryTest,SyncManagerTeststreak LWW,StreakProviderTestunion,StudyQueueViewModelTestfreeze/repair exposure)./gradlew :app:assembleDebug— debug APK builds./gradlew :app:compileDebugAndroidTestKotlin— androidTest compilesMIGRATION_2_3SQL verified character-for-character against Room's generated schema🤖 Generated with Claude Code