v1.1 phase 1: static next.js showcase frontend - #17
Merged
Conversation
The Python distribution-packaging block's bare lib/ (and lib64/) matched the JS app's web/lib dir at any depth, silently excluding web/lib/{scores,seeds,utils}.ts from version control. Anchor both to the repo root; no root-level lib/ exists, so nothing else changes.
Next.js 16 (App Router) + TypeScript + Tailwind v4 + hand-authored shadcn-style primitives. output: "export" => a fully static site with no server runtime: it renders only the committed web/public/seeds/*.json (DECISIONS.md 2026-05-29 — static-precompute), never the live backend. - seed gallery (8 genre heroes + 2 vibe-steered variants) and per-seed results view - result cards: rank, Deezer track-PAGE link (invariant #2), source chips + high-consensus, CLAP-reranked badge, per-row rationale, expandable score breakdown, view-raw-JSON dialog - four-axis score breakdown with correct, distinct per-axis semantics (raw cosine + fixed band for audio/vibe, [0,1] within-batch for combined, unbounded RRF for cultural) - static coverage funnel + system-transparency/provenance panel - types/recommendation.ts mirrors api/schemas.py + the export-only coverage/meta keys; every nullable field guarded
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.
Phase 1 of the v1.1 showcase: the static Next.js app that renders the frozen seed exports from PR #16, with no live backend (output: export). Next 16 App Router + Tailwind v4 + hand-authored shadcn-style primitives; a seed gallery and per-seed results view whose cards carry the Deezer track-page link, source chips, CLAP-reranked badge, per-row rationale, and an expandable four-axis score breakdown that renders each score with its real semantics (raw cosine for audio/vibe, [0,1] within-batch for combined, unbounded RRF for cultural) instead of a misleading uniform percentage. It also anchors the root .gitignore python lib/ rule so web/lib (the score model + loader) isn't silently ignored, and marks Phase 0 shipped in the roadmap. next build + tsc + eslint all green; 12 static routes.