natureco-cli 5.6.19 → 5.6.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/repl.js +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "natureco-cli",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.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/repl.js
CHANGED
|
@@ -464,8 +464,10 @@ async function startRepl(args) {
|
|
|
464
464
|
// Memory yükle
|
|
465
465
|
let memory = loadMemory(cfg.userName);
|
|
466
466
|
|
|
467
|
-
// v5.
|
|
468
|
-
if (!memory.botName)
|
|
467
|
+
// v5.6.19: Oncelik config.botName, sonra memory.botName
|
|
468
|
+
if (!memory.botName) {
|
|
469
|
+
memory.botName = cfg.botName || 'İchigo';
|
|
470
|
+
}
|
|
469
471
|
// BotName'i memory'ye persist et (her oturumda ayni kalsin)
|
|
470
472
|
try {
|
|
471
473
|
const fs = require('fs');
|