@cosmicstack/mercury-agent 0.2.6 → 0.2.7

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/dist/index.js CHANGED
@@ -7,7 +7,6 @@ import { dirname as dirname3, join as join11 } from "path";
7
7
  import { Command } from "commander";
8
8
  import readline2 from "readline";
9
9
  import chalk6 from "chalk";
10
- import figlet from "figlet";
11
10
 
12
11
  // src/utils/config.ts
13
12
  import { readFileSync, writeFileSync, existsSync, mkdirSync } from "fs";
@@ -4319,11 +4318,17 @@ var pkgVersion = JSON.parse(readFileSync12(join11(__dirname, "..", "package.json
4319
4318
  function hr() {
4320
4319
  console.log(chalk6.dim("\u2500".repeat(50)));
4321
4320
  }
4321
+ var MERCURY_ASCII = [
4322
+ " __ _____________ ________ ________ __",
4323
+ " / |/ / ____/ __ \\/ ____/ / / / __ \\/ < /",
4324
+ " / /|_/ / __/ / /_/ / / / / / / /_/ /\\ / ",
4325
+ " / / / / /___/ _, _/ /___/ /_/ / _, _/ / / ",
4326
+ "/_/ /_/_____/_/ |_|\\____/\\____/_/ |_| /_/ "
4327
+ ].filter((l) => l.trim());
4322
4328
  function banner() {
4323
4329
  console.log("");
4324
- const art = figlet.textSync("MERCURY", { font: "Slant", horizontalLayout: "default" });
4325
- for (const line of art.split("\n")) {
4326
- if (line.trim()) console.log(chalk6.bold.cyan(` ${line}`));
4330
+ for (const line of MERCURY_ASCII) {
4331
+ console.log(chalk6.bold.cyan(` ${line}`));
4327
4332
  }
4328
4333
  console.log("");
4329
4334
  console.log(chalk6.white(" an AI agent for personal tasks"));
@@ -4332,9 +4337,8 @@ function banner() {
4332
4337
  }
4333
4338
  function splashScreen() {
4334
4339
  console.log("");
4335
- const art = figlet.textSync("MERCURY", { font: "Slant", horizontalLayout: "default" });
4336
- for (const line of art.split("\n")) {
4337
- if (line.trim()) console.log(chalk6.bold.cyan(` ${line}`));
4340
+ for (const line of MERCURY_ASCII) {
4341
+ console.log(chalk6.bold.cyan(` ${line}`));
4338
4342
  }
4339
4343
  console.log("");
4340
4344
  console.log(chalk6.dim(" an AI agent for personal tasks"));