feat(v0.3): redesign launch film — editorial style, new features, original score#1
Open
duyet wants to merge 2 commits into
Open
feat(v0.3): redesign launch film — editorial style, new features, original score#1duyet wants to merge 2 commits into
duyet wants to merge 2 commits into
Conversation
…ginal score Redesign the v0.3 launch film to a flat "instrument / editorial" language and fold in the newest features, replacing the previous look and the stock score. Style (cut the AI-slop tells): - flat measurement-grid ground (no breathing radial glow / vignette) - numbered cues, ruled kickers, mask-revealed display titles - flat monospace "spec" tags instead of glass pills - hairline product window with a live-refresh arc (no traffic-light chrome) - persistent film rail (index · progress · domain); confident easeOutExpo motion - removed the Lottie pulse-ring dependency Content / new features: - new Alerts scene (fully rendered browser-notification cards, no screenshot) - SQL Console reframed (multi-query, database tree, dependency graph) - expensive-queries elevated in the montage; trusted-proxy auth in deploy scene - count-up intro stats; fixed the pre-rebrand end-card URL Runtime / build: - data-driven timeline (buildCues) — durations + total derived, exposed as window.__duration; render.mjs reads it and takes Chrome from $CHROME - self-contained: React / ReactDOM / Babel 7 vendored under src/vendor, fonts under src/fonts — renders fully offline, no CDN - original deterministic synth score generator (see v0.3 README § Music) Source only: the re-rendered chmonitor-v03-design-launch.mp4 and src/music.mp3 (both Git LFS) are not included here because this environment's egress policy blocks lfs.github.com, so new LFS objects cannot be uploaded. The film is fully reproducible from this source — `CHROME=... node render.mjs` + the ffmpeg command in v0.3/README.md regenerate the exact MP4 and score. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013cRjpwtrRQiy1cdyPo3zq6
Add .github/workflows/render.yml: on source changes to v0.3/src (or manual dispatch) it regenerates the deterministic score, renders the frames headless, encodes the MP4, and commits the finished Git LFS media (MP4 + music.mp3) back. This closes the loop for environments that can't push LFS objects — the reproducible source lands via PR, CI produces the binaries. Triggers only on source paths (never the media it writes), so it can't loop. - add v0.3/src/scripts/synth-music.mjs (the deterministic music synth; verified byte-identical to the shipped score) - render.mjs writes render-duration.txt so the ffmpeg encode (-t / afade) stays in sync with the data-driven timeline - document the synth command and CI flow in v0.3/README.md; gitignore scratch Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013cRjpwtrRQiy1cdyPo3zq6
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.
What
Redesigns the v0.3 launch film into a flat "instrument / editorial" language, folds in the newest chmonitor features, and replaces the stock music with an original synthesized score. Also makes the film's runtime fully self-contained (no CDN), the timeline data-driven, and adds CI that renders + commits the finished media.
Motivation: "improve the launch video with the new features; redesign, no AI slop, change style and audio."
Style — cutting the AI-slop tells
easeOutBackeverywhereeaseOutExpo, short travel, mask-revealed titlesNew / refreshed features
chmonitor/chmonitor).14 cues (11 numbered features), ~31s.
Runtime / build
buildCues(); start/end (0.15s overlaps) and total are derived and exposed aswindow.__duration.render.mjsreads it, writesrender-duration.txt, and takes the Chrome binary from$CHROME.src/vendor/, Space Grotesk + JetBrains Mono (latin woff2) undersrc/fonts/. Renders fully offline; Pages self-hosts the player. (Babel 8 broke the in-browsertext/babelrunner.)music.mp3is synthesized sample-by-sample (src/scripts/synth-music.mjs: monitor-pulse kick, warm bass, arp, pad over Am–F–C–G) with a soft intro / full body / gentle outro. Deterministic, no stock/AI track.LFS media + CI auto-render
The re-rendered
chmonitor-v03-design-launch.mp4andsrc/music.mp3(both Git LFS) are not in this PR: the environment that produced it blockslfs.github.com, so new LFS objects couldn't be uploaded. To close that gap this PR adds.github/workflows/render.yml, which on any source change tomain(or manual dispatch):scripts/synth-music.mjs(verified byte-identical to the shipped track),render-duration.txt), andIt triggers only on source paths (never the media it writes), so it can't loop. On merge, main's media updates itself — no manual LFS push needed. The rendered MP4 was also shared with the author out-of-band for immediate review. Everything is reproducible locally too (
CHROME=... node render.mjs+ the ffmpeg command inv0.3/README.md).Verification
Docs updated:
v0.3/README.md, rootREADME.md, landing card (index.html), andCLAUDE.mdworkflow notes.🤖 Generated with Claude Code
https://claude.ai/code/session_013cRjpwtrRQiy1cdyPo3zq6