natureco-cli 1.0.13 → 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 +1 -1
- package/src/commands/gateway.js +6 -27
package/package.json
CHANGED
package/src/commands/gateway.js
CHANGED
|
@@ -27,44 +27,23 @@ async function gateway() {
|
|
|
27
27
|
|
|
28
28
|
console.clear();
|
|
29
29
|
|
|
30
|
-
// Ana logo kutusu
|
|
31
|
-
const
|
|
32
|
-
chalk.green.bold('
|
|
30
|
+
// Ana logo kutusu - tavşan emoji ile
|
|
31
|
+
const title = boxen(
|
|
32
|
+
chalk.green.bold('🐰 NatureCo Terminal\n') +
|
|
33
33
|
chalk.green.bold(` v${version}\n\n`) +
|
|
34
34
|
chalk.gray('AI botlarınızla terminal\'den konuşun\n') +
|
|
35
35
|
chalk.gray('Workflow\'ları otomatize edin\n') +
|
|
36
36
|
chalk.gray('Yetenekler ekleyin, MCP entegre edin'),
|
|
37
37
|
{
|
|
38
38
|
padding: { top: 1, bottom: 1, left: 3, right: 3 },
|
|
39
|
-
margin: { top:
|
|
39
|
+
margin: { top: 1, bottom: 0, left: 0, right: 0 },
|
|
40
40
|
borderStyle: 'round',
|
|
41
41
|
borderColor: 'green',
|
|
42
42
|
align: 'center',
|
|
43
43
|
}
|
|
44
44
|
);
|
|
45
|
-
|
|
46
|
-
|
|
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
|
-
}
|
|
45
|
+
|
|
46
|
+
console.log(title);
|
|
68
47
|
console.log(chalk.gray('─'.repeat(60)));
|
|
69
48
|
console.log('');
|
|
70
49
|
|