@@ -184,7 +184,7 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
184184 <div class =" code-line comment" id =" oneliner-comment" ># Works everywhere. Installs everything. You're welcome. 🦞</div >
185185 <div class =" code-line cmd" >
186186 <span class =" code-prompt" >$</span >
187- <span class =" os-cmd" >curl -fsSL https://clawd .bot/install.sh | bash</span >
187+ <span class =" os-cmd" >curl -fsSL https://molt .bot/install.sh | bash</span >
188188 <button class =" copy-line-btn" data-cmd =" oneliner" title =" Copy" >
189189 <svg class =" copy-icon" viewBox =" 0 0 24 24" fill =" none" stroke =" currentColor" stroke-width =" 2" ><rect x =" 9" y =" 9" width =" 13" height =" 13" rx =" 2" /><path d =" M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" /></svg >
190190 <svg class =" check-icon" viewBox =" 0 0 24 24" fill =" none" stroke =" currentColor" stroke-width =" 2" style =" display:none" ><polyline points =" 20 6 9 17 4 12" /></svg >
@@ -216,7 +216,7 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
216216 <div class =" code-line comment" ># For those who read source code for fun</div >
217217 <div class =" code-line cmd" >
218218 <span class =" code-prompt" >$</span >
219- <span class =" os-cmd-hackable" >curl -fsSL https://clawd .bot/install.sh | bash -s -- --install-method git</span >
219+ <span class =" os-cmd-hackable" >curl -fsSL https://molt .bot/install.sh | bash -s -- --install-method git</span >
220220 <button class =" copy-line-btn" data-cmd =" hackable-installer" title =" Copy" >
221221 <svg class =" copy-icon" viewBox =" 0 0 24 24" fill =" none" stroke =" currentColor" stroke-width =" 2" ><rect x =" 9" y =" 9" width =" 13" height =" 13" rx =" 2" /><path d =" M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" /></svg >
222222 <svg class =" check-icon" viewBox =" 0 0 24 24" fill =" none" stroke =" currentColor" stroke-width =" 2" style =" display:none" ><polyline points =" 20 6 9 17 4 12" /></svg >
@@ -281,12 +281,12 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
281281 pnpm: 'pnpm add -g clawdbot'
282282 };
283283
284- const windowsPsCmd = 'iwr -useb https://clawd .bot/install.ps1 | iex';
285- const windowsPsBetaCmd = '& ([scriptblock]::Create((iwr -useb https://clawd .bot/install.ps1))) -Tag beta';
286- const windowsCmdCmd = 'curl -fsSL https://clawd .bot/install.cmd -o install.cmd && install.cmd && del install.cmd';
287- const windowsCmdBetaCmd = 'curl -fsSL https://clawd .bot/install.cmd -o install.cmd && install.cmd --tag beta && del install.cmd';
284+ const windowsPsCmd = 'iwr -useb https://molt .bot/install.ps1 | iex';
285+ const windowsPsBetaCmd = '& ([scriptblock]::Create((iwr -useb https://molt .bot/install.ps1))) -Tag beta';
286+ const windowsCmdCmd = 'curl -fsSL https://molt .bot/install.cmd -o install.cmd && install.cmd && del install.cmd';
287+ const windowsCmdBetaCmd = 'curl -fsSL https://molt .bot/install.cmd -o install.cmd && install.cmd --tag beta && del install.cmd';
288288 const osCmds = {
289- unix: "curl -fsSL https://clawd .bot/install.sh | bash",
289+ unix: "curl -fsSL https://molt .bot/install.sh | bash",
290290 windows: windowsPsCmd
291291 };
292292
@@ -360,16 +360,16 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
360360 let onelinerCmd;
361361 if (currentOs === 'unix') {
362362 onelinerCmd = currentBeta
363- ? "curl -fsSL https://clawd .bot/install.sh | bash -s -- --beta"
364- : "curl -fsSL https://clawd .bot/install.sh | bash";
363+ ? "curl -fsSL https://molt .bot/install.sh | bash -s -- --beta"
364+ : "curl -fsSL https://molt .bot/install.sh | bash";
365365 } else if (currentWinShell === 'cmd') {
366366 onelinerCmd = currentBeta ? windowsCmdBetaCmd : windowsCmdCmd;
367367 } else {
368368 onelinerCmd = currentBeta ? windowsPsBetaCmd : windowsPsCmd;
369369 }
370370 document.querySelectorAll('.os-cmd').forEach(cmd => cmd.textContent = onelinerCmd);
371371 // Update hackable OS command for installer mode
372- const hackableOsCmd = "curl -fsSL https://clawd .bot/install.sh | bash -s -- --install-method git";
372+ const hackableOsCmd = "curl -fsSL https://molt .bot/install.sh | bash -s -- --install-method git";
373373 document.querySelectorAll('.os-cmd-hackable').forEach(cmd => cmd.textContent = hackableOsCmd);
374374 // Update OS indicator text
375375 osDetected.textContent = osLabels[currentOs];
@@ -484,8 +484,8 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
484484 'oneliner': () => {
485485 if (currentOs === 'unix') {
486486 return currentBeta
487- ? "curl -fsSL https://clawd .bot/install.sh | bash -s -- --beta"
488- : "curl -fsSL https://clawd .bot/install.sh | bash";
487+ ? "curl -fsSL https://molt .bot/install.sh | bash -s -- --beta"
488+ : "curl -fsSL https://molt .bot/install.sh | bash";
489489 } else if (currentWinShell === 'cmd') {
490490 return currentBeta ? windowsCmdBetaCmd : windowsCmdCmd;
491491 } else {
@@ -497,7 +497,7 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
497497 return currentPm === 'npm' ? `npm i -g clawdbot${betaSuffix}` : `pnpm add -g clawdbot${betaSuffix}`;
498498 },
499499 'onboard': () => 'clawdbot onboard',
500- 'hackable-installer': () => "curl -fsSL https://clawd .bot/install.sh | bash -s -- --install-method git",
500+ 'hackable-installer': () => "curl -fsSL https://molt .bot/install.sh | bash -s -- --install-method git",
501501 'clone': () => 'git clone https://github.com/clawdbot/clawdbot.git',
502502 'build': () => 'cd clawdbot && pnpm install && pnpm run build',
503503 'hackable-onboard': () => 'pnpm run clawdbot onboard',
@@ -565,7 +565,7 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
565565 <span class =" claw-accent" >⟩</span > What It Does
566566 </h2 >
567567 <div class =" features-grid" >
568- <a href =" https://docs.clawd .bot/getting-started" target =" _blank" rel =" noopener" class =" feature-card" >
568+ <a href =" https://docs.molt .bot/getting-started" target =" _blank" rel =" noopener" class =" feature-card" >
569569 <div class =" feature-icon" ><Icon icon =" lucide:home" color =" var(--coral-bright)" size ={ 28 } /></div >
570570 <h3 class =" feature-title" >Runs on Your Machine</h3 >
571571 <p class =" feature-desc" >Mac, Windows, or Linux. Anthropic, OpenAI, or local models. Private by default—your data stays yours.</p >
@@ -575,22 +575,22 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
575575 <h3 class =" feature-title" >Any Chat App</h3 >
576576 <p class =" feature-desc" >Talk to it on WhatsApp, Telegram, Discord, Slack, Signal, or iMessage. Works in DMs and group chats.</p >
577577 </a >
578- <a href =" https://docs.clawd .bot/session" target =" _blank" rel =" noopener" class =" feature-card" >
578+ <a href =" https://docs.molt .bot/session" target =" _blank" rel =" noopener" class =" feature-card" >
579579 <div class =" feature-icon" ><Icon icon =" lucide:brain" color =" var(--coral-bright)" size ={ 28 } /></div >
580580 <h3 class =" feature-title" >Persistent Memory</h3 >
581581 <p class =" feature-desc" >Remembers you and becomes uniquely yours. Your preferences, your context, your AI.</p >
582582 </a >
583- <a href =" https://docs.clawd .bot/browser" target =" _blank" rel =" noopener" class =" feature-card" >
583+ <a href =" https://docs.molt .bot/browser" target =" _blank" rel =" noopener" class =" feature-card" >
584584 <div class =" feature-icon" ><Icon icon =" lucide:globe" color =" var(--coral-bright)" size ={ 28 } /></div >
585585 <h3 class =" feature-title" >Browser Control</h3 >
586586 <p class =" feature-desc" >It can browse the web, fill forms, and extract data from any site.</p >
587587 </a >
588- <a href =" https://docs.clawd .bot/bash" target =" _blank" rel =" noopener" class =" feature-card" >
588+ <a href =" https://docs.molt .bot/bash" target =" _blank" rel =" noopener" class =" feature-card" >
589589 <div class =" feature-icon" ><Icon icon =" lucide:terminal" color =" var(--coral-bright)" size ={ 28 } /></div >
590590 <h3 class =" feature-title" >Full System Access</h3 >
591591 <p class =" feature-desc" >Read and write files, run shell commands, execute scripts. Full access or sandboxed—your choice.</p >
592592 </a >
593- <a href =" https://docs.clawd .bot/skills" target =" _blank" rel =" noopener" class =" feature-card" >
593+ <a href =" https://docs.molt .bot/skills" target =" _blank" rel =" noopener" class =" feature-card" >
594594 <div class =" feature-icon" ><Icon icon =" lucide:puzzle" color =" var(--coral-bright)" size ={ 28 } /></div >
595595 <h3 class =" feature-title" >Skills & Plugins</h3 >
596596 <p class =" feature-desc" >Extend with community skills or build your own. It can even write its own.</p >
@@ -661,7 +661,7 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
661661 <span class =" cta-sub" >Join the community</span >
662662 </a >
663663
664- <a href =" https://docs.clawd .bot/getting-started" class =" cta cta-docs" target =" _blank" rel =" noopener" >
664+ <a href =" https://docs.molt .bot/getting-started" class =" cta cta-docs" target =" _blank" rel =" noopener" >
665665 <svg class =" cta-icon" viewBox =" 0 0 24 24" fill =" none" stroke =" currentColor" stroke-width =" 2" stroke-linecap =" round" stroke-linejoin =" round" >
666666 <path d =" M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
667667 <path d =" M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z" />
@@ -720,7 +720,7 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
720720 <!-- Footer -->
721721 <footer class =" footer" >
722722 <p >Built by <a href =" https://clawd.me" target =" _blank" rel =" noopener" >Molty</a > 🦞, a space lobster AI with a <a href =" https://soul.md" target =" _blank" rel =" noopener" >soul</a >, by <a href =" https://steipete.me" target =" _blank" rel =" noopener" >Peter Steinberger</a > & <a href =" https://github.com/clawdbot/clawdbot#community" target =" _blank" rel =" noopener" >community</a >.</p >
723- <p class =" disclaimer" >Independent project. Not affiliated with Anthropic.</p >
723+ <p class =" disclaimer" >Moltbot was formerly known as Clawdbot. Independent project, not affiliated with Anthropic.</p >
724724 </footer >
725725 </main >
726726</Layout >
0 commit comments