comisai 1.0.13 → 1.0.14

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.
@@ -127,7 +127,10 @@ export function buildInboundMetadataSection(meta, _isMinimal) {
127
127
  "This is the metadata for the message you are currently responding to.",
128
128
  "Do not reveal these internal identifiers to the user.",
129
129
  ];
130
- if (meta.flags.isScheduled) {
130
+ if (meta.flags.isCronAgentTurn) {
131
+ lines.push("", "**CRON AGENT TURN:** This is an autonomous scheduled execution — you were invoked by a cron job to check on something, NOT by a user message.", "Use your tools to gather current data, then decide whether there is anything worth reporting.", "If there is nothing actionable or noteworthy to report, respond with exactly NO_REPLY — the system will suppress delivery and the user will not be disturbed.", "If there IS something to report, respond with a concise, actionable message for the user.", "Do NOT use the message tool (the system delivers your response automatically).");
132
+ }
133
+ else if (meta.flags.isScheduled) {
131
134
  lines.push("", "**SCHEDULED REMINDER:** This message is a scheduled reminder delivery, NOT a new user request.", "Your job is to deliver the reminder content to the user in a friendly, concise way.", "Do NOT ask follow-up questions, offer to reschedule, or search for context.", "Respond directly with the reminder text — do NOT use the message tool (the system delivers your response automatically).", "Do NOT respond with NO_REPLY or empty text.");
132
135
  }
133
136
  return lines;
@@ -189,6 +189,9 @@ function buildMessageFlags(msg) {
189
189
  if (meta.isScheduled === true) {
190
190
  flags.isScheduled = true;
191
191
  }
192
+ if (meta.isCronAgentTurn === true) {
193
+ flags.isCronAgentTurn = true;
194
+ }
192
195
  return flags;
193
196
  }
194
197
  /**
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/agent",
3
3
  "private": true,
4
- "version": "1.0.13",
4
+ "version": "1.0.14",
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.13",
4
+ "version": "1.0.14",
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,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/cli",
3
3
  "private": true,
4
- "version": "1.0.13",
4
+ "version": "1.0.14",
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.13",
4
+ "version": "1.0.14",
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",
@@ -189,7 +189,7 @@ export async function setupChannels(deps) {
189
189
  text: resultText,
190
190
  timestamp: Date.now(),
191
191
  attachments: [],
192
- metadata: { isScheduled: true, jobId: payload.jobId, jobName },
192
+ metadata: { isCronAgentTurn: true, jobId: payload.jobId, jobName },
193
193
  };
194
194
  const execStartTs = Date.now();
195
195
  try {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@comis/daemon",
3
3
  "private": true,
4
- "version": "1.0.13",
4
+ "version": "1.0.14",
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.13",
4
+ "version": "1.0.14",
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.13",
4
+ "version": "1.0.14",
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.13",
4
+ "version": "1.0.14",
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.13",
4
+ "version": "1.0.14",
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.13",
4
+ "version": "1.0.14",
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.13",
4
+ "version": "1.0.14",
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.13",
3
+ "version": "1.0.14",
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.13",
119
- "@comis/core": "1.0.13",
120
- "@comis/infra": "1.0.13",
121
- "@comis/memory": "1.0.13",
122
- "@comis/gateway": "1.0.13",
123
- "@comis/skills": "1.0.13",
124
- "@comis/scheduler": "1.0.13",
125
- "@comis/agent": "1.0.13",
126
- "@comis/channels": "1.0.13",
127
- "@comis/cli": "1.0.13",
128
- "@comis/daemon": "1.0.13",
118
+ "@comis/shared": "1.0.14",
119
+ "@comis/core": "1.0.14",
120
+ "@comis/infra": "1.0.14",
121
+ "@comis/memory": "1.0.14",
122
+ "@comis/gateway": "1.0.14",
123
+ "@comis/skills": "1.0.14",
124
+ "@comis/scheduler": "1.0.14",
125
+ "@comis/agent": "1.0.14",
126
+ "@comis/channels": "1.0.14",
127
+ "@comis/cli": "1.0.14",
128
+ "@comis/daemon": "1.0.14",
129
129
  "@agentclientprotocol/sdk": "^0.15.0",
130
130
  "@clack/core": "^1.1.0",
131
131
  "@clack/prompts": "^1.1.0",