natureco-cli 5.6.41 → 5.6.42

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.41",
3
+ "version": "5.6.42",
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"
@@ -1151,7 +1151,7 @@ async function processIrcMessage(config, sender, target, text, socket) {
1151
1151
  if (memoryPrompt) systemPrompt += '\n\n' + memoryPrompt;
1152
1152
 
1153
1153
  const response = await sendMessage(
1154
- cfg.providerApiKey || cfg.apiKey || '', botId, text,
1154
+ cfg.providerApiKey || cfg.apiKey || '', botId, cleanCommand,
1155
1155
  conversationId, systemPrompt
1156
1156
  );
1157
1157
  const reply = response?.reply || response?.message || '';
@@ -1537,7 +1537,7 @@ async function processImessageMessage(msg, config) {
1537
1537
  if (memoryPrompt) systemPrompt += '\n\n' + memoryPrompt;
1538
1538
 
1539
1539
  const response = await sendMessage(
1540
- cfg.providerApiKey || cfg.apiKey || '', botId, text,
1540
+ cfg.providerApiKey || cfg.apiKey || '', botId, cleanCommand,
1541
1541
  conversationId, systemPrompt
1542
1542
  );
1543
1543
  const reply = response?.reply || response?.message || '';
@@ -1712,7 +1712,7 @@ async function handleSmsWebhook(config, body, req) {
1712
1712
  if (memoryPrompt) systemPrompt += '\n\n' + memoryPrompt;
1713
1713
 
1714
1714
  const response = await sendMessage(
1715
- cfg.providerApiKey || cfg.apiKey || '', botId, text,
1715
+ cfg.providerApiKey || cfg.apiKey || '', botId, cleanCommand,
1716
1716
  conversationId, systemPrompt
1717
1717
  );
1718
1718
  const reply = response?.reply || response?.message || '';