Add in-memory telemetry, Hilt DI, recommendations UI, fake repo and unit tests#4
Open
danoff wants to merge 1 commit into
Open
Add in-memory telemetry, Hilt DI, recommendations UI, fake repo and unit tests#4danoff wants to merge 1 commit into
danoff wants to merge 1 commit into
Conversation
danoff
pushed a commit
that referenced
this pull request
May 16, 2026
Formalize the 10 GitHub issues into 3 epics and 11 stories with acceptance criteria derived from the PRD. Mark issues #1 and #4 (Sprint 1 work) as done. Seed sprint-status.yaml so bmad-sprint-status, bmad-create-story, and bmad-dev-story have a machine-readable tracker. Epic 1: Core Discovery Loop (mobile) — in-progress 1-1 search-first home + telemetry: done 1-2 recommendation card UI: done 1-3 back-navigation results→home: backlog (P0) 1-4 feedback capture: backlog (P0) 1-5 need-better-match control: backlog (P0) 1-6 accessibility validation: backlog (P0) Epic 2: Backend Matching Service (oer-matching-api) — backlog 2-1 scoring engine v1 2-2 remix license hard filter 2-3 ticket-first fallback endpoint Epic 3: Trust, Resilience, Enrichment — backlog 3-1 trust panel v1 3-2 offline/cache resilience https://claude.ai/code/session_0167JUTdprg8pTxqsp9w5wB2
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.
Motivation
Description
TelemetryEvent,TelemetryRepository, and anInMemoryTelemetryRepositoryimplementation and bind it via a newAppModuleusing Hilt.Appapplication class, updatingAndroidManifest.xml, annotatingMainActivitywith@AndroidEntryPoint, and converting view models to@HiltViewModel.FakeOerRecommendationRepository, update navigation to safely encode query (Uri.encode) and move results consumption intoResultsViewModelusingSavedStateHandle.RecommendationCardUI and actions (Use This,Need Better Match,Helpful/Not helpful) and record telemetry on view, submit, impressions, opens, ratings, and better-match requests.Testing
InMemoryTelemetryRepositoryinInMemoryTelemetryRepositoryTest, which verify ordering and max-size behavior. Tests passed.HomeViewModelTestto assertHomeViewed,SearchFocused, andSearchSubmittedevents and blank-submit behavior; tests passed.ResultsViewModelTestto assertResultsViewed, impressions,SearchFailed, and action telemetry events; tests passed.Codex Task