natureco-cli 1.0.12 → 1.0.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "natureco-cli",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "NatureCo AI Bot Terminal Interface",
5
5
  "main": "bin/natureco.js",
6
6
  "bin": {
@@ -27,16 +27,9 @@ async function gateway() {
27
27
 
28
28
  console.clear();
29
29
 
30
- // Tavşan ASCII art
31
- const bunny = chalk.hex('#69F0AE').bold(
32
- ' (\\ /)\n' +
33
- ' ( . .)\n' +
34
- ' c(")(")'
35
- );
36
-
37
- // Ana logo kutusu - daha büyük ve etkileyici
30
+ // Ana logo kutusu - tavşan emoji ile
38
31
  const title = boxen(
39
- chalk.green.bold('🌿 NatureCo Terminal\n') +
32
+ chalk.green.bold('🐰 NatureCo Terminal\n') +
40
33
  chalk.green.bold(` v${version}\n\n`) +
41
34
  chalk.gray('AI botlarınızla terminal\'den konuşun\n') +
42
35
  chalk.gray('Workflow\'ları otomatize edin\n') +
@@ -50,7 +43,7 @@ async function gateway() {
50
43
  }
51
44
  );
52
45
 
53
- console.log(bunny + ' ' + title);
46
+ console.log(title);
54
47
  console.log(chalk.gray('─'.repeat(60)));
55
48
  console.log('');
56
49