natureco-cli 5.4.19 → 5.4.20
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/setup.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "natureco-cli",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.20",
|
|
4
4
|
"description": "OpenClaw'dan daha güvenli, daha hızlı, daha ucuz AI agent CLI. Multi-agent, self-evolving skills, audit log, maliyet optimizasyonu ve NatureCo platform-native.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"natureco": "bin/natureco.js"
|
package/src/commands/setup.js
CHANGED
|
@@ -131,9 +131,9 @@ async function cmdWizard() {
|
|
|
131
131
|
console.log('');
|
|
132
132
|
console.log(chalk.white(' Step 3: Bot & Kullanıcı'));
|
|
133
133
|
console.log(chalk.gray(' ─────────────────────────────────────────────'));
|
|
134
|
-
const userName = await rlQuestion(` Sizin adınız
|
|
134
|
+
const userName = await rlQuestion(` Sizin adınız: `);
|
|
135
135
|
if (userName) cfg.userName = userName;
|
|
136
|
-
const botName = await rlQuestion(` Bot
|
|
136
|
+
const botName = await rlQuestion(` Bot adı: `);
|
|
137
137
|
if (botName) cfg.botName = botName;
|
|
138
138
|
|
|
139
139
|
// Step 4: Kanal Entegrasyonları (isteğe bağlı, isteyen atlayabilir)
|