@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.
- package/emblemai.js +12 -7
- 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('║') + '
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
console.log(fmt.brand('║') + ` ${chalk.
|
|
426
|
-
console.log(fmt.brand('║') + '
|
|
427
|
-
|
|
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