comisai 1.0.4 → 1.0.5
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/node_modules/@comis/agent/package.json +1 -1
- package/node_modules/@comis/channels/package.json +1 -1
- package/node_modules/@comis/cli/dist/cli.d.ts +0 -9
- package/node_modules/@comis/cli/dist/cli.js +4 -1
- package/node_modules/@comis/cli/package.json +1 -1
- package/node_modules/@comis/core/package.json +1 -1
- package/node_modules/@comis/daemon/package.json +1 -1
- package/node_modules/@comis/gateway/package.json +1 -1
- package/node_modules/@comis/infra/package.json +1 -1
- package/node_modules/@comis/memory/package.json +1 -1
- package/node_modules/@comis/scheduler/package.json +1 -1
- package/node_modules/@comis/shared/package.json +1 -1
- package/node_modules/@comis/skills/package.json +1 -1
- package/package.json +12 -12
|
@@ -1,12 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* Comis CLI entry point.
|
|
4
|
-
*
|
|
5
|
-
* Commander.js program that registers all CLI subcommands and handles
|
|
6
|
-
* top-level error formatting. All commands are registered via their
|
|
7
|
-
* respective register*Command functions.
|
|
8
|
-
*
|
|
9
|
-
* @module
|
|
10
|
-
*/
|
|
11
2
|
import { Command } from "commander";
|
|
12
3
|
export declare const program: Command;
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
*
|
|
10
10
|
* @module
|
|
11
11
|
*/
|
|
12
|
+
import { createRequire } from "node:module";
|
|
12
13
|
import { Command } from "commander";
|
|
13
14
|
import { registerAgentCommand } from "./commands/agent.js";
|
|
14
15
|
import { registerChannelCommand } from "./commands/channel.js";
|
|
@@ -29,7 +30,9 @@ import { registerSecretsCommand } from "./commands/secrets.js";
|
|
|
29
30
|
import { registerSignalSetupCommand } from "./commands/signal-setup.js";
|
|
30
31
|
import { registerUninstallCommand } from "./commands/uninstall.js";
|
|
31
32
|
export const program = new Command();
|
|
32
|
-
|
|
33
|
+
const cliRequire = createRequire(import.meta.url);
|
|
34
|
+
const cliPkg = cliRequire("../package.json");
|
|
35
|
+
program.name("comis").description("Comis AI agent management CLI").version(cliPkg.version);
|
|
33
36
|
// Register command groups
|
|
34
37
|
registerDaemonCommand(program);
|
|
35
38
|
registerConfigCommand(program);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "comisai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"author": "Moshe Anconina",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "Security-first AI agent platform — connects AI agents to Discord, Telegram, Slack, WhatsApp, and more",
|
|
@@ -115,17 +115,17 @@
|
|
|
115
115
|
"@comis/daemon"
|
|
116
116
|
],
|
|
117
117
|
"dependencies": {
|
|
118
|
-
"@comis/shared": "1.0.
|
|
119
|
-
"@comis/core": "1.0.
|
|
120
|
-
"@comis/infra": "1.0.
|
|
121
|
-
"@comis/memory": "1.0.
|
|
122
|
-
"@comis/gateway": "1.0.
|
|
123
|
-
"@comis/skills": "1.0.
|
|
124
|
-
"@comis/scheduler": "1.0.
|
|
125
|
-
"@comis/agent": "1.0.
|
|
126
|
-
"@comis/channels": "1.0.
|
|
127
|
-
"@comis/cli": "1.0.
|
|
128
|
-
"@comis/daemon": "1.0.
|
|
118
|
+
"@comis/shared": "1.0.5",
|
|
119
|
+
"@comis/core": "1.0.5",
|
|
120
|
+
"@comis/infra": "1.0.5",
|
|
121
|
+
"@comis/memory": "1.0.5",
|
|
122
|
+
"@comis/gateway": "1.0.5",
|
|
123
|
+
"@comis/skills": "1.0.5",
|
|
124
|
+
"@comis/scheduler": "1.0.5",
|
|
125
|
+
"@comis/agent": "1.0.5",
|
|
126
|
+
"@comis/channels": "1.0.5",
|
|
127
|
+
"@comis/cli": "1.0.5",
|
|
128
|
+
"@comis/daemon": "1.0.5",
|
|
129
129
|
"@agentclientprotocol/sdk": "^0.15.0",
|
|
130
130
|
"@clack/core": "^1.1.0",
|
|
131
131
|
"@clack/prompts": "^1.1.0",
|