kitty-hive 0.1.0 → 0.1.1
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/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ const __dirname = dirname(__filename);
|
|
|
12
12
|
const args = process.argv.slice(2);
|
|
13
13
|
const command = args[0];
|
|
14
14
|
function parseFlags(startIdx) {
|
|
15
|
-
let port =
|
|
15
|
+
let port = 4123;
|
|
16
16
|
let dbPath;
|
|
17
17
|
for (let i = startIdx; i < args.length; i++) {
|
|
18
18
|
if ((args[i] === '--port' || args[i] === '-p') && args[i + 1]) {
|
|
@@ -388,9 +388,9 @@ function showHelp() {
|
|
|
388
388
|
console.log(`🐝 kitty-hive — multi-agent collaboration server
|
|
389
389
|
|
|
390
390
|
Usage:
|
|
391
|
-
kitty-hive serve [--port
|
|
391
|
+
kitty-hive serve [--port 4123] [--db path] [-v|-q] Start the server
|
|
392
392
|
kitty-hive init [name] [--port 4123] [--http] Configure for this project
|
|
393
|
-
kitty-hive status [--port
|
|
393
|
+
kitty-hive status [--port 4123] Server & agent status
|
|
394
394
|
kitty-hive agent list List agents
|
|
395
395
|
kitty-hive agent remove <name> Remove an agent
|
|
396
396
|
kitty-hive peer add <name> <url> [--expose a,b] [--secret s] Add a peer
|