@emblemvault/agentwallet 3.0.1 → 3.0.2

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.
Files changed (2) hide show
  1. package/emblemai.js +12 -7
  2. package/package.json +1 -1
package/emblemai.js CHANGED
@@ -417,14 +417,19 @@ async function main() {
417
417
  await showSplash();
418
418
 
419
419
  // Show banner after splash
420
+ const W = 59; // inner width between ║ borders
421
+ const pad = (s, visible) => s + ' '.repeat(Math.max(0, W - visible));
420
422
  console.log('');
421
- console.log(fmt.brand('╔═══════════════════════════════════════════════════════════╗'));
422
- console.log(fmt.brand('║') + ' ' + fmt.brand('║'));
423
- console.log(fmt.brand('║') + ` ${chalk.bold.white('⚡ EMBLEM AI')} ${chalk.dim(`v${PKG_VERSION} — Agent Command & Control`)} ` + fmt.brand('║'));
424
- console.log(fmt.brand('║') + ' ' + fmt.brand('║'));
425
- console.log(fmt.brand('║') + ` ${chalk.dim('Powered by Hustle Incognito')} ` + fmt.brand('║'));
426
- console.log(fmt.brand('║') + ' ' + fmt.brand('║'));
427
- console.log(fmt.brand('╚═══════════════════════════════════════════════════════════╝'));
423
+ console.log(fmt.brand('' + '═'.repeat(W) + '╗'));
424
+ console.log(fmt.brand('║') + ' '.repeat(W) + fmt.brand('║'));
425
+ const title = ` ⚡ EMBLEM AI v${PKG_VERSION} — Agent Command & Control`;
426
+ const titleLen = title.length + 1; // ⚡ renders as 2 columns
427
+ console.log(fmt.brand('║') + pad(` ${chalk.bold.white(' EMBLEM AI')} ${chalk.dim(`v${PKG_VERSION} — Agent Command & Control`)}`, titleLen) + fmt.brand('║'));
428
+ console.log(fmt.brand('║') + ' '.repeat(W) + fmt.brand('║'));
429
+ const sub = ' Powered by Hustle Incognito';
430
+ console.log(fmt.brand('║') + pad(` ${chalk.dim('Powered by Hustle Incognito')}`, sub.length) + fmt.brand('║'));
431
+ console.log(fmt.brand('║') + ' '.repeat(W) + fmt.brand('║'));
432
+ console.log(fmt.brand('╚' + '═'.repeat(W) + '╝'));
428
433
  console.log('');
429
434
 
430
435
  // Load plugins
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emblemvault/agentwallet",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "CLI for EmblemVault Hustle AI - autonomous crypto wallet management with browser auth, streaming, and plugins",
5
5
  "main": "emblemai.js",
6
6
  "type": "module",