bloby-bot 0.17.2 → 0.17.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/cli.js CHANGED
@@ -524,13 +524,15 @@ class Stepper {
524
524
 
525
525
  function banner() {
526
526
  console.log(`
527
- ${c.blue}${c.bold} _______ _ ${c.reset}
528
- ${c.blue}${c.bold} (_______) | ${c.reset}
529
- ${c.blue}${c.bold} _____ | |_ _ _ _ _ _ ${c.reset}
530
- ${c.blue}${c.bold} | ___) | | | | ( \\ / ) | | | ${c.reset}
531
- ${c.pink}${c.bold} | | | | |_| |) X (| |_| | ${c.reset}
532
- ${c.pink}${c.bold} |_| |_|\\____(_/ \\_)\\__ | ${c.reset}
533
- ${c.pink}${c.bold} (____/ ${c.reset}
527
+ ${c.blue}${c.bold} ${c.reset}
528
+ ${c.blue}${c.bold} ▄▄▄ ▄▄ ${c.reset}
529
+ ${c.blue}${c.bold} ██▀▀█▄ ██ █▄ ${c.reset}
530
+ ${c.blue}${c.bold} ██ ▄█▀ ██ ██ ${c.reset}
531
+ ${c.pink}${c.bold} ██▀▀█▄ ██ ▄███▄ ████▄ ██ ██${c.reset}
532
+ ${c.pink}${c.bold} ██ ▄█ ██ ██ ██ ██ ██ ██▄██${c.reset}
533
+ ${c.pink}${c.bold} ▀██████▀▄██▄▀███▀▄████▀▄▄▀██▀${c.reset}
534
+ ${c.pink}${c.bold} ██ ${c.reset}
535
+ ${c.pink}${c.bold} ▀▀▀ ${c.reset}
534
536
  ${c.dim}v${pkg.version} · Self-hosted AI agent${c.reset}`);
535
537
  }
536
538
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bloby-bot",
3
- "version": "0.17.2",
3
+ "version": "0.17.3",
4
4
  "releaseNotes": [
5
5
  "1. react router implemented",
6
6
  "2. new workspace design",
@@ -71,10 +71,10 @@ for (const file of CODE_FILES) {
71
71
  try {
72
72
  execSync('npm install --omit=dev', {
73
73
  cwd: BLOBY_HOME,
74
- stdio: 'ignore',
74
+ stdio: 'inherit',
75
75
  });
76
76
  } catch {
77
- // Non-fatal: deps may already exist from a previous install
77
+ console.error('Warning: failed to install dependencies in ~/.bloby/ run "cd ~/.bloby && npm install" manually');
78
78
  }
79
79
 
80
80
  // ── Install workspace dependencies (isolated from system deps) ──