@ynhcj/xiaoyi-channel 0.0.199-beta → 0.0.200-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 || {};
package/dist/src/bot.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { updateSessionStoreEntry, updateSessionStore, resolveStorePath } from "openclaw/plugin-sdk/session-store-runtime";
2
2
  import { getXYRuntime } from "./runtime.js";
3
3
  import { createXYReplyDispatcher } from "./reply-dispatcher.js";
4
- import { parseA2AMessage, extractTextFromParts, extractFileParts, extractPushId, extractDeviceType, extractModelName, extractTriggerData, extractRunCrossTaskContext } from "./parser.js";
4
+ import { parseA2AMessage, extractTextFromParts, extractFileParts, extractPushId, extractDeviceType, extractAppVer, extractSdkApiVersion, extractModelName, extractTriggerData, extractRunCrossTaskContext } from "./parser.js";
5
5
  import { downloadFilesFromParts } from "./file-download.js";
6
6
  import { resolveXYConfig } from "./config.js";
7
7
  import { sendStatusUpdate, sendClearContextResponse, sendTasksCancelResponse, sendA2AResponse } from "./formatter.js";
@@ -139,6 +139,15 @@ export async function handleXYMessage(params) {
139
139
  if (deviceType) {
140
140
  log.log(`[BOT] Extracted deviceType: ${deviceType}`);
141
141
  }
142
+ // Extract app_ver and sdk_api_version if present
143
+ const appVer = extractAppVer(parsed.parts);
144
+ if (appVer) {
145
+ log.log(`[BOT] Extracted app_ver: ${appVer}`);
146
+ }
147
+ const sdkApiVersion = extractSdkApiVersion(parsed.parts);
148
+ if (sdkApiVersion) {
149
+ log.log(`[BOT] Extracted sdk_api_version: ${sdkApiVersion}`);
150
+ }
142
151
  // Extract modelName if present (used by provider.ts to override model.id)
143
152
  const modelName = extractModelName(parsed.parts);
144
153
  if (modelName) {
@@ -170,6 +179,8 @@ export async function handleXYMessage(params) {
170
179
  messageId: parsed.messageId,
171
180
  agentId: route.accountId,
172
181
  deviceType,
182
+ appVer: appVer ?? undefined,
183
+ sdkApiVersion: sdkApiVersion ?? undefined,
173
184
  modelName,
174
185
  runCrossTaskContext: runCrossTaskContext ?? undefined,
175
186
  });
@@ -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
  *
@@ -217,11 +259,15 @@ export async function sendCommand(params) {
217
259
  if (commands.length === 0) {
218
260
  throw new Error("sendCommand requires command or commands.");
219
261
  }
220
- // ── Cron mode: disabled ────────────────────────────────────────
221
- // sendCommandViaPush is disabled in this version. Cron-triggered
222
- // tool calls that try to send commands will be rejected.
262
+ // ── Cron mode: route through push channel ──────────────────────
263
+ // Detected via: (a) sessionId "cron-" prefix from synthetic session, OR
264
+ // (b) toolCallId marked by before_tool_call hook from openclaw's sessionKey.
223
265
  if (sessionId.startsWith("cron-") || isCronToolCall(toolCallId)) {
224
- throw new Error("sendCommandViaPush is disabled in this version");
266
+ const { sendCommandViaPush } = await import("./cron-command.js");
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 });
225
271
  }
226
272
  // ── Normal mode: WebSocket ─────────────────────────────────────
227
273
  // Dynamic lookup: use latest taskId/messageId from task-manager (handles steer/interrupt),
@@ -44,6 +44,18 @@ export declare function isTasksCancelMessage(method: string): boolean;
44
44
  * Looks for push_id in data parts under variables.systemVariables.push_id
45
45
  */
46
46
  export declare function extractPushId(parts: A2AMessagePart[]): string | null;
47
+ /**
48
+ * Extract app_ver from message parts.
49
+ * Looks for app_ver in data parts under variables.systemVariables.app_ver
50
+ * (same level as push_id).
51
+ */
52
+ export declare function extractAppVer(parts: A2AMessagePart[]): string | null;
53
+ /**
54
+ * Extract sdk_api_version from message parts.
55
+ * Looks for sdk_api_version in data parts under variables.systemVariables.sdk_api_version
56
+ * (same level as push_id).
57
+ */
58
+ export declare function extractSdkApiVersion(parts: A2AMessagePart[]): string | null;
47
59
  /**
48
60
  * Extract deviceType from message parts.
49
61
  * Looks for deviceType in data parts under variables.systemVariables.deviceType
@@ -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);
@@ -127,6 +121,38 @@ export function extractPushId(parts) {
127
121
  }
128
122
  return null;
129
123
  }
124
+ /**
125
+ * Extract app_ver from message parts.
126
+ * Looks for app_ver in data parts under variables.systemVariables.app_ver
127
+ * (same level as push_id).
128
+ */
129
+ export function extractAppVer(parts) {
130
+ for (const part of parts) {
131
+ if (part.kind === "data" && part.data) {
132
+ const appVer = part.data.variables?.systemVariables?.app_ver;
133
+ if (appVer && typeof appVer === "string") {
134
+ return appVer;
135
+ }
136
+ }
137
+ }
138
+ return null;
139
+ }
140
+ /**
141
+ * Extract sdk_api_version from message parts.
142
+ * Looks for sdk_api_version in data parts under variables.systemVariables.sdk_api_version
143
+ * (same level as push_id).
144
+ */
145
+ export function extractSdkApiVersion(parts) {
146
+ for (const part of parts) {
147
+ if (part.kind === "data" && part.data) {
148
+ const sdkApiVersion = part.data.variables?.systemVariables?.sdk_api_version;
149
+ if (sdkApiVersion && typeof sdkApiVersion === "string") {
150
+ return sdkApiVersion;
151
+ }
152
+ }
153
+ }
154
+ return null;
155
+ }
130
156
  /**
131
157
  * Extract deviceType from message parts.
132
158
  * Looks for deviceType in data parts under variables.systemVariables.deviceType
@@ -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()}`;
@@ -556,6 +564,15 @@ export const xiaoyiProvider = {
556
564
  // then ALS fallback.
557
565
  const deviceType = extractedDeviceType
558
566
  ?? getCurrentSessionContext()?.deviceType;
567
+ // app_ver and sdk_api_version from session context (ALS)
568
+ const appVer = sessionCtx?.appVer;
569
+ const sdkApiVersion = sessionCtx?.sdkApiVersion;
570
+ if (appVer) {
571
+ logger.log(`[xiaoyiprovider] app_ver: ${appVer}`);
572
+ }
573
+ if (sdkApiVersion) {
574
+ logger.log(`[xiaoyiprovider] sdk_api_version: ${sdkApiVersion}`);
575
+ }
559
576
  // 在发送给模型前,优化 systemPrompt 结构
560
577
  if (context.systemPrompt) {
561
578
  let sp = context.systemPrompt;
@@ -591,9 +608,19 @@ export const xiaoyiProvider = {
591
608
  logger.log(`[selfEvolution] selfEvolution flag: ${selfEvolutionEnabled}`);
592
609
  context.systemPrompt = applySelfEvolutionPrompt(context.systemPrompt, selfEvolutionEnabled);
593
610
  // Append device context to systemPrompt
594
- if (deviceType) {
611
+ if (deviceType || appVer || sdkApiVersion) {
595
612
  const displayDevice = (deviceType === "2in1") ? "鸿蒙PC" : deviceType;
596
- const deviceSection = `\n\n## Current User Device Context\nThe current user is using the following device: ${displayDevice}\nYou need to be aware of the user's current device and provide guidance accordingly. If the response involves device-related tools or actions, you must tailor the reply based on the user's current device, using device-specific references such as "saved to the Notes/Calendar on your {deviceType}.\n"`;
613
+ let deviceSection = `\n\n## Current User Device Context\n`;
614
+ if (deviceType) {
615
+ deviceSection += `The current user is using the following device: ${displayDevice}\n`;
616
+ }
617
+ if (appVer) {
618
+ deviceSection += `当前用户小艺APP版本是${appVer}\n`;
619
+ }
620
+ if (sdkApiVersion) {
621
+ deviceSection += `当前用户系统Rom版本是${sdkApiVersion}\n`;
622
+ }
623
+ deviceSection += `You need to be aware of the user's current device and provide guidance accordingly. If the response involves device-related tools or actions, you must tailor the reply based on the user's current device, using device-specific references such as "saved to the Notes/Calendar on your {deviceType}.\n"`;
597
624
  context.systemPrompt = (context.systemPrompt ?? "") + deviceSection;
598
625
  }
599
626
  // ── Trim user message metadata ──────────────────────
@@ -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发送完成状态
@@ -53,11 +53,7 @@ export function createAgentAsSkillTool(ctx) {
53
53
  },
54
54
  fileUrl: {
55
55
  type: "string",
56
- description: "文件可访问下载链接(完整HTTP/HTTPS地址)",
57
- },
58
- fileUrlLocal: {
59
- type: "string",
60
- description: "文件本地路径,如果提供此字段,工具会自动上传文件并将公网URL填入fileUrl",
56
+ description: "文件可访问下载链接(完整HTTP/HTTPS地址)或文件本地路径。若为本地路径,工具会自动上传文件并替换为公网URL",
61
57
  },
62
58
  },
63
59
  },
@@ -103,23 +99,22 @@ export function createAgentAsSkillTool(ctx) {
103
99
  if (filesInfo && filesInfo.length > 0) {
104
100
  const uploadService = new XYFileUploadService(config.fileUploadUrl, config.apiKey, config.uid);
105
101
  for (const fileInfo of filesInfo) {
106
- if (fileInfo.fileUrlLocal && !fileInfo.fileUrl) {
102
+ if (fileInfo.fileUrl && !/^https?:\/\//i.test(fileInfo.fileUrl)) {
103
+ const localPath = fileInfo.fileUrl;
107
104
  try {
108
- const publicUrl = await uploadService.uploadFileAndGetUrl(fileInfo.fileUrlLocal, "TEMPORARY_MATERIAL_DOC");
105
+ const publicUrl = await uploadService.uploadFileAndGetUrl(localPath, "TEMPORARY_MATERIAL_DOC");
109
106
  if (publicUrl) {
110
107
  fileInfo.fileUrl = publicUrl;
111
108
  }
112
109
  else {
113
- logger.warn("[AGENT-AS-SKILL] 上传文件未返回公网URL", { fileUrlLocal: fileInfo.fileUrlLocal });
110
+ logger.warn("[AGENT-AS-SKILL] 上传文件未返回公网URL", { localPath });
114
111
  }
115
112
  }
116
113
  catch (uploadError) {
117
- logger.error("[AGENT-AS-SKILL] 上传本地文件失败", { fileUrlLocal: fileInfo.fileUrlLocal, error: uploadError });
118
- throw new Error(`上传本地文件失败 (${fileInfo.fileUrlLocal}): ${uploadError instanceof Error ? uploadError.message : String(uploadError)}`);
114
+ logger.error("[AGENT-AS-SKILL] 上传本地文件失败", { localPath, error: uploadError });
115
+ throw new Error(`上传本地文件失败 (${localPath}): ${uploadError instanceof Error ? uploadError.message : String(uploadError)}`);
119
116
  }
120
117
  }
121
- // Remove fileUrlLocal from the final payload
122
- delete fileInfo.fileUrlLocal;
123
118
  }
124
119
  }
125
120
  // Get WebSocket manager
@@ -16,6 +16,12 @@ import { createGetAlarmToolSchemaTool } from "./get-alarm-tool-schema.js";
16
16
  import { createGetCollectionToolSchemaTool } from "./get-collection-tool-schema.js";
17
17
  // import { createGetEmailToolSchemaTool } from "./get-email-tool-schema.js";
18
18
  import { createLoginTokenTool } from "./login-token-tool.js";
19
+ import { createAgentAsSkillTool } from "./agent-as-skill-tool.js";
20
+ import { createDiscoverCrossDevicesTool } from "./discover-cross-devices-tool.js";
21
+ import { createSendCrossDeviceTaskTool } from "./send-cross-device-task-tool.js";
22
+ import { createDisplayA2UICardTool } from "./display-a2ui-card-tool.js";
23
+ import { createDisplayA2UICardByPathTool } from "./display-a2ui-card-bypath-tool.js";
24
+ import { createCheckPluginPrivilegeTool } from "./check-plugin-privilege-tool.js";
19
25
  import { logger } from "../utils/logger.js";
20
26
  /**
21
27
  * Create all XY channel tools for the given session context.
@@ -31,9 +37,10 @@ export function createAllTools(ctx) {
31
37
  logger.log(`[CREATE-ALL-TOOLS] creating tools`);
32
38
  return [
33
39
  createLocationTool(ctx),
34
- // createDiscoverCrossDevicesTool(ctx),
35
- // createSendCrossDeviceTaskTool(ctx),
36
- // createDisplayA2UICardTool(ctx),
40
+ createDiscoverCrossDevicesTool(ctx),
41
+ createSendCrossDeviceTaskTool(ctx),
42
+ createDisplayA2UICardTool(ctx),
43
+ createDisplayA2UICardByPathTool(ctx),
37
44
  createCallDeviceTool(ctx),
38
45
  createGetNoteToolSchemaTool(ctx),
39
46
  createGetCalendarToolSchemaTool(ctx),
@@ -51,7 +58,7 @@ export function createAllTools(ctx) {
51
58
  timestampToUtc8Tool,
52
59
  createSaveSelfEvolutionSkillTool(ctx),
53
60
  createLoginTokenTool(ctx),
54
- // createAgentAsSkillTool(ctx),
55
- // createCheckPluginPrivilegeTool(ctx),
61
+ createAgentAsSkillTool(ctx),
62
+ createCheckPluginPrivilegeTool(ctx),
56
63
  ];
57
64
  }
@@ -33,6 +33,7 @@ const DEVICE_TOOL_POLICY = {
33
33
  "convert_time_to_utc8_time",
34
34
  "save_self_evolution_skill",
35
35
  "displayA2UICard",
36
+ "display-a2ui-card-bypath",
36
37
  ],
37
38
  },
38
39
  };
@@ -0,0 +1,2 @@
1
+ import type { SessionContext } from "./session-manager.js";
2
+ export declare function createDisplayA2UICardByPathTool(ctx: SessionContext): any;
@@ -0,0 +1,68 @@
1
+ import fs from "fs/promises";
2
+ import { sendA2AResponse } from "../formatter.js";
3
+ import { getCurrentMessageId, getCurrentTaskId } from "../task-manager.js";
4
+ import { logger } from "../utils/logger.js";
5
+ class ToolInputError extends Error {
6
+ status = 400;
7
+ constructor(message) {
8
+ super(message);
9
+ this.name = "ToolInputError";
10
+ }
11
+ }
12
+ export function createDisplayA2UICardByPathTool(ctx) {
13
+ const { config, sessionId, taskId, messageId } = ctx;
14
+ return {
15
+ name: "display-a2ui-card-bypath",
16
+ label: "Display A2UI Card By Path",
17
+ description: "当三方 MCP 返回的数据已经保存到本地文件时,传入 cardDSLPath,读取文件内容并作为 A2UI 卡片 DSL 内容下发给端侧。",
18
+ parameters: {
19
+ type: "object",
20
+ properties: {
21
+ cardDSLPath: {
22
+ type: "string",
23
+ description: "保存三方 MCP 返回数据的本地文件路径。工具会读取该文件内容并下发给端侧。",
24
+ },
25
+ },
26
+ required: ["cardDSLPath"],
27
+ },
28
+ async execute(_toolCallId, params) {
29
+ const cardDSLPath = typeof params?.cardDSLPath === "string" ? params.cardDSLPath.trim() : "";
30
+ if (!cardDSLPath) {
31
+ throw new ToolInputError("缺少必填参数: cardDSLPath");
32
+ }
33
+ const currentTaskId = getCurrentTaskId(sessionId) ?? taskId;
34
+ const currentMessageId = getCurrentMessageId(sessionId) ?? messageId;
35
+ logger.log(`[DISPLAY-A2UI-CARD-BYPATH] reading card DSL file, path=${cardDSLPath}`);
36
+ let cardDSLContent;
37
+ try {
38
+ cardDSLContent = await fs.readFile(cardDSLPath, "utf8");
39
+ }
40
+ catch (error) {
41
+ throw new Error(`读取 cardDSLPath 文件失败: ${error instanceof Error ? error.message : String(error)}`);
42
+ }
43
+ await sendA2AResponse({
44
+ config,
45
+ sessionId,
46
+ taskId: currentTaskId,
47
+ messageId: currentMessageId,
48
+ text: cardDSLContent,
49
+ append: true,
50
+ final: false,
51
+ });
52
+ logger.log(`[DISPLAY-A2UI-CARD-BYPATH] card DSL sent, path=${cardDSLPath}, length=${cardDSLContent.length}`);
53
+ return {
54
+ content: [
55
+ {
56
+ type: "text",
57
+ text: JSON.stringify({
58
+ success: true,
59
+ cardDSLPath,
60
+ length: cardDSLContent.length,
61
+ message: "A2UI card DSL content sent successfully.",
62
+ }),
63
+ },
64
+ ],
65
+ };
66
+ },
67
+ };
68
+ }
@@ -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;
@@ -8,6 +8,10 @@ export interface SessionContext {
8
8
  messageId: string;
9
9
  agentId: string;
10
10
  deviceType?: string;
11
+ /** App version extracted from A2A systemVariables (variables.systemVariables.app_ver). */
12
+ appVer?: string;
13
+ /** SDK API version extracted from A2A systemVariables (variables.systemVariables.sdk_api_version). */
14
+ sdkApiVersion?: string;
11
15
  /** Model name extracted from A2A user variables (variables.clientVariables.modelName).
12
16
  * When set, provider.ts replaces model.id in the OpenAI request body. */
13
17
  modelName?: string;
@@ -27,6 +31,12 @@ export declare function markCronToolCall(toolCallId: string): void;
27
31
  export declare function isCronToolCall(toolCallId?: string): boolean;
28
32
  /** Clean up a cron tool call marker after use. */
29
33
  export declare function clearCronToolCall(toolCallId: string): void;
34
+ /** 把 fire 期解析出的 jobId 绑定到当前 cron run 的合成 sessionId。 */
35
+ export declare function setCurrentCronJobId(cronSessionId: string, jobId: string): void;
36
+ /** 凭合成 cron sessionId 取本次 run 的 jobId(供 sendCommand 反查 pushId)。 */
37
+ export declare function getCurrentCronJobId(cronSessionId?: string): string | undefined;
38
+ /** cron run 结束后清理。 */
39
+ export declare function clearCronJobId(cronSessionId: string): void;
30
40
  export declare const asyncLocalStorage: AsyncLocalStorage<SessionContext>;
31
41
  /**
32
42
  * Register a session context for tool access.
@@ -79,6 +89,6 @@ export declare function cleanupStaleSessions(): number;
79
89
  * Get the current number of active sessions (for diagnostics).
80
90
  */
81
91
  export declare function getActiveSessionCount(): number;
82
- export declare function appendRunCrossTaskSentFiles(sentFiles: SentFileParams[], explicitRunCrossTaskContext?: RunCrossTaskContext): SentFileParams[];
92
+ export declare function appendRunCrossTaskSentFiles(sentFiles: SentFileCard[], explicitRunCrossTaskContext?: RunCrossTaskContext): SentFileCard[];
83
93
  export declare function clearRunCrossTaskSentFiles(explicitRunCrossTaskContext?: RunCrossTaskContext): void;
84
94
  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
  */
@@ -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.199-beta",
3
+ "version": "0.0.200-beta",
4
4
  "description": "OpenClaw Xiaoyi Channel plugin - Xiaoyi A2A protocol integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",