natureco-cli 2.23.22 → 2.23.23

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": "2.23.22",
3
+ "version": "2.23.23",
4
4
  "description": "NatureCo AI Bot Terminal Interface",
5
5
  "bin": {
6
6
  "natureco": "bin/natureco.js"
@@ -603,7 +603,7 @@ ${indexPrompt}`;
603
603
  }
604
604
  }
605
605
 
606
- if (userMessage === 'exit' || userMessage === 'quit') {
606
+ if (userMessage === 'exit' || userMessage === 'quit' || userMessage === 'çıkış' || userMessage === 'q') {
607
607
  showSummary();
608
608
  process.exit(0);
609
609
  }
@@ -725,7 +725,7 @@ ${indexPrompt}`;
725
725
  }
726
726
 
727
727
  async function promptLoop() {
728
- rl.question('', async (msg) => {
728
+ rl.question(chalk.gray('> '), async (msg) => {
729
729
  process.stdout.write('\x1b[1A\x1b[2K');
730
730
  try {
731
731
  await handleMessage(msg);