natureco-cli 1.0.12 → 1.0.13

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.13",
4
4
  "description": "NatureCo AI Bot Terminal Interface",
5
5
  "main": "bin/natureco.js",
6
6
  "bin": {
@@ -27,15 +27,8 @@ 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
38
- const title = boxen(
30
+ // Ana logo kutusu
31
+ const titleBox = boxen(
39
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') +
@@ -43,14 +36,35 @@ async function gateway() {
43
36
  chalk.gray('Yetenekler ekleyin, MCP entegre edin'),
44
37
  {
45
38
  padding: { top: 1, bottom: 1, left: 3, right: 3 },
46
- margin: { top: 1, bottom: 0, left: 0, right: 0 },
39
+ margin: { top: 0, bottom: 0, left: 0, right: 0 },
47
40
  borderStyle: 'round',
48
41
  borderColor: 'green',
49
42
  align: 'center',
50
43
  }
51
44
  );
52
-
53
- console.log(bunny + ' ' + title);
45
+
46
+ // Kutuyu satırlara böl
47
+ const boxLines = titleBox.split('\n');
48
+
49
+ // Tavşan satırları
50
+ const bunnyLines = [
51
+ '',
52
+ chalk.hex('#69F0AE').bold(' (\\ /)'),
53
+ chalk.hex('#69F0AE').bold(' ( . .)'),
54
+ chalk.hex('#69F0AE').bold(' c(")(")'),
55
+ '',
56
+ '',
57
+ '',
58
+ '',
59
+ ];
60
+
61
+ // Tavşan ve kutuyu yan yana yazdır
62
+ const maxLines = Math.max(bunnyLines.length, boxLines.length);
63
+ for (let i = 0; i < maxLines; i++) {
64
+ const bunnyLine = bunnyLines[i] || '';
65
+ const boxLine = boxLines[i] || '';
66
+ console.log(bunnyLine + ' ' + boxLine);
67
+ }
54
68
  console.log(chalk.gray('─'.repeat(60)));
55
69
  console.log('');
56
70