-
Notifications
You must be signed in to change notification settings - Fork 0
feat: build educational SoloQ player coach #254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
saggacce
wants to merge
47
commits into
main
Choose a base branch
from
feat/player-coach-paragon-roadmap
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
79ffe7f
feat: add predgg coach data foundation
916e171
fix: bound catalog backfill to recent patches
a0e5173
fix: resolve build catalogs for internal game versions
630ec74
fix: backfill new telemetry during player enrichment
499c4ff
fix: align rating distribution with live schema
277a57e
feat: expose build coach from personal match detail
20e37ae
fix: distinguish final items from ancestors
685218e
feat: surface builds and ancestors in player coach
3510e93
fix: label Pred.gg ancestor slots
aaf5b35
fix: open synced matches without Pred.gg live access
b7b7afd
feat: explain contextual build coaching
de3e3ea
fix: keep build advice role-aware and non-duplicative
e2539ea
test: cover role-aware build advice
18224a8
feat: teach build patterns in weekly coach report
2789a9a
feat: make match build coaching educational
2dfb162
fix: rank build evidence by match impact
744c4a6
fix: compare loadouts against match perk catalog
fcfee90
feat: analyze full build playstyle and tradeoffs
f5c1e05
fix: remove noisy global build classifications
a0d06d3
fix: explain unavailable gold timeline
1eea0aa
fix: preserve gold timeline on match resync
e678ff0
fix: retry public event stream after api key rejection
0f8e5b7
fix: sync public gold timeline separately
4d3d7fe
fix: backfill missing gold timelines in player sync
29c0848
feat: build educational solo queue coach
saggacce a1b9826
feat: add guided replay learning moments
saggacce 9f99030
feat: complete player coach learning workflow
saggacce 3e14263
feat: add traceable coach knowledge foundation
saggacce 44ec138
feat: add adaptive player academy
saggacce 2786c51
fix: keep dropdown options readable in dark theme
saggacce 916d3ad
feat: start player assessment on first visit
saggacce 141452d
feat: make player placement assessment diagnostic
saggacce be38070
feat: expand player knowledge placement
saggacce 51d0c98
feat: add adaptive player progression and live coach safeguards
saggacce 2c4578d
feat: add secure Windows companion shell
saggacce b50f5a2
feat: add local mode OCR and live session lifecycle
saggacce aa5f549
feat: add auditable live training reports
saggacce 348c10b
fix: default private companion to local staging
saggacce 7f6ed5b
feat: add safe visual mode calibration
saggacce b69e231
feat: record conservative live hud observations
saggacce 33e4750
feat: turn live captures into guided replay reviews
saggacce eac9808
feat: expose live detector readiness
saggacce b08c8d4
feat: label overlay detector accuracy
saggacce f6d9502
feat: measure missed overlay events
saggacce e50c64a
fix: unblock companion mode calibration
saggacce 2c7f03a
fix: score OCR confidence on matched mode label
saggacce 9e0bdb0
feat: localize companion mode detection
saggacce File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| name: Windows Companion | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| branches: [main, develop] | ||
| paths: | ||
| - 'apps/companion/**' | ||
| - 'apps/web/src/pages/PlayerAcademyPage.tsx' | ||
| - 'apps/web/src/types/companion.d.ts' | ||
| - 'apps/web/src/services/liveModeOcr.ts' | ||
| - 'apps/web/src/services/liveHudObservation.ts' | ||
| - 'apps/web/src/services/modeTemplateDetector.ts' | ||
| - 'apps/api/src/routes/player-learning.ts' | ||
| - 'package-lock.json' | ||
| - '.github/workflows/companion.yml' | ||
| push: | ||
| branches: [main] | ||
| paths: | ||
| - 'apps/companion/**' | ||
| - 'apps/web/src/pages/PlayerAcademyPage.tsx' | ||
| - 'apps/web/src/types/companion.d.ts' | ||
| - 'apps/web/src/services/liveModeOcr.ts' | ||
| - 'apps/web/src/services/liveHudObservation.ts' | ||
| - 'apps/web/src/services/modeTemplateDetector.ts' | ||
| - 'apps/api/src/routes/player-learning.ts' | ||
| - 'package-lock.json' | ||
| - '.github/workflows/companion.yml' | ||
|
|
||
| jobs: | ||
| package-windows: | ||
| name: Build Windows installer | ||
| runs-on: windows-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: 20 | ||
| cache: npm | ||
|
|
||
| - name: Install dependencies | ||
| run: npm ci | ||
|
|
||
| - name: Type-check and build companion | ||
| run: npm --workspace @predecessor/companion run build | ||
|
|
||
| - name: Package Windows installer | ||
| run: npm --workspace @predecessor/companion run package:win | ||
|
|
||
| - name: Upload unsigned test installer | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: RiftLine-Companion-Windows-unsigned | ||
| path: apps/companion/release/RiftLine-Companion-*.exe | ||
| if-no-files-found: error | ||
| retention-days: 14 |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,7 @@ node_modules/ | |
| # Build outputs | ||
| dist/ | ||
| build/ | ||
| release/ | ||
| *.js.map | ||
|
|
||
| # Environment | ||
|
|
||
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the newly created Docker database from the preceding command, this applies the entire migration history from scratch, but that history does not contain
CREATE TABLEstatements for several current models. For example,20260525000001_sprint_roster_status_user_language/migration.sqlimmediately runsALTER TABLE "User", while no earlier migration createsUser, so the documented local setup aborts before Prisma generation or seeding. Retain the prior schema-push bootstrap or add a complete baseline migration before recommending this command.Useful? React with 👍 / 👎.