natureco-cli 5.14.5 → 5.14.6

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.14.5",
3
+ "version": "5.14.6",
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"
@@ -691,7 +691,7 @@ async function startRepl(args) {
691
691
  // System prompt oluştur (memory + identity + persistent bağlam)
692
692
  // v5.6.5: Kucuk model tespiti (Groq, Mistral Small, Ollama) - SOUL injection skip
693
693
  const botName = memory.botName || 'Asistan';
694
- const userName = memory.name || memory.nickname || 'kanka';
694
+ const userName = memory.name || memory.nickname || cfg.userName;
695
695
  const isSmallModel = (cfg.providerUrl || '').includes('groq.com') ||
696
696
  (cfg.providerUrl || '').includes('mistral.ai') ||
697
697
  (cfg.providerUrl || '').includes('localhost') ||
@@ -742,7 +742,7 @@ async function startRepl(args) {
742
742
  }
743
743
  return null;
744
744
  })();
745
- const displayUserName = memory.name || nameFromFact || memory.nickname || 'kanka';
745
+ const displayUserName = memory.name || nameFromFact || memory.nickname || cfg.userName;
746
746
  console.log(tui.C.brand(' 👋 Ben ' + displayBotName + ', ' + displayUserName + '. Sen nasilsin?'));
747
747
  console.log('');
748
748