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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/agent",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "AI agent executor, budget control, and session management for Comis",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/channels",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "Chat platform adapters — Discord, Telegram, Slack, WhatsApp, Signal, iMessage, IRC, LINE",
@@ -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
- program.name("comis").description("Comis AI agent management CLI").version("1.0.3");
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);
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/cli",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "Command-line interface for the Comis AI agent platform",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/core",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "Core domain types, ports, event bus, security, and config for Comis",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/daemon",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "Background daemon and orchestrator for the Comis platform",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/gateway",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "HTTP, JSON-RPC, and WebSocket gateway for Comis",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/infra",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "Structured logging infrastructure for Comis",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/memory",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "SQLite memory, embeddings, and RAG storage for Comis agents",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/scheduler",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "Task scheduling and cron management for Comis",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/shared",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "Shared types and utilities for the Comis platform",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/skills",
3
3
  "private": true,
4
- "version": "1.0.4",
4
+ "version": "1.0.5",
5
5
  "author": "Moshe Anconina",
6
6
  "license": "Apache-2.0",
7
7
  "description": "Skill system, MCP integration, and tool sandbox for Comis agents",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comisai",
3
- "version": "1.0.4",
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.4",
119
- "@comis/core": "1.0.4",
120
- "@comis/infra": "1.0.4",
121
- "@comis/memory": "1.0.4",
122
- "@comis/gateway": "1.0.4",
123
- "@comis/skills": "1.0.4",
124
- "@comis/scheduler": "1.0.4",
125
- "@comis/agent": "1.0.4",
126
- "@comis/channels": "1.0.4",
127
- "@comis/cli": "1.0.4",
128
- "@comis/daemon": "1.0.4",
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",