@ynhcj/xiaoyi-channel 0.0.189-beta → 0.0.191-beta

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 CHANGED
@@ -3,7 +3,10 @@ import { xiaoyiProvider } from "./src/provider.js";
3
3
  import { xyPlugin } from "./src/channel.js";
4
4
  import registerSentinelHook from "./src/cspl/sentinel_hook.js";
5
5
  import { setXYRuntime } from "./src/runtime.js";
6
- import { markCronToolCall, clearCronToolCall } from "./src/tools/session-manager.js";
6
+ import { markCronToolCall, clearCronToolCall, getSessionContext } from "./src/tools/session-manager.js";
7
+ import { configManager } from "./src/utils/config-manager.js";
8
+ import { setJobPushId } from "./src/utils/cron-push-map.js";
9
+ import { getAllPushIds } from "./src/utils/pushid-manager.js";
7
10
  import { registerSelfEvolutionToolResultNudge } from "./src/self-evolution-tool-result-nudge.js";
8
11
  import { createBeforePromptBuildHandler } from "./src/skill-retriever/hooks.js";
9
12
  import { normalizeToolRetrieverConfig } from "./src/skill-retriever/config.js";
@@ -25,8 +28,145 @@ function registerCronDetectionHook(api) {
25
28
  if (event.toolCallId) {
26
29
  clearCronToolCall(event.toolCallId);
27
30
  }
31
+ // 捕获对话创建的 cron job:agent 调 cron(add) 后,从 result 拿 jobId,
32
+ // 配合当前会话的 pushId,写入 jobId↔pushId 映射,供 fire 时反查设备。
33
+ await captureCronAddMapping(event, ctx).catch((err) => {
34
+ // 捕获失败不影响工具结果
35
+ console.error("[xy] captureCronAddMapping failed:", err);
36
+ });
28
37
  });
29
38
  }
39
+ /** 从 cron add 工具结果中提取 jobId 并写入 pushId 映射。 */
40
+ async function captureCronAddMapping(event, ctx) {
41
+ // 两条创建路径都要捕获:
42
+ // 1) cron agent 工具:toolName==="cron", params.action==="add"
43
+ // 2) exec 跑 CLI:toolName==="exec", params.command 含 "cron add"
44
+ // (agent 实际用的是这条:openclaw cron add --name ... --cron ... --message ...)
45
+ const isCronAddTool = event.toolName === "cron" &&
46
+ (event.params?.action === "add" || event.params?.action === "create");
47
+ const isExecCronAdd = event.toolName === "exec" && isExecCronAddCommand(event.params?.command);
48
+ if (!isCronAddTool && !isExecCronAdd)
49
+ return;
50
+ console.log(`[CRONMAP] after_tool_call path=${event.toolName}, resultType=${typeof event.result}`);
51
+ const jobId = readJobIdFromResult(event.result);
52
+ if (!jobId) {
53
+ console.log(`[CRONMAP] skip: could not extract jobId. preview=${preview(event.result)}`);
54
+ return;
55
+ }
56
+ console.log(`[CRONMAP] extracted jobId=${jobId}`);
57
+ const sessionCtx = ctx.sessionKey ? getSessionContext(ctx.sessionKey) : null;
58
+ const sessionId = sessionCtx?.sessionId;
59
+ if (!sessionId) {
60
+ console.log(`[CRONMAP] skip: no sessionId (sessionKey=${ctx.sessionKey}, ctxFound=${!!sessionCtx})`);
61
+ return;
62
+ }
63
+ const pushId = await resolvePushId(sessionId);
64
+ if (!pushId) {
65
+ console.log(`[CRONMAP] skip: no pushId available for sessionId=${sessionId} (no session match, no global, no file)`);
66
+ return;
67
+ }
68
+ console.log(`[CRONMAP] writing map: jobId=${jobId}, sessionId=${sessionId}, pushId=${pushId.substring(0, 16)}...`);
69
+ await setJobPushId(jobId, {
70
+ pushId,
71
+ sessionId,
72
+ deviceType: sessionCtx?.deviceType,
73
+ source: event.toolName === "exec" ? "exec-cli" : "conversation",
74
+ });
75
+ console.log(`[CRONMAP] map written OK`);
76
+ }
77
+ /** 回退链取 pushId:当前会话 → 全局兜底 → 本地文件首个(保底)。 */
78
+ async function resolvePushId(sessionId) {
79
+ // 1. 同会话
80
+ const session = configManager.getPushId(sessionId);
81
+ if (session)
82
+ return session;
83
+ // 2. 全局(任何会话注册过的)
84
+ const global = configManager.getPushId();
85
+ if (global)
86
+ return global;
87
+ // 3. 文件兜底
88
+ try {
89
+ const all = await getAllPushIds();
90
+ if (all.length > 0)
91
+ return all[0];
92
+ }
93
+ catch {
94
+ // ignore
95
+ }
96
+ return null;
97
+ }
98
+ /** 判断 exec 命令是否为 cron add(匹配 "openclaw cron add" 或裸 "cron add",排除 list/remove 等)。 */
99
+ function isExecCronAddCommand(command) {
100
+ if (typeof command !== "string")
101
+ return false;
102
+ return /\bcron\s+add\b/.test(command);
103
+ }
104
+ /** 取结果的短预览,用于诊断。 */
105
+ function preview(value) {
106
+ if (value == null)
107
+ return String(value);
108
+ const s = typeof value === "string" ? value : JSON.stringify(value);
109
+ return s.length > 200 ? s.slice(0, 200) + "…" : s;
110
+ }
111
+ /** 防御性地从 cron add 结果中取 job id。
112
+ * 覆盖:裸 job 对象、JSON 字符串、exec 输出文本、
113
+ * {content:[{text}]} / {stdout} / data/result/job 嵌套。 */
114
+ function readJobIdFromResult(result) {
115
+ if (!result)
116
+ return undefined;
117
+ // {content: [{type:"text", text: "..."}]} — exec 工具的输出信封
118
+ if (result && typeof result === "object") {
119
+ const contentArr = result.content;
120
+ if (Array.isArray(contentArr)) {
121
+ for (const item of contentArr) {
122
+ if (item && typeof item === "object") {
123
+ const text = item.text;
124
+ if (typeof text === "string" && text.trim()) {
125
+ const fromContent = readJobIdFromResult(text);
126
+ if (fromContent)
127
+ return fromContent;
128
+ }
129
+ }
130
+ }
131
+ }
132
+ }
133
+ // {stdout} — 备选 exec 输出信封
134
+ if (result && typeof result === "object") {
135
+ const stdout = result.stdout;
136
+ if (typeof stdout === "string" && stdout.trim()) {
137
+ const fromStdout = readJobIdFromResult(stdout);
138
+ if (fromStdout)
139
+ return fromStdout;
140
+ }
141
+ }
142
+ let obj = result;
143
+ if (typeof result === "string") {
144
+ try {
145
+ obj = JSON.parse(result);
146
+ }
147
+ catch {
148
+ // 纯文本:可能含 stderr 前缀行 + JSON。用正则抓 "id":"..."。
149
+ const m = result.match(/"id"\s*:\s*"([^"]+)"/);
150
+ if (m)
151
+ return m[1];
152
+ return undefined;
153
+ }
154
+ }
155
+ if (obj && typeof obj === "object") {
156
+ const id = obj.id;
157
+ if (typeof id === "string" && id.trim())
158
+ return id.trim();
159
+ for (const k of ["data", "result", "job"]) {
160
+ const inner = obj[k];
161
+ if (inner && typeof inner === "object") {
162
+ const innerId = inner.id;
163
+ if (typeof innerId === "string" && innerId.trim())
164
+ return innerId.trim();
165
+ }
166
+ }
167
+ }
168
+ return undefined;
169
+ }
30
170
  function registerFullHooks(api) {
31
171
  // SKILL RETRIEVER HOOK: before_prompt_build hook
32
172
  const pluginConfig = api.pluginConfig || {};
@@ -2,6 +2,8 @@ import type { XYChannelConfig, A2ACommand } from "./types.js";
2
2
  export interface SendCommandViaPushParams {
3
3
  config: XYChannelConfig;
4
4
  command: A2ACommand;
5
+ /** 指定设备的 pushId(多设备路由)。未传时回退到 getAllPushIds()[0]。 */
6
+ pushId?: string;
5
7
  }
6
8
  /**
7
9
  * Send a tool command through the push channel (for cron-triggered tool calls).
@@ -24,16 +24,22 @@ export async function sendCommandViaPush(params) {
24
24
  command.header?.name ??
25
25
  "Command";
26
26
  logger.log(`[CRON-CMD] Sending command via push, intent=${intentName}`);
27
- // 1. Load push IDs, use first one
27
+ // 1. pushId:优先用调用方解析出的设备 pushId(多设备路由正确);
28
+ // 未提供时回退到 getAllPushIds()[0](单设备兼容旧行为)。
28
29
  let pushId = config.pushId;
29
- try {
30
- const pushIdList = await getAllPushIds();
31
- if (pushIdList.length > 0) {
32
- pushId = pushIdList[0];
33
- }
30
+ if (params.pushId) {
31
+ pushId = params.pushId;
34
32
  }
35
- catch (error) {
36
- logger.error("[CRON-CMD] Failed to load pushIds:", error);
33
+ else {
34
+ try {
35
+ const pushIdList = await getAllPushIds();
36
+ if (pushIdList.length > 0) {
37
+ pushId = pushIdList[0];
38
+ }
39
+ }
40
+ catch (error) {
41
+ logger.error("[CRON-CMD] Failed to load pushIds:", error);
42
+ }
37
43
  }
38
44
  // 2. Build and send push notification with command in directives
39
45
  const pushService = new XYPushService(config);
@@ -7,6 +7,8 @@ import { callGatewayTool } from "openclaw/plugin-sdk/agent-harness-runtime";
7
7
  import * as os from "os";
8
8
  import { sendCommand } from "./formatter.js";
9
9
  import { resolveXYConfig } from "./config.js";
10
+ import { configManager } from "./utils/config-manager.js";
11
+ import { setJobPushId } from "./utils/cron-push-map.js";
10
12
  import { logger } from "./utils/logger.js";
11
13
  import { readFileSync, readdirSync } from "fs";
12
14
  import { join } from "path";
@@ -39,6 +41,11 @@ export async function handleCronQueryEvent(context, cfg) {
39
41
  break;
40
42
  case "add":
41
43
  result = await callGatewayTool("cron.add", { timeoutMs: GATEWAY_TIMEOUT_MS }, params ?? {});
44
+ // 捕获 jobId↔pushId:cron-query 路径由 channel 自己建 job,
45
+ // 此处 context 握着 sessionId,configManager 有对应设备 pushId。
46
+ await persistCronPushMap(context.sessionId, result).catch((err) => {
47
+ logger.error(`[CRON-QUERY] Failed to persist cron-push-map:`, err);
48
+ });
42
49
  break;
43
50
  case "update":
44
51
  result = await callGatewayTool("cron.update", { timeoutMs: GATEWAY_TIMEOUT_MS }, {
@@ -106,6 +113,35 @@ export async function handleCronQueryEvent(context, cfg) {
106
113
  log.warn(`[CRON-QUERY] Missing cfg/sessionId/taskId/messageId, skipping sendCommand`);
107
114
  }
108
115
  }
116
+ /**
117
+ * 从 cron.add 结果中提取 jobId,配合 sessionId 对应的 pushId 写入映射。
118
+ */
119
+ async function persistCronPushMap(sessionId, result) {
120
+ logger.log(`[CRONMAP] cron-query persist: sessionId=${sessionId ?? "(none)"}, resultType=${typeof result}`);
121
+ if (!sessionId) {
122
+ logger.log(`[CRONMAP] cron-query skip: no sessionId in context`);
123
+ return;
124
+ }
125
+ let jobId;
126
+ if (result && typeof result === "object") {
127
+ const id = result.id;
128
+ if (typeof id === "string" && id.trim())
129
+ jobId = id.trim();
130
+ }
131
+ if (!jobId) {
132
+ const preview = typeof result === "string" ? result.slice(0, 200) : JSON.stringify(result)?.slice(0, 200);
133
+ logger.log(`[CRONMAP] cron-query skip: no jobId in result. preview=${preview ?? "(empty)"}`);
134
+ return;
135
+ }
136
+ const pushId = configManager.getPushId(sessionId);
137
+ if (!pushId) {
138
+ logger.log(`[CRONMAP] cron-query skip: configManager has no pushId for sessionId=${sessionId}`);
139
+ return;
140
+ }
141
+ logger.log(`[CRONMAP] cron-query writing map: jobId=${jobId}, pushId=${pushId.substring(0, 16)}...`);
142
+ await setJobPushId(jobId, { pushId, sessionId, source: "cron-query" });
143
+ logger.log(`[CRONMAP] cron-query map written OK`);
144
+ }
109
145
  /**
110
146
  * Read local cron folder directly (bypassing openclaw RPC) and return
111
147
  * run records from the last 7 days, grouped by date and sorted by time.
@@ -5,7 +5,10 @@ import { logger } from "./utils/logger.js";
5
5
  import { getCurrentTaskId, getCurrentMessageId } from "./task-manager.js";
6
6
  import { redactSensitiveText, containsSensitiveInfo } from "./sensitive-redactor.js";
7
7
  import { rewriteOutboundApprovalText } from "./approval-bridge.js";
8
- import { isCronToolCall } from "./tools/session-manager.js";
8
+ import { isCronToolCall, getCurrentCronJobId } from "./tools/session-manager.js";
9
+ import { configManager } from "./utils/config-manager.js";
10
+ import { getPushIdByJobId } from "./utils/cron-push-map.js";
11
+ import { getAllPushIds } from "./utils/pushid-manager.js";
9
12
  // ─────────────────────────────────────────────────────────────
10
13
  // 敏感信息脱敏辅助函数
11
14
  // ─────────────────────────────────────────────────────────────
@@ -201,6 +204,45 @@ export async function sendStatusUpdate(params) {
201
204
  log.log(`[A2A_STATUS] Sending status-update, text="${redactedText}"`);
202
205
  await wsManager.sendMessage(sessionId, outboundMessage);
203
206
  }
207
+ /**
208
+ * 解析 cron fire 时应使用的 pushId(多设备路由)。
209
+ *
210
+ * 查询链(逐级回退):
211
+ * 1. 合成 sessionId → jobId → cron-push-map.json → 创建时记录的设备 pushId
212
+ * 2. configManager 同进程的 sessionId→pushId(进程未重启时兜底)
213
+ * 3. getAllPushIds()[0](单设备兼容旧行为)
214
+ * 返回 undefined 表示走兜底(由 sendCommandViaPush 内部处理)。
215
+ */
216
+ async function resolveCronPushId(sessionId, config) {
217
+ // 1. jobId → 持久化映射
218
+ const jobId = getCurrentCronJobId(sessionId);
219
+ if (jobId) {
220
+ const hit = await getPushIdByJobId(jobId);
221
+ if (hit?.pushId) {
222
+ logger.log(`[CRON-PUSH] Resolved pushId via map, jobId=${jobId}`);
223
+ return hit.pushId;
224
+ }
225
+ }
226
+ // 2. 同进程 configManager 兜底
227
+ const sessionPushId = configManager.getPushId(sessionId);
228
+ if (sessionPushId) {
229
+ logger.log(`[CRON-PUSH] Resolved pushId via configManager (fallback)`);
230
+ return sessionPushId;
231
+ }
232
+ // 3. config.pushId / getAllPushIds()[0] 交给 sendCommandViaPush 内部处理
233
+ void config;
234
+ try {
235
+ const all = await getAllPushIds();
236
+ if (all.length > 0) {
237
+ logger.log(`[CRON-PUSH] Resolved pushId via getAllPushIds[0] (legacy fallback)`);
238
+ return all[0];
239
+ }
240
+ }
241
+ catch (error) {
242
+ logger.error(`[CRON-PUSH] getAllPushIds failed:`, error);
243
+ }
244
+ return undefined;
245
+ }
204
246
  /**
205
247
  * Send a command as an artifact update (final=false).
206
248
  *
@@ -222,7 +264,10 @@ export async function sendCommand(params) {
222
264
  // (b) toolCallId marked by before_tool_call hook from openclaw's sessionKey.
223
265
  if (sessionId.startsWith("cron-") || isCronToolCall(toolCallId)) {
224
266
  const { sendCommandViaPush } = await import("./cron-command.js");
225
- return sendCommandViaPush({ config, command: commands[0] });
267
+ // 解析正确设备的 pushId:合成 sessionId jobId → cron-push-map。
268
+ // provider.ts 在 isCron 分支已把 jobId 绑定到该 sessionId。
269
+ const pushId = await resolveCronPushId(sessionId, config);
270
+ return sendCommandViaPush({ config, command: commands[0], pushId });
226
271
  }
227
272
  // ── Normal mode: WebSocket ─────────────────────────────────────
228
273
  // Dynamic lookup: use latest taskId/messageId from task-manager (handles steer/interrupt),
@@ -56,22 +56,16 @@ export function extractRunCrossTaskContext(parts) {
56
56
  return null;
57
57
  }
58
58
  const candidate = item;
59
- const fileLocalUrls = Array.isArray(candidate.fileLocalUrls)
60
- ? candidate.fileLocalUrls.filter((url) => typeof url === "string" && url.length > 0)
61
- : [];
62
- const fileRemoteUrls = Array.isArray(candidate.fileRemoteUrls)
63
- ? candidate.fileRemoteUrls.filter((url) => typeof url === "string" && url.length > 0)
64
- : [];
65
- const fileNames = Array.isArray(candidate.fileNames)
66
- ? candidate.fileNames.filter((name) => typeof name === "string" && name.length > 0)
67
- : [];
68
- if (fileLocalUrls.length === 0 && fileRemoteUrls.length === 0) {
59
+ const fileName = typeof candidate.fileName === "string" ? candidate.fileName.trim() : "";
60
+ const fileId = typeof candidate.fileId === "string" ? candidate.fileId.trim() : "";
61
+ const mimeType = typeof candidate.mimeType === "string" ? candidate.mimeType.trim() : "";
62
+ if (!fileName || !fileId) {
69
63
  return null;
70
64
  }
71
65
  return {
72
- ...(fileLocalUrls.length > 0 ? { fileLocalUrls } : {}),
73
- ...(fileRemoteUrls.length > 0 ? { fileRemoteUrls } : {}),
74
- ...(fileNames.length > 0 && fileNames.length === fileRemoteUrls.length ? { fileNames } : {}),
66
+ fileName,
67
+ fileId,
68
+ ...(mimeType ? { mimeType } : {}),
75
69
  };
76
70
  })
77
71
  .filter((item) => item !== null);
@@ -9,7 +9,7 @@
9
9
  // models.providers.xiaoyiprovider.models = [...]
10
10
  import { createHash } from "crypto";
11
11
  import { logger } from "./utils/logger.js";
12
- import { getCurrentSessionContext } from "./tools/session-manager.js";
12
+ import { getCurrentSessionContext, setCurrentCronJobId } from "./tools/session-manager.js";
13
13
  import { selfEvolutionManager } from "./utils/self-evolution-manager.js";
14
14
  import { notifyModelStreaming } from "./bot.js";
15
15
  // ── Retry config ──────────────────────────────────────────────
@@ -506,6 +506,14 @@ export const xiaoyiProvider = {
506
506
  // 3. UID-based fallback: sha256(uid).hex[:32]_timestamp
507
507
  const isCron = isCronTriggered(context.messages);
508
508
  if (isCron) {
509
+ // fire 期 jobId 桥:把首条消息 `[cron:<jobId> ...]` 解析出的真实 jobId
510
+ // 绑定到本次 cron run 的合成 sessionId。sendCommand 凭同一 sessionId
511
+ // 反查 jobId → cron-push-map → 正确设备的 pushId(多设备路由)。
512
+ const cronJobId = extractCronUuid(context.messages);
513
+ const cronCtx = getCurrentSessionContext();
514
+ if (cronJobId && cronCtx?.sessionId) {
515
+ setCurrentCronJobId(cronCtx.sessionId, cronJobId);
516
+ }
509
517
  const fallbackPrefix = ctx.extraParams?.[FALLBACK_PREFIX_KEY];
510
518
  if (typeof fallbackPrefix === "string") {
511
519
  const fallbackValue = `${fallbackPrefix}_${Date.now()}`;
@@ -39,17 +39,23 @@ function buildCrossTaskExecuteResultCommand(code, message, sentFiles = []) {
39
39
  async function sendRunCrossTaskResult(params) {
40
40
  const { config, sessionId, taskId, messageId, context, resultCode, resultMessage } = params;
41
41
  const sentFiles = Array.isArray(context.sentFiles) ? context.sentFiles : [];
42
+ const fileCardCount = sentFiles.length;
42
43
  const statusCommand = buildDistributionStatusCommand(context);
43
44
  const resultCommand = buildCrossTaskExecuteResultCommand(resultCode, resultMessage, sentFiles);
44
- await sendCommand({
45
- config,
46
- sessionId,
47
- taskId,
48
- messageId,
49
- commands: [statusCommand, resultCommand],
50
- });
51
- clearRunCrossTaskSentFiles(context);
52
- logger.log(`${RUN_CROSS_TASK_LOG_TAG} sent cross-task result, sessionId=${sessionId}, taskId=${taskId}, code=${resultCode}, sentFileCount=${sentFiles.length}, clearedSentFileCount=${sentFiles.length}, messageLength=${resultMessage.length}`);
45
+ try {
46
+ await sendCommand({
47
+ config,
48
+ sessionId,
49
+ taskId,
50
+ messageId,
51
+ commands: [statusCommand, resultCommand],
52
+ });
53
+ logger.log(`${RUN_CROSS_TASK_LOG_TAG} sent cross-task result, sessionId=${sessionId}, taskId=${taskId}, code=${resultCode}, fileCardCount=${fileCardCount}, messageLength=${resultMessage.length}`);
54
+ }
55
+ finally {
56
+ clearRunCrossTaskSentFiles(context);
57
+ logger.log(`${RUN_CROSS_TASK_LOG_TAG} cleared cross-task sentFiles, sessionId=${sessionId}, taskId=${taskId}, clearedFileCardCount=${fileCardCount}`);
58
+ }
53
59
  }
54
60
  /**
55
61
  * 清理 /tmp/xy_channel 目录中超过 24 小时的旧文件
@@ -116,6 +122,7 @@ export function createXYReplyDispatcher(params) {
116
122
  let hasSentResponse = false;
117
123
  let finalSent = false;
118
124
  let accumulatedText = "";
125
+ let finalReplyText = "";
119
126
  const initialRunCrossTaskContext = getCurrentSessionContext()?.runCrossTaskContext;
120
127
  const getRunCrossTaskContext = () => {
121
128
  return getCurrentSessionContext()?.runCrossTaskContext ?? initialRunCrossTaskContext;
@@ -172,6 +179,10 @@ export function createXYReplyDispatcher(params) {
172
179
  scopedLog().log(`[DELIVER SKIP] Empty text, skipping`);
173
180
  return;
174
181
  }
182
+ if (info?.kind === "final") {
183
+ finalReplyText = text;
184
+ scopedLog().log(`[DELIVER] Captured final reply text, length=${finalReplyText.length}`);
185
+ }
175
186
  // 🔑 如果 onPartialReply 已经流式发送过文本,deliver 不再重复发送
176
187
  if (hasSentResponse) {
177
188
  scopedLog().log(`[DELIVER SKIP] Already sent via onPartialReply`);
@@ -232,7 +243,11 @@ export function createXYReplyDispatcher(params) {
232
243
  }
233
244
  // 正常模式(或未被steer的dispatch)
234
245
  if (hasSentResponse && !finalSent) {
235
- scopedLog().log(`[ON-IDLE] Sending accumulated text, length=${accumulatedText.length}`);
246
+ const trimmedFinalReplyText = finalReplyText.trim();
247
+ const trimmedAccumulatedText = accumulatedText.trim();
248
+ const crossTaskResultMessage = trimmedFinalReplyText || trimmedAccumulatedText;
249
+ const crossTaskResultSource = trimmedFinalReplyText ? "final" : "accumulated";
250
+ scopedLog().log(`[ON-IDLE] [SendCrossResult]Sending cross-task result, source=${crossTaskResultSource}, resultMessage.length=${crossTaskResultMessage.length}`);
236
251
  try {
237
252
  const runCrossTaskContext = getRunCrossTaskContext();
238
253
  if (runCrossTaskContext) {
@@ -243,7 +258,7 @@ export function createXYReplyDispatcher(params) {
243
258
  messageId: currentMessageId,
244
259
  context: runCrossTaskContext,
245
260
  resultCode: "0",
246
- resultMessage: accumulatedText,
261
+ resultMessage: crossTaskResultMessage,
247
262
  });
248
263
  }
249
264
  // 🔑 使用动态taskId发送完成状态
@@ -1,7 +1,6 @@
1
1
  import { sendCommand, sendStatusUpdate } from "../formatter.js";
2
2
  import { getXYWebSocketManager } from "../client.js";
3
3
  import { getCurrentMessageId, getCurrentTaskId } from "../task-manager.js";
4
- import { createSendFileToUserTool } from "./send-file-to-user-tool.js";
5
4
  import { logger } from "../utils/logger.js";
6
5
  const LOG_TAG = "[SendPcDeviceTask]";
7
6
  const SEND_CROSS_RESULT_LOG_TAG = "[SendCrossResult]";
@@ -28,7 +27,7 @@ function buildModelToolResult(result) {
28
27
  let message = `跨端任务执行结果:${baseMessage}`;
29
28
  if (resultStatus === "对端设备执行任务成功且返回有文件") {
30
29
  if (result.autoSendFileToUser?.success) {
31
- message += "\n\n对端设备返回了文件,系统已自动通过 send_file_to_user 将文件卡片发送给用户。请你基于跨端任务结果生成最终回复,告知用户任务已完成且文件已发送。";
30
+ message += "\n\n对端设备返回了文件,系统已自动将文件卡片发送给用户。请你基于跨端任务结果生成最终回复,告知用户任务已完成且文件已发送。";
32
31
  }
33
32
  else {
34
33
  const errorMessage = result.autoSendFileToUser?.error || "未知错误";
@@ -56,22 +55,92 @@ function buildCrossDeviceResult(params) {
56
55
  };
57
56
  return result;
58
57
  }
58
+ function collectSentFileCards(sentFiles) {
59
+ const cardsByFileId = new Map();
60
+ for (const card of sentFiles) {
61
+ const fileId = typeof card.fileId === "string" ? card.fileId.trim() : "";
62
+ const fileName = typeof card.fileName === "string" ? card.fileName.trim() : "";
63
+ const mimeType = typeof card.mimeType === "string" ? card.mimeType.trim() : "";
64
+ if (!fileId || !fileName || cardsByFileId.has(fileId)) {
65
+ continue;
66
+ }
67
+ cardsByFileId.set(fileId, {
68
+ fileId,
69
+ fileName,
70
+ ...(mimeType ? { mimeType } : {}),
71
+ });
72
+ }
73
+ return Array.from(cardsByFileId.values());
74
+ }
75
+ function countSentFileCards(sentFiles) {
76
+ return collectSentFileCards(sentFiles).length;
77
+ }
78
+ async function sendFileCardsToUser(ctx, fileCards) {
79
+ const { config, sessionId, taskId, messageId } = ctx;
80
+ const currentTaskId = getCurrentTaskId(sessionId) ?? taskId;
81
+ const currentMessageId = getCurrentMessageId(sessionId) ?? messageId;
82
+ const wsManager = getXYWebSocketManager(config);
83
+ const sentFileCards = [];
84
+ for (const card of fileCards) {
85
+ const agentResponse = {
86
+ msgType: "agent_response",
87
+ agentId: config.agentId,
88
+ sessionId,
89
+ taskId: currentTaskId,
90
+ msgDetail: JSON.stringify({
91
+ jsonrpc: "2.0",
92
+ id: currentMessageId,
93
+ result: {
94
+ kind: "artifact-update",
95
+ append: true,
96
+ lastChunk: false,
97
+ final: false,
98
+ artifact: {
99
+ artifactId: currentTaskId,
100
+ parts: [
101
+ {
102
+ kind: "file",
103
+ file: {
104
+ name: card.fileName,
105
+ mimeType: card.mimeType,
106
+ fileId: card.fileId,
107
+ },
108
+ },
109
+ ],
110
+ },
111
+ },
112
+ error: { code: 0 },
113
+ }),
114
+ };
115
+ logger.log(`${SEND_CROSS_RESULT_LOG_TAG} sending file card by fileId, fileName=${card.fileName}`);
116
+ await wsManager.sendMessage(sessionId, agentResponse);
117
+ sentFileCards.push({ fileName: card.fileName, fileId: card.fileId });
118
+ }
119
+ return sentFileCards;
120
+ }
59
121
  async function autoSendFileToUserIfNeeded(result, ctx) {
60
122
  const sentFiles = Array.isArray(result.sentFiles) ? result.sentFiles : [];
61
123
  if (sentFiles.length === 0) {
62
124
  return result;
63
125
  }
64
- logger.log(`${SEND_CROSS_RESULT_LOG_TAG} auto sending ${sentFiles.length} cross-device file(s) to user`);
126
+ const fileCards = collectSentFileCards(sentFiles);
127
+ if (fileCards.length === 0) {
128
+ const errorMessage = "Cross-device result contains no valid fileCards.";
129
+ logger.error(`${SEND_CROSS_RESULT_LOG_TAG} auto file card send skipped, error=${errorMessage}`);
130
+ return {
131
+ ...result,
132
+ autoSendFileToUser: {
133
+ success: false,
134
+ error: errorMessage,
135
+ },
136
+ };
137
+ }
138
+ logger.log(`${SEND_CROSS_RESULT_LOG_TAG} auto sending cross-device file cards, fileCardCount=${fileCards.length}`);
65
139
  try {
66
- const sendFileTool = createSendFileToUserTool(ctx);
67
- const sendFileResult = await (async () => {
68
- const results = [];
69
- for (const sentFileParams of sentFiles) {
70
- results.push(await sendFileTool.execute("auto_send_cross_device_file", sentFileParams));
71
- }
72
- return results;
73
- })();
74
- logger.log(`${SEND_CROSS_RESULT_LOG_TAG} auto send_file_to_user completed`);
140
+ const sendFileResult = {
141
+ fileCards: await sendFileCardsToUser(ctx, fileCards),
142
+ };
143
+ logger.log(`${SEND_CROSS_RESULT_LOG_TAG} auto file card send completed, fileCardCount=${sendFileResult.fileCards.length}`);
75
144
  return {
76
145
  ...result,
77
146
  autoSendFileToUser: {
@@ -82,7 +151,7 @@ async function autoSendFileToUserIfNeeded(result, ctx) {
82
151
  }
83
152
  catch (error) {
84
153
  const errorMessage = error instanceof Error ? error.message : String(error);
85
- logger.error(`${SEND_CROSS_RESULT_LOG_TAG} auto send_file_to_user failed, error=${errorMessage}`);
154
+ logger.error(`${SEND_CROSS_RESULT_LOG_TAG} auto file card send failed, error=${errorMessage}`);
86
155
  return {
87
156
  ...result,
88
157
  autoSendFileToUser: {
@@ -218,7 +287,7 @@ export function createSendCrossDeviceTaskTool(ctx) {
218
287
  }
219
288
  settled = true;
220
289
  const modelResult = buildModelToolResult(result);
221
- logger.log(`${LOG_TAG} completed, success=${result.success}, code=${result.code}, sentFileCount=${result.sentFiles.length}`);
290
+ logger.log(`${LOG_TAG} completed, success=${result.success}, code=${result.code}, fileCardCount=${countSentFileCards(result.sentFiles)}`);
222
291
  cleanup();
223
292
  resolve(buildResultText(modelResult));
224
293
  };
@@ -226,7 +295,7 @@ export function createSendCrossDeviceTaskTool(ctx) {
226
295
  if (event.sessionId && event.sessionId !== sessionId && event.sessionId !== distributionSessionId) {
227
296
  return;
228
297
  }
229
- logger.log(`${SEND_CROSS_RESULT_LOG_TAG} received result, status=${event.status}, code=${event.code}, sentFileCount=${event.sentFiles.length}`);
298
+ logger.log(`${SEND_CROSS_RESULT_LOG_TAG} received result, status=${event.status}, code=${event.code}, fileCardCount=${countSentFileCards(event.sentFiles)}`);
230
299
  void (async () => {
231
300
  if (resultHandlingStarted) {
232
301
  return;
@@ -174,16 +174,6 @@ b. 操作超时时间为2分钟(120秒),请勿重复调用此工具,如
174
174
  throw new Error(`fileNames length (${fileNames.length}) must match fileRemoteUrls length (${fileRemoteUrls.length})`);
175
175
  }
176
176
  }
177
- if (ctx.runCrossTaskContext && (fileLocalUrls.length > 0 || fileRemoteUrls.length > 0)) {
178
- const cachedSentFiles = appendRunCrossTaskSentFiles([
179
- {
180
- ...(fileLocalUrls.length > 0 ? { fileLocalUrls } : {}),
181
- ...(fileRemoteUrls.length > 0 ? { fileRemoteUrls } : {}),
182
- ...(fileNames.length > 0 ? { fileNames } : {}),
183
- },
184
- ], ctx.runCrossTaskContext);
185
- logger.log(`[RunCrossTask] cached ${cachedSentFiles.length} send_file_to_user input(s) for cross-task result`);
186
- }
187
177
  // Get WebSocket manager
188
178
  const wsManager = getXYWebSocketManager(config);
189
179
  // Create upload service
@@ -237,6 +227,7 @@ b. 操作超时时间为2分钟(120秒),请勿重复调用此工具,如
237
227
  }
238
228
  // Build and send agent_response messages for each file
239
229
  const sentFiles = [];
230
+ let cachedSentFilesForReturn = [];
240
231
  for (const uploadedFile of uploadedFiles) {
241
232
  const { fileName, fileId, mimeType } = uploadedFile;
242
233
  const agentResponse = {
@@ -273,6 +264,12 @@ b. 操作超时时间为2分钟(120秒),请勿重复调用此工具,如
273
264
  // Send WebSocket message
274
265
  await wsManager.sendMessage(sessionId, agentResponse);
275
266
  logger.log(`[SEND-FILE-TO-USER] send ${fileName} file to user success`);
267
+ if (ctx.runCrossTaskContext) {
268
+ const sentFileCard = { fileName, fileId, mimeType };
269
+ const cachedSentFiles = appendRunCrossTaskSentFiles([sentFileCard], ctx.runCrossTaskContext);
270
+ cachedSentFilesForReturn = cachedSentFiles;
271
+ logger.log(`[RunCrossTask] cached file card for cross-task result, fileName=${fileName}, cachedFileCardCount=${cachedSentFiles.length}`);
272
+ }
276
273
  sentFiles.push({ fileName, fileId });
277
274
  }
278
275
  return {
@@ -282,7 +279,8 @@ b. 操作超时时间为2分钟(120秒),请勿重复调用此工具,如
282
279
  text: JSON.stringify({
283
280
  sentFiles,
284
281
  count: sentFiles.length,
285
- message: `成功发送 ${sentFiles.length} 个文件到用户设备`
282
+ message: `成功发送 ${sentFiles.length} 个文件到用户设备`,
283
+ cachedSentFiles: cachedSentFilesForReturn
286
284
  }),
287
285
  },
288
286
  ],
@@ -1,5 +1,5 @@
1
1
  import { AsyncLocalStorage } from "async_hooks";
2
- import type { RunCrossTaskContext, SentFileParams, XYChannelConfig } from "../types.js";
2
+ import type { RunCrossTaskContext, SentFileCard, XYChannelConfig } from "../types.js";
3
3
  export interface SessionContext {
4
4
  config: XYChannelConfig;
5
5
  sessionId: string;
@@ -27,6 +27,12 @@ export declare function markCronToolCall(toolCallId: string): void;
27
27
  export declare function isCronToolCall(toolCallId?: string): boolean;
28
28
  /** Clean up a cron tool call marker after use. */
29
29
  export declare function clearCronToolCall(toolCallId: string): void;
30
+ /** 把 fire 期解析出的 jobId 绑定到当前 cron run 的合成 sessionId。 */
31
+ export declare function setCurrentCronJobId(cronSessionId: string, jobId: string): void;
32
+ /** 凭合成 cron sessionId 取本次 run 的 jobId(供 sendCommand 反查 pushId)。 */
33
+ export declare function getCurrentCronJobId(cronSessionId?: string): string | undefined;
34
+ /** cron run 结束后清理。 */
35
+ export declare function clearCronJobId(cronSessionId: string): void;
30
36
  export declare const asyncLocalStorage: AsyncLocalStorage<SessionContext>;
31
37
  /**
32
38
  * Register a session context for tool access.
@@ -79,6 +85,6 @@ export declare function cleanupStaleSessions(): number;
79
85
  * Get the current number of active sessions (for diagnostics).
80
86
  */
81
87
  export declare function getActiveSessionCount(): number;
82
- export declare function appendRunCrossTaskSentFiles(sentFiles: SentFileParams[], explicitRunCrossTaskContext?: RunCrossTaskContext): SentFileParams[];
88
+ export declare function appendRunCrossTaskSentFiles(sentFiles: SentFileCard[], explicitRunCrossTaskContext?: RunCrossTaskContext): SentFileCard[];
83
89
  export declare function clearRunCrossTaskSentFiles(explicitRunCrossTaskContext?: RunCrossTaskContext): void;
84
90
  export {};
@@ -48,6 +48,32 @@ export function isCronToolCall(toolCallId) {
48
48
  export function clearCronToolCall(toolCallId) {
49
49
  cronToolCallMap.delete(toolCallId);
50
50
  }
51
+ // ── Cron session ↔ jobId bridge ────────────────────────────────────
52
+ // fire 期 jobId 传递桥。provider.ts 在 isCron 分支从首条消息
53
+ // `[cron:<jobId> ...]` 解析出真实 jobId,写入合成 cron sessionId;
54
+ // sendCommand/formatter 凭同一合成 sessionId 反查 jobId,再去
55
+ // cron-push-map 取对应设备的 pushId。同一 cron run 内 ALS 上下文共享,
56
+ // 合成 sessionId 在 provider 与 sendCommand 之间一致。
57
+ if (!_g.__xyCronSessionJobId) {
58
+ _g.__xyCronSessionJobId = new Map();
59
+ }
60
+ const cronSessionJobIdMap = _g.__xyCronSessionJobId;
61
+ /** 把 fire 期解析出的 jobId 绑定到当前 cron run 的合成 sessionId。 */
62
+ export function setCurrentCronJobId(cronSessionId, jobId) {
63
+ if (cronSessionId && jobId) {
64
+ cronSessionJobIdMap.set(cronSessionId, jobId);
65
+ }
66
+ }
67
+ /** 凭合成 cron sessionId 取本次 run 的 jobId(供 sendCommand 反查 pushId)。 */
68
+ export function getCurrentCronJobId(cronSessionId) {
69
+ if (!cronSessionId)
70
+ return undefined;
71
+ return cronSessionJobIdMap.get(cronSessionId);
72
+ }
73
+ /** cron run 结束后清理。 */
74
+ export function clearCronJobId(cronSessionId) {
75
+ cronSessionJobIdMap.delete(cronSessionId);
76
+ }
51
77
  // AsyncLocalStorage for thread-safe session context isolation
52
78
  export const asyncLocalStorage = new AsyncLocalStorage();
53
79
  // Export AsyncLocalStorage to globalThis so logger.ts can access it
@@ -245,36 +271,49 @@ export function cleanupStaleSessions() {
245
271
  export function getActiveSessionCount() {
246
272
  return activeSessions.size;
247
273
  }
248
- function normalizeSentFileParams(params) {
249
- const fileLocalUrls = Array.isArray(params.fileLocalUrls)
250
- ? params.fileLocalUrls.filter((url) => typeof url === "string" && url.length > 0)
251
- : [];
252
- const fileRemoteUrls = Array.isArray(params.fileRemoteUrls)
253
- ? params.fileRemoteUrls.filter((url) => typeof url === "string" && url.length > 0)
254
- : [];
255
- const fileNames = Array.isArray(params.fileNames)
256
- ? params.fileNames.filter((name) => typeof name === "string" && name.length > 0)
257
- : [];
258
- if (fileLocalUrls.length === 0 && fileRemoteUrls.length === 0) {
274
+ function normalizeSentFileCard(card) {
275
+ if (!card || typeof card !== "object") {
276
+ return null;
277
+ }
278
+ const fileName = typeof card.fileName === "string" ? card.fileName.trim() : "";
279
+ const fileId = typeof card.fileId === "string" ? card.fileId.trim() : "";
280
+ const mimeType = typeof card.mimeType === "string" ? card.mimeType.trim() : "";
281
+ if (!fileName || !fileId) {
259
282
  return null;
260
283
  }
261
284
  return {
262
- ...(fileLocalUrls.length > 0 ? { fileLocalUrls } : {}),
263
- ...(fileRemoteUrls.length > 0 ? { fileRemoteUrls } : {}),
264
- ...(fileNames.length > 0 && fileNames.length === fileRemoteUrls.length ? { fileNames } : {}),
285
+ fileName,
286
+ fileId,
287
+ ...(mimeType ? { mimeType } : {}),
265
288
  };
266
289
  }
290
+ function dedupeSentFilesByFileId(existing, incoming) {
291
+ const knownFileIds = new Set();
292
+ for (const card of existing) {
293
+ if (card.fileId) {
294
+ knownFileIds.add(card.fileId);
295
+ }
296
+ }
297
+ return incoming.filter((card) => {
298
+ if (knownFileIds.has(card.fileId)) {
299
+ return false;
300
+ }
301
+ knownFileIds.add(card.fileId);
302
+ return true;
303
+ });
304
+ }
267
305
  export function appendRunCrossTaskSentFiles(sentFiles, explicitRunCrossTaskContext) {
268
306
  const context = asyncLocalStorage.getStore() ?? null;
269
307
  const runCrossTaskContext = explicitRunCrossTaskContext ?? context?.runCrossTaskContext;
270
308
  const normalizedSentFiles = sentFiles
271
- .map((params) => normalizeSentFileParams(params))
272
- .filter((params) => params !== null);
309
+ .map((card) => normalizeSentFileCard(card))
310
+ .filter((card) => card !== null);
273
311
  if (!runCrossTaskContext || normalizedSentFiles.length === 0) {
274
312
  return runCrossTaskContext?.sentFiles ?? [];
275
313
  }
276
314
  const existing = Array.isArray(runCrossTaskContext.sentFiles) ? runCrossTaskContext.sentFiles : [];
277
- const merged = [...existing, ...normalizedSentFiles];
315
+ const dedupedSentFiles = dedupeSentFilesByFileId(existing, normalizedSentFiles);
316
+ const merged = [...existing, ...dedupedSentFiles];
278
317
  runCrossTaskContext.sentFiles = merged;
279
318
  const sessionWithRef = Array.from(activeSessions.values()).find((session) => session.runCrossTaskContext === runCrossTaskContext);
280
319
  if (sessionWithRef?.runCrossTaskContext) {
@@ -68,7 +68,7 @@ export interface CrossDeviceTaskResultEvent {
68
68
  sessionId: string;
69
69
  code: string;
70
70
  message: string;
71
- sentFiles: SentFileParams[];
71
+ sentFiles: SentFileCard[];
72
72
  status: "success" | "failed";
73
73
  rawEvent: any;
74
74
  }
@@ -78,13 +78,13 @@ export interface RunCrossTaskContext {
78
78
  isDistributed: boolean;
79
79
  networkId: string;
80
80
  isSupportAgent: boolean;
81
- sentFiles: SentFileParams[];
81
+ sentFiles: SentFileCard[];
82
82
  rawContext: any;
83
83
  }
84
- export interface SentFileParams {
85
- fileLocalUrls?: string[];
86
- fileRemoteUrls?: string[];
87
- fileNames?: string[];
84
+ export interface SentFileCard {
85
+ fileName: string;
86
+ fileId: string;
87
+ mimeType?: string;
88
88
  }
89
89
  export interface A2ATaskArtifactUpdateEvent {
90
90
  taskId: string;
@@ -3,8 +3,9 @@
3
3
  * Specifically handles pushId which can be updated per-session.
4
4
  */
5
5
  declare class ConfigManager {
6
- private sessionPushIds;
7
- private globalPushId;
6
+ private get sessionPushIds();
7
+ private get globalPushId();
8
+ private set globalPushId(value);
8
9
  /**
9
10
  * Update push ID for a specific session.
10
11
  */
@@ -1,12 +1,32 @@
1
1
  // Dynamic configuration manager for runtime updates
2
+ //
3
+ // NOTE: xy_channel is loaded from multiple module resolution paths
4
+ // (plugin entry vs tool registration), which duplicates class instances.
5
+ // sessionPushIds and globalPushId must live on globalThis so all copies
6
+ // share the same Map — same reason activeSessions is on globalThis in
7
+ // session-manager.ts.
2
8
  import { logger } from "./logger.js";
9
+ const _g = globalThis;
10
+ if (!_g.__xyConfigSessionPushIds) {
11
+ _g.__xyConfigSessionPushIds = new Map();
12
+ }
13
+ if (!_g.__xyConfigGlobalPushId) {
14
+ _g.__xyConfigGlobalPushId = null;
15
+ }
3
16
  /**
4
17
  * Manages dynamic configuration updates that can change at runtime.
5
18
  * Specifically handles pushId which can be updated per-session.
6
19
  */
7
20
  class ConfigManager {
8
- sessionPushIds = new Map();
9
- globalPushId = null;
21
+ get sessionPushIds() {
22
+ return _g.__xyConfigSessionPushIds;
23
+ }
24
+ get globalPushId() {
25
+ return _g.__xyConfigGlobalPushId;
26
+ }
27
+ set globalPushId(value) {
28
+ _g.__xyConfigGlobalPushId = value;
29
+ }
10
30
  /**
11
31
  * Update push ID for a specific session.
12
32
  */
@@ -0,0 +1,26 @@
1
+ /** 映射来源,区分两种创建路径。 */
2
+ export type CronPushMapSource = "conversation" | "cron-query" | "exec-cli";
3
+ export interface CronPushMapEntry {
4
+ pushId: string;
5
+ /** 创建该 cron 时的 xy sessionId,便于同进程兜底。 */
6
+ sessionId?: string;
7
+ /** 冗余记录设备类型,fire 时可按设备类型做差异化处理。 */
8
+ deviceType?: string;
9
+ source?: CronPushMapSource;
10
+ createdAt: number;
11
+ }
12
+ export interface CronPushMapFile {
13
+ version: 1;
14
+ entries: Record<string, CronPushMapEntry>;
15
+ }
16
+ /** 写入/更新一条 jobId → pushId 映射。 */
17
+ export declare function setJobPushId(jobId: string, entry: Omit<CronPushMapEntry, "createdAt">): Promise<void>;
18
+ /** fire 时主查询:按 jobId 取 pushId。 */
19
+ export declare function getPushIdByJobId(jobId: string): Promise<{
20
+ pushId: string;
21
+ entry: CronPushMapEntry;
22
+ } | null>;
23
+ /** 删除一条映射(cron job 被移除时清理)。 */
24
+ export declare function removeJob(jobId: string): Promise<void>;
25
+ /** 对账:删除 openclaw 里已不存在的 job,避免映射无限增长。 */
26
+ export declare function pruneStale(existingJobIds: Set<string>): Promise<void>;
@@ -0,0 +1,131 @@
1
+ // Cron job ↔ pushId 持久化映射
2
+ //
3
+ // 背景:cron 定时任务触发时,工具调用走 push 通道(sendCommandViaPush),
4
+ // 需要正确的 pushId 才能推到"创建该任务的那台设备"。pushIdList.json 是
5
+ // 扁平去重数组,无法区分设备;本文件按真实 jobId 保存创建时的 pushId,
6
+ // fire 时通过 jobId 反查即可定位到正确设备。
7
+ //
8
+ // jobId 的两端来源(均为真实 jobId,无需规范化反解):
9
+ // - 写入:after_tool_call 拦 cron/add → event.result.id;
10
+ // cron-query-handler inline → result.id
11
+ // - 读取:provider.ts extractCronUuid(context.messages) → "[cron:<jobId> ...]"
12
+ import { promises as fs } from "fs";
13
+ import * as path from "path";
14
+ import { logger } from "./logger.js";
15
+ const CRON_PUSH_MAP_FILE = "/home/sandbox/.openclaw/cron-push-map.json";
16
+ async function ensureDirectoryExists(filePath) {
17
+ const dir = path.dirname(filePath);
18
+ try {
19
+ await fs.mkdir(dir, { recursive: true });
20
+ }
21
+ catch (error) {
22
+ logger.error(`[CronPushMap] Failed to create directory ${dir}:`, error);
23
+ }
24
+ }
25
+ async function readMap() {
26
+ try {
27
+ await ensureDirectoryExists(CRON_PUSH_MAP_FILE);
28
+ const content = await fs.readFile(CRON_PUSH_MAP_FILE, "utf-8");
29
+ const parsed = JSON.parse(content);
30
+ if (parsed &&
31
+ typeof parsed === "object" &&
32
+ parsed.version === 1 &&
33
+ parsed.entries &&
34
+ typeof parsed.entries === "object") {
35
+ return parsed;
36
+ }
37
+ logger.warn(`[CronPushMap] Unexpected file shape, returning empty map`);
38
+ return { version: 1, entries: {} };
39
+ }
40
+ catch (error) {
41
+ if (error.code === "ENOENT") {
42
+ return { version: 1, entries: {} };
43
+ }
44
+ logger.error(`[CronPushMap] Failed to read map:`, error);
45
+ return { version: 1, entries: {} };
46
+ }
47
+ }
48
+ async function writeMap(map) {
49
+ try {
50
+ await ensureDirectoryExists(CRON_PUSH_MAP_FILE);
51
+ await fs.writeFile(CRON_PUSH_MAP_FILE, JSON.stringify(map, null, 2), "utf-8");
52
+ }
53
+ catch (error) {
54
+ logger.error(`[CronPushMap] Failed to write map:`, error);
55
+ throw error;
56
+ }
57
+ }
58
+ /** 写入/更新一条 jobId → pushId 映射。 */
59
+ export async function setJobPushId(jobId, entry) {
60
+ if (!jobId || typeof jobId !== "string") {
61
+ logger.warn(`[CronPushMap] Invalid jobId: ${jobId}`);
62
+ return;
63
+ }
64
+ if (!entry.pushId || typeof entry.pushId !== "string") {
65
+ logger.warn(`[CronPushMap] Skipping setJobPushId: missing pushId for jobId=${jobId}`);
66
+ return;
67
+ }
68
+ try {
69
+ const map = await readMap();
70
+ map.entries[jobId] = { ...entry, createdAt: Date.now() };
71
+ await writeMap(map);
72
+ logger.log(`[CronPushMap] Saved jobId=${jobId}, source=${entry.source ?? "?"}, pushId=${entry.pushId.substring(0, 20)}...`);
73
+ }
74
+ catch (error) {
75
+ logger.error(`[CronPushMap] Failed to setJobPushId:`, error);
76
+ // 不抛出,避免影响主流程
77
+ }
78
+ }
79
+ /** fire 时主查询:按 jobId 取 pushId。 */
80
+ export async function getPushIdByJobId(jobId) {
81
+ if (!jobId)
82
+ return null;
83
+ try {
84
+ const map = await readMap();
85
+ const entry = map.entries[jobId];
86
+ if (entry && entry.pushId) {
87
+ return { pushId: entry.pushId, entry };
88
+ }
89
+ return null;
90
+ }
91
+ catch (error) {
92
+ logger.error(`[CronPushMap] Failed to getPushIdByJobId:`, error);
93
+ return null;
94
+ }
95
+ }
96
+ /** 删除一条映射(cron job 被移除时清理)。 */
97
+ export async function removeJob(jobId) {
98
+ if (!jobId)
99
+ return;
100
+ try {
101
+ const map = await readMap();
102
+ if (map.entries[jobId]) {
103
+ delete map.entries[jobId];
104
+ await writeMap(map);
105
+ logger.log(`[CronPushMap] Removed jobId=${jobId}`);
106
+ }
107
+ }
108
+ catch (error) {
109
+ logger.error(`[CronPushMap] Failed to removeJob:`, error);
110
+ }
111
+ }
112
+ /** 对账:删除 openclaw 里已不存在的 job,避免映射无限增长。 */
113
+ export async function pruneStale(existingJobIds) {
114
+ try {
115
+ const map = await readMap();
116
+ let removed = 0;
117
+ for (const key of Object.keys(map.entries)) {
118
+ if (!existingJobIds.has(key)) {
119
+ delete map.entries[key];
120
+ removed++;
121
+ }
122
+ }
123
+ if (removed > 0) {
124
+ await writeMap(map);
125
+ logger.log(`[CronPushMap] Pruned ${removed} stale entries`);
126
+ }
127
+ }
128
+ catch (error) {
129
+ logger.error(`[CronPushMap] Failed to pruneStale:`, error);
130
+ }
131
+ }
@@ -7,6 +7,7 @@ import { HeartbeatManager } from "./heartbeat.js";
7
7
  import { MessageQueue } from "./message-queue.js";
8
8
  import { v4 as uuidv4 } from "uuid";
9
9
  const RUN_CROSS_TASK_LOG_TAG = "[RunCrossTask]";
10
+ const SEND_CROSS_RESULT_LOG_TAG = "[SendCrossResult]";
10
11
  const RUN_CROSS_TASK_QUERY_PREFIX = `# 跨设备协作接收模式<br/><br/>你当前正在接收来自其他设备的协作请求。请注意以下角色转换规则:<br/><br/>## 角色转换规则<br/><br/>- 指令中的"我" = 发送请求的远程用户<br/>- 你是执行协作任务的本地智能体<br/>- 任务完成后结果会自动回传给请求来源设备<br/><br/>## 核心执行规则<br/><br/>### ✅ 正确行为<br/>1. **识别本机任务**:当指令提到你所在的设备类型(PC/手机/平板),理解为"我自己"<br/>2. **本地执行**:直接使用本地工具完成任务,不要转发<br/>3. **结果回传**:执行完成后,结果会通过软总线自动回传给请求来源设备<br/><br/>### <span class="emoji emoji2716"></span> 禁止行为<br/>1. 禁止再次调用 \`send_cross_device_task\`(你已经是目标设备)<br/>2. 禁止设备澄清(指令已明确指定目标设备)<br/>3. 禁止无限循环(只能执行或回复,不能转发)<br/><br/>## 📁 文件操作规范(核心)<br/><br/>### 强制使用 search_file 的场景<br/>**以下场景必须先使用 \`search_file\` 工具确认文件路径:**<br/><br/>1. **指令包含设备关键词**:PC、电脑、手机、平板、Pad、笔记本等<br/>2. **涉及文件操作**:读取、编辑、删除、移动、复制、查找文件<br/><br/>### 执行流程<br/>\`\`\`<br/>收到文件操作指令<br/> ↓<br/>检测设备关键词(PC/电脑/手机/平板/Pad等)<br/> ↓<br/>使用 search_file 搜索文件 ← 必须步骤<br/> ↓<br/>确认文件实际路径<br/> ↓<br/>执行文件操作<br/> ↓<br/>返回结果<br/>\`\`\`<br/><br/>### 禁止行为<br/>- <span class="emoji emoji2716"></span> 禁止猜测文件路径<br/>- <span class="emoji emoji2716"></span> 禁止假设文件位置<br/>- <span class="emoji emoji2716"></span> 禁止跳过 search_file 步骤<br/><br/>## 示例<br/><br/>### 示例1:文件操作<br/>**指令**:"帮我到PC上下载昨天晚上写的PPT"<br/><br/>**执行流程**:<br/>1. ✅ 检测到"PC" → 使用 \`search_file\` 搜索 "*.ppt" 或 "*.pptx"<br/>2. 确认文件路径(如:D:\\Documents\\报告.pptx)<br/>3. 执行下载操作<br/><br/>### 示例2:文件编辑<br/>**指令**:"帮我修改电脑上的配置文件config.json"<br/><br/>**执行流程**:<br/>1. ✅ 检测到"电脑" → 使用 \`search_file\` 搜索 "config.json"<br/>2. 确认文件路径(如:C:\\Project\\config.json)<br/>3. 读取并修改文件<br/><br/>### 示例3:文件查找<br/>**指令**:"在平板上找一下我的PDF文档"<br/><br/>**执行流程**:<br/>1. ✅ 检测到"平板" → 使用 \`search_file\` 搜索 "*.pdf"<br/>2. 列出搜索结果供用户选择<br/><br/>## 判断流程<br/><br/>\`\`\`<br/>收到协作指令<br/> ↓<br/>检查目标设备<br/> ↓<br/>目标设备 == 本机?<br/> ↓<br/>是 → 本地执行(禁止send_cross_device_task)<br/> ↓<br/> 涉及文件? → 先用search_file确认路径<br/> ↓<br/>否 → 检查是否需要转发<br/> ↓<br/>需要转发 → 调用send_cross_device_task<br/>不需要 → 回复"无法处理"<br/>\`\`\``;
11
12
  /**
12
13
  * Manages single WebSocket connection to XY server.
@@ -397,26 +398,23 @@ export class XYWebSocketManager extends EventEmitter {
397
398
  if (!entry || typeof entry !== "object") {
398
399
  return null;
399
400
  }
400
- const fileLocalUrls = Array.isArray(entry.fileLocalUrls)
401
- ? entry.fileLocalUrls.filter((url) => typeof url === "string" && url.length > 0)
402
- : [];
403
- const fileRemoteUrls = Array.isArray(entry.fileRemoteUrls)
404
- ? entry.fileRemoteUrls.filter((url) => typeof url === "string" && url.length > 0)
405
- : [];
406
- const fileNames = Array.isArray(entry.fileNames)
407
- ? entry.fileNames.filter((name) => typeof name === "string" && name.length > 0)
408
- : [];
409
- if (fileLocalUrls.length === 0 && fileRemoteUrls.length === 0) {
401
+ const candidate = entry;
402
+ const fileName = typeof candidate.fileName === "string" ? candidate.fileName.trim() : "";
403
+ const fileId = typeof candidate.fileId === "string" ? candidate.fileId.trim() : "";
404
+ const mimeType = typeof candidate.mimeType === "string" ? candidate.mimeType.trim() : "";
405
+ if (!fileName || !fileId) {
410
406
  return null;
411
407
  }
412
408
  return {
413
- ...(fileLocalUrls.length > 0 ? { fileLocalUrls } : {}),
414
- ...(fileRemoteUrls.length > 0 ? { fileRemoteUrls } : {}),
415
- ...(fileNames.length > 0 && fileNames.length === fileRemoteUrls.length ? { fileNames } : {}),
409
+ fileName,
410
+ fileId,
411
+ ...(mimeType ? { mimeType } : {}),
416
412
  };
417
413
  }).filter((entry) => entry !== null)
418
414
  : [];
419
415
  const status = code === "0" ? "success" : "failed";
416
+ const fileCardCount = sentFiles.length;
417
+ this.log(`${SEND_CROSS_RESULT_LOG_TAG} normalized CrossTaskExecuteResult, sessionId=${sessionId}, status=${status}, code=${code}, fileCardCount=${fileCardCount}, messageLength=${message.length}`);
420
418
  const event = {
421
419
  sessionId,
422
420
  code,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ynhcj/xiaoyi-channel",
3
- "version": "0.0.189-beta",
3
+ "version": "0.0.191-beta",
4
4
  "description": "OpenClaw Xiaoyi Channel plugin - Xiaoyi A2A protocol integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",