Uh oh!
There was an error while loading. Please reload this page.
Finish the SharpMUTerm rename: README title, icon font, generator - #6
Conversation
These four files were added by PR #3, which branched before the rename existed, so the rename PR could not reach them. They landed on main still carrying the old name -- including the README's <h1>, which made the repository front page announce a name the project no longer uses, two lines above a paragraph using the new one. - README.md: <h1> and logo alt text - assets/fonts/MuGlyph.ttf -> SharpMUTerm.ttf - assets/fonts/README.md - tools/make-glyph-font.py: output path, glyph name, family name The font is regenerated rather than just renamed: a file rename leaves the old family name baked into the binary (nameID 1 and 6 both read MuGlyph). Regenerated via tools/make-glyph-font.py and verified -- family SharpMUTerm, PostScript SharpMUTerm-Regular, glyph `sharpmuterm`, two contours at U+E000, and the rendered glyph matches docs/logo.svg. No code changed; src/ and tests/ are untouched. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in:25 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (3)
Comment |
Uh oh!
There was an error while loading. Please reload this page.
Four files landed on
mainstill carrying the old name. They were added by PR #3, whichbranched before the rename existed, so the rename PR could not reach them.
The visible one: the repository front page announced MuGlyph in its
<h1>, two lines abovea paragraph describing SharpMUTerm.
Changes
README.md<h1>title and logoalttextassets/fonts/MuGlyph.ttf→SharpMUTerm.ttfassets/fonts/README.mdtools/make-glyph-font.pyGLYPH_NAME, family and PostScript namesWhy the font is regenerated, not just renamed
A
git mvleaves the old identity inside the binary. Before:After regenerating through the fixed
tools/make-glyph-font.py:Anyone merging this into their terminal font would otherwise have seen the old family name.
Verification
<path>elements indocs/logo.svg..ttfand confirmed it matchesdocs/logo.svg— correctshape and orientation (the generator flips the Y axis, since SVG is Y-down and fonts are Y-up).
git grep -i muglyphoverREADME.md,assets/, andtools/returns nothing.src/andtests/are untouched, so the 514 tests are unaffected.Also checked while surveying
main, and found correct — no changes needed:docs/PACKAGING.md(publish profiles exist at the paths it names),
docs/SCREENSHOTS.md(the piping form itdocuments is genuinely supported by
ansi_frame_to_image.py),.github/workflows/release.yml(artifact names), the snapshot → SVG pipeline end to end, and every relative link across all
tracked Markdown files.
The remaining old-name references are in
docs/HANDOFF.md, covered by #5, and indocs/superpowers/specs/2026-07-28-sharpmuterm-naming-design.md, where they are the subjectmatter and correct to keep.
🤖 Generated with Claude Code