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 +9 -9
- package/dist/server/index.js +1 -1
- package/package.json +1 -1
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('
|
|
441
|
-
console.log(` ${bullet(gray('
|
|
442
|
-
console.log(` ${bullet(gray('
|
|
443
|
-
console.log(` ${bullet(gray('
|
|
444
|
-
console.log(` ${bullet(gray('
|
|
445
|
-
console.log(` ${bullet(gray('Type messages to
|
|
446
|
-
console.log(` ${bullet(gray('
|
|
447
|
-
console.log(` ${bullet(gray('
|
|
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) => {
|
package/dist/server/index.js
CHANGED
|
@@ -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';
|