agent-world 0.6.0 → 0.6.2

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/dist/cli/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  // Load environment variables from .env file
3
3
  import dotenv from 'dotenv';
4
- dotenv.config();
4
+ dotenv.config({ quiet: true });
5
5
  /**
6
6
  * Agent World CLI Entry Point - Dual-Mode Console Interface
7
7
  *
@@ -437,14 +437,14 @@ async function runInteractiveMode(options) {
437
437
  }
438
438
  }
439
439
  // Show usage tips
440
- console.log(`\n${gray('Tips:')}`);
441
- console.log(` ${bullet(gray('Short commands:'))} ${cyan('/list')}, ${cyan('/show agent1')}, ${cyan('/edit agent1')}, ${cyan('/del agent1')}`);
442
- console.log(` ${bullet(gray('Context-sensitive:'))} ${cyan('/list')} ${gray('shows agents if world selected, worlds otherwise')}`);
443
- console.log(` ${bullet(gray('Legacy commands:'))} ${cyan('/clear agent1')}, ${cyan('/clear all')}, ${cyan('/add MyAgent')}`);
444
- console.log(` ${bullet(gray('Use'))} ${cyan('/select')} ${gray('to choose a different world')}`);
445
- console.log(` ${bullet(gray('Type messages to send to agents'))}`);
446
- console.log(` ${bullet(gray('Use'))} ${cyan('/quit')} ${gray('or')} ${cyan('/exit')} ${gray('to exit, or press')} ${boldYellow('Ctrl+C')}`);
447
- console.log(` ${bullet(gray('Use'))} ${cyan('--logLevel debug')} ${gray('to see detailed debug messages')}`);
440
+ console.log(`\n${gray('Quick Start:')}`);
441
+ console.log(` ${bullet(gray('World commands:'))} ${cyan('/world list')}, ${cyan('/world create')}, ${cyan('/world select')}`);
442
+ console.log(` ${bullet(gray('Agent commands:'))} ${cyan('/agent list')}, ${cyan('/agent create Ava')}, ${cyan('/agent update Ava')}`);
443
+ console.log(` ${bullet(gray('Chat commands:'))} ${cyan('/chat list --active')}, ${cyan('/chat create')}, ${cyan('/chat export')}`);
444
+ console.log(` ${bullet(gray('Need help?'))} ${cyan('/help world')}, ${cyan('/help agent')}, ${cyan('/help chat')}`);
445
+ console.log(` ${bullet(gray('Type messages to talk with the world'))}`);
446
+ console.log(` ${bullet(gray('Exit with'))} ${cyan('/quit')} ${gray('or')} ${cyan('/exit')} ${gray('or press')} ${boldYellow('Ctrl+C')}`);
447
+ console.log(` ${bullet(gray('Enable debug logs via'))} ${cyan('--logLevel debug')}`);
448
448
  console.log('');
449
449
  rl.prompt();
450
450
  rl.on('line', async (input) => {
@@ -14,7 +14,7 @@
14
14
  */
15
15
  // Load environment variables from .env file
16
16
  import dotenv from 'dotenv';
17
- dotenv.config();
17
+ dotenv.config({ quiet: true });
18
18
  import open from 'open';
19
19
  import { createCategoryLogger, LLMProvider } from '../core/index.js';
20
20
  import { configureLLMProvider } from '../core/llm-config.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-world",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {