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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "natureco-cli",
3
- "version": "5.6.19",
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"
@@ -464,8 +464,10 @@ async function startRepl(args) {
464
464
  // Memory yükle
465
465
  let memory = loadMemory(cfg.userName);
466
466
 
467
- // v5.4.7: Memory'de botName yoksa otomatik İchigo set et VE kaydet
468
- if (!memory.botName) memory.botName = 'İchigo';
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');