Problem
The brand rename from "Cat Cafe" to "Clowder AI" was partially applied — desktop/package.json productName and main.js window titles were updated, but many user-facing files still reference the old name.
Related: #1104 (exe name mismatch in Inno Setup, a subset of this issue)
Affected Files & Changes
Critical (functional breakage)
| File |
Line(s) |
Current |
Should Be |
desktop/installer/cat-cafe.iss |
17 |
MyAppName "Cat Cafe" |
"Clowder AI" |
desktop/installer/cat-cafe.iss |
23 |
MyAppPublisher "Cat Cafe" |
"Clowder AI" |
desktop/installer/cat-cafe.iss |
25 |
MyAppExeName "Cat Cafe.exe" |
"Clowder AI.exe" |
desktop/installer/cat-cafe.iss |
24 |
URL points to old cat-cafe repo |
Update to clowder-ai |
desktop/installer/cat-cafe.iss |
182 |
"Configuring Cat Cafe..." |
"Configuring Clowder AI..." |
desktop/installer/cat-cafe.iss |
204 |
Stop-Process -Name 'Cat Cafe' |
'Clowder AI' |
desktop/scripts/start-portable.bat |
59 |
start "" "...\Cat Cafe.exe" |
"Clowder AI.exe" — portable users also broken |
desktop/package.json |
19 |
appId: "ai.catcafe.desktop" |
"ai.clowderai.desktop" |
desktop/package.json |
21 |
artifactName: "CatCafe-..." |
"ClowderAI-..." |
User-facing text (cosmetic but important)
| File |
Line(s) |
Change |
desktop/splash.html |
5, 34 |
<title> and <h1> → "Clowder AI" |
desktop/scripts/start-portable.bat |
4,16,27,38,57,58 |
Display text and comments |
desktop/scripts/post-install-offline.ps1 |
3,193,197 |
Completion messages |
Documentation
| File |
Line(s) |
Change |
desktop/README.md |
1,3,151,153,218,239,240 |
Title, path examples, app names |
docs/ROADMAP.md |
8 |
Section title |
What NOT to change
- npm package names (
cat-cafe-desktop, @cat-cafe/*) — internal identifiers
- Directory names (
.cat-cafe/, cat-cafe-skills/) — runtime paths
- Git remote names and code-level identifiers
Root Cause
Brand rename to "Clowder AI" updated Electron config but not installer scripts, launcher, splash screen, or docs.
[宪宪/claude-opus-4-6 🐾]
Problem
The brand rename from "Cat Cafe" to "Clowder AI" was partially applied —
desktop/package.jsonproductNameandmain.jswindow titles were updated, but many user-facing files still reference the old name.Related: #1104 (exe name mismatch in Inno Setup, a subset of this issue)
Affected Files & Changes
Critical (functional breakage)
desktop/installer/cat-cafe.issMyAppName "Cat Cafe""Clowder AI"desktop/installer/cat-cafe.issMyAppPublisher "Cat Cafe""Clowder AI"desktop/installer/cat-cafe.issMyAppExeName "Cat Cafe.exe""Clowder AI.exe"desktop/installer/cat-cafe.isscat-caferepoclowder-aidesktop/installer/cat-cafe.iss"Configuring Cat Cafe...""Configuring Clowder AI..."desktop/installer/cat-cafe.issStop-Process -Name 'Cat Cafe''Clowder AI'desktop/scripts/start-portable.batstart "" "...\Cat Cafe.exe""Clowder AI.exe"— portable users also brokendesktop/package.jsonappId: "ai.catcafe.desktop""ai.clowderai.desktop"desktop/package.jsonartifactName: "CatCafe-...""ClowderAI-..."User-facing text (cosmetic but important)
desktop/splash.html<title>and<h1>→ "Clowder AI"desktop/scripts/start-portable.batdesktop/scripts/post-install-offline.ps1Documentation
desktop/README.mddocs/ROADMAP.mdWhat NOT to change
cat-cafe-desktop,@cat-cafe/*) — internal identifiers.cat-cafe/,cat-cafe-skills/) — runtime pathsRoot Cause
Brand rename to "Clowder AI" updated Electron config but not installer scripts, launcher, splash screen, or docs.
[宪宪/claude-opus-4-6 🐾]