@ynhcj/xiaoyi-channel 0.0.58-beta → 0.0.58-next

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.
Files changed (82) hide show
  1. package/dist/index.js +7 -4
  2. package/dist/src/bot.d.ts +1 -0
  3. package/dist/src/bot.js +44 -8
  4. package/dist/src/channel.js +22 -18
  5. package/dist/src/cspl/call-api.js +14 -11
  6. package/dist/src/cspl/config.js +3 -3
  7. package/dist/src/cspl/constants.d.ts +2 -0
  8. package/dist/src/cspl/constants.js +12 -0
  9. package/dist/src/cspl/utils.js +4 -2
  10. package/dist/src/file-download.js +3 -6
  11. package/dist/src/file-upload.js +52 -5
  12. package/dist/src/formatter.d.ts +2 -0
  13. package/dist/src/formatter.js +10 -2
  14. package/dist/src/monitor.js +1 -0
  15. package/dist/src/outbound.js +2 -7
  16. package/dist/src/parser.d.ts +6 -0
  17. package/dist/src/parser.js +16 -0
  18. package/dist/src/provider.d.ts +2 -0
  19. package/dist/src/provider.js +241 -0
  20. package/dist/src/reply-dispatcher.js +9 -1
  21. package/dist/src/tools/call-device-tool.d.ts +5 -0
  22. package/dist/src/tools/call-device-tool.js +130 -0
  23. package/dist/src/tools/create-alarm-tool.js +5 -16
  24. package/dist/src/tools/delete-alarm-tool.js +1 -4
  25. package/dist/src/tools/device-tool-map.d.ts +4 -0
  26. package/dist/src/tools/device-tool-map.js +37 -0
  27. package/dist/src/tools/find-pc-devices-tool.d.ts +5 -0
  28. package/dist/src/tools/find-pc-devices-tool.js +98 -0
  29. package/dist/src/tools/get-alarm-tool-schema.d.ts +16 -0
  30. package/dist/src/tools/get-alarm-tool-schema.js +11 -0
  31. package/dist/src/tools/get-calendar-tool-schema.d.ts +16 -0
  32. package/dist/src/tools/get-calendar-tool-schema.js +9 -0
  33. package/dist/src/tools/get-collection-tool-schema.d.ts +16 -0
  34. package/dist/src/tools/get-collection-tool-schema.js +10 -0
  35. package/dist/src/tools/get-contact-tool-schema.d.ts +16 -0
  36. package/dist/src/tools/get-contact-tool-schema.js +11 -0
  37. package/dist/src/tools/get-device-file-tool-schema.d.ts +16 -0
  38. package/dist/src/tools/get-device-file-tool-schema.js +10 -0
  39. package/dist/src/tools/get-email-tool-schema.d.ts +16 -0
  40. package/dist/src/tools/get-email-tool-schema.js +9 -0
  41. package/dist/src/tools/get-note-tool-schema.d.ts +16 -0
  42. package/dist/src/tools/get-note-tool-schema.js +10 -0
  43. package/dist/src/tools/get-photo-tool-schema.d.ts +16 -0
  44. package/dist/src/tools/get-photo-tool-schema.js +10 -0
  45. package/dist/src/tools/image-reading-tool.js +4 -7
  46. package/dist/src/tools/modify-alarm-tool.js +10 -23
  47. package/dist/src/tools/query-app-message-tool.d.ts +4 -0
  48. package/dist/src/tools/query-app-message-tool.js +138 -0
  49. package/dist/src/tools/query-memory-data-tool.d.ts +4 -0
  50. package/dist/src/tools/query-memory-data-tool.js +154 -0
  51. package/dist/src/tools/query-todo-task-tool.d.ts +4 -0
  52. package/dist/src/tools/query-todo-task-tool.js +133 -0
  53. package/dist/src/tools/save-file-to-phone-tool.d.ts +5 -0
  54. package/dist/src/tools/save-file-to-phone-tool.js +166 -0
  55. package/dist/src/tools/save-media-to-gallery-tool.d.ts +5 -0
  56. package/dist/src/tools/save-media-to-gallery-tool.js +174 -0
  57. package/dist/src/tools/schema-tool-factory.d.ts +27 -0
  58. package/dist/src/tools/schema-tool-factory.js +32 -0
  59. package/dist/src/tools/search-alarm-tool.js +6 -13
  60. package/dist/src/tools/search-calendar-tool.js +2 -0
  61. package/dist/src/tools/search-email-tool.d.ts +5 -0
  62. package/dist/src/tools/search-email-tool.js +137 -0
  63. package/dist/src/tools/search-file-tool.js +4 -4
  64. package/dist/src/tools/search-message-tool.js +1 -0
  65. package/dist/src/tools/search-photo-gallery-tool.js +2 -2
  66. package/dist/src/tools/send-command-to-car-tool.d.ts +5 -0
  67. package/dist/src/tools/send-command-to-car-tool.js +85 -0
  68. package/dist/src/tools/send-email-tool.d.ts +4 -0
  69. package/dist/src/tools/send-email-tool.js +134 -0
  70. package/dist/src/tools/send-file-to-user-tool.js +2 -4
  71. package/dist/src/tools/session-manager.d.ts +1 -0
  72. package/dist/src/tools/upload-file-tool.js +4 -4
  73. package/dist/src/tools/upload-photo-tool.js +2 -2
  74. package/dist/src/tools/xiaoyi-add-collection-tool.d.ts +4 -0
  75. package/dist/src/tools/xiaoyi-add-collection-tool.js +192 -0
  76. package/dist/src/tools/xiaoyi-collection-tool.js +43 -7
  77. package/dist/src/tools/xiaoyi-delete-collection-tool.d.ts +4 -0
  78. package/dist/src/tools/xiaoyi-delete-collection-tool.js +163 -0
  79. package/dist/src/utils/runtime-manager.d.ts +7 -0
  80. package/dist/src/utils/runtime-manager.js +42 -0
  81. package/openclaw.plugin.json +1 -0
  82. package/package.json +2 -3
@@ -0,0 +1,241 @@
1
+ // Xiaoyi Provider
2
+ // Wraps any OpenAI-compatible endpoint and injects dynamic headers
3
+ // (taskId, sessionId, conversationId) from the current XY channel session.
4
+ // Falls back to uid-based values when no session context is available.
5
+ //
6
+ // Users configure the underlying model in config:
7
+ // models.providers.xiaoyiprovider.baseUrl = "https://..."
8
+ // models.providers.xiaoyiprovider.api = "openai-completions"
9
+ // models.providers.xiaoyiprovider.models = [...]
10
+ import { createHash } from "crypto";
11
+ import { getCurrentSessionContext } from "./tools/session-manager.js";
12
+ // ── Retry config ──────────────────────────────────────────────
13
+ const RETRY_DELAYS_MS = [10_000, 20_000, 40_000, 60_000];
14
+ const MAX_RETRY_ATTEMPTS = 8;
15
+ /** Check if an errorMessage indicates a retryable provider error by type. */
16
+ function isRetryableProviderError(message) {
17
+ if (!message)
18
+ return false;
19
+ const lower = message.toLowerCase();
20
+ if (lower.includes("server_error"))
21
+ return true;
22
+ if (lower.includes("rate_limit_error"))
23
+ return true;
24
+ return false;
25
+ }
26
+ /** Compute retry delay in ms for the given 1-based attempt. */
27
+ function getRetryDelayMs(attempt) {
28
+ // attempt 1→10s, 2→20s, 3→40s, 4+→60s
29
+ if (attempt <= RETRY_DELAYS_MS.length)
30
+ return RETRY_DELAYS_MS[attempt - 1];
31
+ return RETRY_DELAYS_MS[RETRY_DELAYS_MS.length - 1]; // 60s cap
32
+ }
33
+ function sleep(ms) {
34
+ return new Promise((resolve) => setTimeout(resolve, ms));
35
+ }
36
+ /**
37
+ * Build a minimal EventStream-compatible object that replays a single
38
+ * done/error event. This avoids importing @mariozechner/pi-ai at runtime
39
+ * (the package is not available in the extension sandbox).
40
+ */
41
+ function buildReplayStream(result) {
42
+ let settled = false;
43
+ const queued = [
44
+ result.stopReason === "error"
45
+ ? { type: "error", reason: "error", error: result }
46
+ : { type: "done", reason: result.stopReason, message: result },
47
+ ];
48
+ return {
49
+ result: () => Promise.resolve(result),
50
+ push: () => { },
51
+ end: () => { },
52
+ [Symbol.asyncIterator]: () => {
53
+ return {
54
+ next: async () => {
55
+ if (settled || queued.length === 0) {
56
+ settled = true;
57
+ return { value: undefined, done: true };
58
+ }
59
+ settled = true;
60
+ return { value: queued.shift(), done: false };
61
+ },
62
+ };
63
+ },
64
+ };
65
+ }
66
+ /**
67
+ * Dynamic header keys injected via extraParams and forwarded to the HTTP request.
68
+ * Correspond to the three fields written to .xiaoyiruntime:
69
+ * TASK_ID, SESSION_ID, CONVERSATION_ID
70
+ */
71
+ const HEADER_TRACE_ID = "x-hag-trace-id";
72
+ const HEADER_SESSION_ID = "x-session-id";
73
+ const HEADER_INTERACTION_ID = "x-interaction-id";
74
+ /**
75
+ * Encode uid via SHA-256 and take first 32 hex chars.
76
+ */
77
+ function encodeUid(uid) {
78
+ return createHash("sha256").update(uid).digest("hex").slice(0, 32);
79
+ }
80
+ /**
81
+ * Get uid from channel config (OpenClawConfig -> channels -> xiaoyi-channel -> uid).
82
+ */
83
+ function getUidFromConfig(config) {
84
+ return config?.channels?.["xiaoyi-channel"]?.uid;
85
+ }
86
+ export const xiaoyiProvider = {
87
+ id: "xiaoyiprovider",
88
+ label: "Xiaoyi Provider",
89
+ docsPath: "/providers/models",
90
+ auth: [],
91
+ isCacheTtlEligible: () => true,
92
+ /**
93
+ * Inject dynamic session params into extraParams so they flow
94
+ * through to wrapStreamFn's ctx.extraParams.
95
+ *
96
+ * Priority:
97
+ * 1. Session context (from AsyncLocalStorage, set by bot.ts)
98
+ * 2. uid-based fallback: sha256(uid).hex[:32]_timestamp
99
+ * 3. No uid available → return undefined (no headers injected)
100
+ */
101
+ prepareExtraParams: (ctx) => {
102
+ const sessionCtx = getCurrentSessionContext();
103
+ if (sessionCtx) {
104
+ const taskId = sessionCtx.taskId;
105
+ const sessionId = taskId.split("&")[0];
106
+ const interactionId = taskId.split("&")[1] || "";
107
+ return {
108
+ ...ctx.extraParams,
109
+ [HEADER_TRACE_ID]: taskId,
110
+ [HEADER_SESSION_ID]: sessionId,
111
+ [HEADER_INTERACTION_ID]: interactionId,
112
+ };
113
+ }
114
+ // Fallback: uid-based values
115
+ const uid = getUidFromConfig(ctx.config);
116
+ if (!uid)
117
+ return undefined;
118
+ const prefix = encodeUid(uid);
119
+ const ts = Date.now();
120
+ const fallbackValue = `${prefix}_${ts}`;
121
+ return {
122
+ ...ctx.extraParams,
123
+ [HEADER_TRACE_ID]: fallbackValue,
124
+ [HEADER_SESSION_ID]: fallbackValue,
125
+ [HEADER_INTERACTION_ID]: fallbackValue,
126
+ };
127
+ },
128
+ /**
129
+ * Wrap the stream function to inject dynamic headers into every
130
+ * HTTP request to the model provider, and retry on retryable errors
131
+ * (server_error / rate_limit_error) with backoff: 10s, 20s, 40s, 60s (cap).
132
+ *
133
+ * The retry loop awaits stream.result() to detect errors before deciding
134
+ * whether to retry. This keeps the agent loop waiting (no timeout risk
135
+ * since the default agent timeout is 48 hours).
136
+ */
137
+ wrapStreamFn: (ctx) => {
138
+ const underlying = ctx.streamFn;
139
+ if (!underlying)
140
+ return underlying;
141
+ return async (model, context, options) => {
142
+ // 每次请求时从 ctx.extraParams 动态读取 header
143
+ const dynamicHeaders = {};
144
+ if (ctx.extraParams) {
145
+ const traceId = ctx.extraParams[HEADER_TRACE_ID];
146
+ const sessionId = ctx.extraParams[HEADER_SESSION_ID];
147
+ const interactionId = ctx.extraParams[HEADER_INTERACTION_ID];
148
+ if (typeof traceId === "string")
149
+ dynamicHeaders[HEADER_TRACE_ID] = traceId;
150
+ if (typeof sessionId === "string")
151
+ dynamicHeaders[HEADER_SESSION_ID] = sessionId;
152
+ if (typeof interactionId === "string")
153
+ dynamicHeaders[HEADER_INTERACTION_ID] = interactionId;
154
+ }
155
+ // 记录输入
156
+ console.log(`[xiaoyiprovider] input messages count: ${context.messages?.length ?? 0}`);
157
+ if (context.systemPrompt) {
158
+ console.log(`[xiaoyiprovider] system prompt length: ${context.systemPrompt.length}`);
159
+ }
160
+ // 在发送给模型前,优化 systemPrompt 结构
161
+ if (context.systemPrompt) {
162
+ let sp = context.systemPrompt;
163
+ const beforeLen = sp.length;
164
+ // 删除 ## Tooling 与 TOOLS.md 声明之间的内容
165
+ sp = sp.replace(/(## Tooling)[\s\S]*?(TOOLS\.md does not control tool availability; it is user guidance for how to use external tools\.)/, "$1\n\n$2");
166
+ // (1) 提取 ## Skills (mandatory) 到 </available_skills> 作为第一部分
167
+ const skillsMatch = sp.match(/(## Skills \(mandatory\)[\s\S]*?<\/available_skills>)/);
168
+ const part1 = skillsMatch ? skillsMatch[0] : '';
169
+ // (2) 提取 ## /home/sandbox/.openclaw/workspace/SOUL.md 到 ## /home/sandbox/.openclaw/workspace/TOOLS.md 之前的内容作为第二部分
170
+ const soulMatch = sp.match(/(## \/home\/sandbox\/\.openclaw\/workspace\/SOUL\.md[\s\S]*?)(?=## \/home\/sandbox\/\.openclaw\/workspace\/TOOLS\.md)/);
171
+ const part2 = soulMatch ? soulMatch[1].trim() : '';
172
+ if (part1 || part2) {
173
+ // 从原始位置删除已提取的部分
174
+ if (skillsMatch)
175
+ sp = sp.replace(skillsMatch[0], '');
176
+ if (soulMatch)
177
+ sp = sp.replace(soulMatch[1], '');
178
+ // 清理多余空行
179
+ sp = sp.replace(/\n{3,}/g, '\n\n');
180
+ // (3) 将 第二部分 + 第一部分 插入到 ## Runtime 上面
181
+ const combined = (part2 + '\n\n' + part1).trim();
182
+ if (combined && sp.includes('## Runtime')) {
183
+ sp = sp.replace('## Runtime', combined + '\n\n## Runtime');
184
+ }
185
+ }
186
+ console.log(`[xiaoyiprovider] system prompt optimized: ${beforeLen} -> ${sp.length}`);
187
+ context.systemPrompt = sp;
188
+ }
189
+ // Append device context to systemPrompt
190
+ const sessionCtx = getCurrentSessionContext();
191
+ if (sessionCtx?.deviceType) {
192
+ const rawDevice = sessionCtx.deviceType;
193
+ const displayDevice = (rawDevice === "2in1") ? "鸿蒙PC" : rawDevice;
194
+ 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"`;
195
+ context.systemPrompt = (context.systemPrompt ?? "") + deviceSection;
196
+ }
197
+ // ── Retry loop ─────────────────────────────────────────
198
+ for (let attempt = 0; attempt < MAX_RETRY_ATTEMPTS; attempt++) {
199
+ const stream = await underlying(model, context, {
200
+ ...options,
201
+ headers: {
202
+ ...options?.headers,
203
+ ...dynamicHeaders,
204
+ },
205
+ });
206
+ // Wait for the stream to settle (done or error) to inspect the result.
207
+ // stream.result() resolves to the final AssistantMessage (even on error).
208
+ const result = await stream.result();
209
+ // Check if this is a retryable error
210
+ if (result.stopReason === "error" && isRetryableProviderError(result.errorMessage)) {
211
+ const delayMs = getRetryDelayMs(attempt);
212
+ console.log(`[xiaoyiprovider] retryable error (attempt ${attempt + 1}/${MAX_RETRY_ATTEMPTS}): ` +
213
+ `${result.errorMessage} — retrying in ${delayMs}ms`);
214
+ await sleep(delayMs);
215
+ continue;
216
+ }
217
+ // Success or non-retryable error — log and return
218
+ if (result.stopReason === "error") {
219
+ console.log(`[xiaoyiprovider] non-retryable error: ${result.errorMessage}`);
220
+ }
221
+ else {
222
+ console.log(`[xiaoyiprovider] stream completed, usage: input=${result.usage?.input} output=${result.usage?.output}`);
223
+ }
224
+ // The original stream has already been consumed by result().
225
+ // Build a replay stream that delivers the final result.
226
+ return buildReplayStream(result);
227
+ }
228
+ // All retries exhausted — return the last attempt's real error via a new stream
229
+ console.log(`[xiaoyiprovider] all ${MAX_RETRY_ATTEMPTS} retries exhausted, surfacing last error`);
230
+ const lastStream = await underlying(model, context, {
231
+ ...options,
232
+ headers: {
233
+ ...options?.headers,
234
+ ...dynamicHeaders,
235
+ },
236
+ });
237
+ const lastResult = await lastStream.result();
238
+ return buildReplayStream(lastResult);
239
+ };
240
+ },
241
+ };
@@ -235,9 +235,11 @@ export function createXYReplyDispatcher(params) {
235
235
  text: "任务执行异常,请重试~",
236
236
  append: false,
237
237
  final: true,
238
+ errorCode: 99921111,
239
+ errorMessage: "任务执行异常,请重试",
238
240
  });
239
241
  finalSent = true;
240
- log(`[ON_IDLE] ✅ Sent error response`);
242
+ log(`[ON_IDLE] ✅ Sent error response with code: 99921111`);
241
243
  }
242
244
  catch (err) {
243
245
  error(`[ON_IDLE] Failed to send error response:`, err);
@@ -265,6 +267,12 @@ export function createXYReplyDispatcher(params) {
265
267
  log(`[TOOL START] Tool: ${name}, phase: ${phase}, taskId: ${currentTaskId}`);
266
268
  if (phase === "start") {
267
269
  const toolName = name || "unknown";
270
+ // call_device_tool 由自身 execute() 内部发送具体子工具名的状态更新
271
+ // get_xxx_tool_schema 是给 LLM 查 schema 用的,无需向用户展示
272
+ if (toolName === "call_device_tool" || toolName.endsWith("_tool_schema")) {
273
+ log(`[TOOL START] Skipping generic status for ${toolName}`);
274
+ return;
275
+ }
268
276
  try {
269
277
  await sendStatusUpdate({
270
278
  config,
@@ -0,0 +1,5 @@
1
+ /**
2
+ * call_device_tool - 通用端工具调度器。
3
+ * LLM 必须先通过 get_xxx_tool_schema 获取具体工具 schema,再用本工具执行。
4
+ */
5
+ export declare const callDeviceTool: any;
@@ -0,0 +1,130 @@
1
+ import { noteTool } from "./note-tool.js";
2
+ import { searchNoteTool } from "./search-note-tool.js";
3
+ import { modifyNoteTool } from "./modify-note-tool.js";
4
+ import { createAlarmTool } from "./create-alarm-tool.js";
5
+ import { searchAlarmTool } from "./search-alarm-tool.js";
6
+ import { modifyAlarmTool } from "./modify-alarm-tool.js";
7
+ import { deleteAlarmTool } from "./delete-alarm-tool.js";
8
+ import { searchContactTool } from "./search-contact-tool.js";
9
+ import { callPhoneTool } from "./call-phone-tool.js";
10
+ import { searchMessageTool } from "./search-message-tool.js";
11
+ import { sendMessageTool } from "./send-message-tool.js";
12
+ import { xiaoyiAddCollectionTool } from "./xiaoyi-add-collection-tool.js";
13
+ import { xiaoyiCollectionTool } from "./xiaoyi-collection-tool.js";
14
+ import { xiaoyiDeleteCollectionTool } from "./xiaoyi-delete-collection-tool.js";
15
+ import { calendarTool } from "./calendar-tool.js";
16
+ import { searchCalendarTool } from "./search-calendar-tool.js";
17
+ import { searchPhotoGalleryTool } from "./search-photo-gallery-tool.js";
18
+ import { uploadPhotoTool } from "./upload-photo-tool.js";
19
+ import { saveMediaToGalleryTool } from "./save-media-to-gallery-tool.js";
20
+ import { searchFileTool } from "./search-file-tool.js";
21
+ import { uploadFileTool } from "./upload-file-tool.js";
22
+ import { saveFileToPhoneTool } from "./save-file-to-phone-tool.js";
23
+ import { sendEmailTool } from "./send-email-tool.js";
24
+ import { searchEmailTool } from "./search-email-tool.js";
25
+ import { sendStatusUpdate } from "../formatter.js";
26
+ import { getCurrentSessionContext } from "./session-manager.js";
27
+ import { getCurrentTaskId, getCurrentMessageId } from "../task-manager.js";
28
+ /**
29
+ * 端工具注册表 —— 按 name 索引所有可通过 call_device_tool 调度的工具。
30
+ */
31
+ const deviceToolRegistry = new Map([
32
+ [noteTool.name, noteTool],
33
+ [searchNoteTool.name, searchNoteTool],
34
+ [modifyNoteTool.name, modifyNoteTool],
35
+ [createAlarmTool.name, createAlarmTool],
36
+ [searchAlarmTool.name, searchAlarmTool],
37
+ [modifyAlarmTool.name, modifyAlarmTool],
38
+ [deleteAlarmTool.name, deleteAlarmTool],
39
+ [searchContactTool.name, searchContactTool],
40
+ [callPhoneTool.name, callPhoneTool],
41
+ [searchMessageTool.name, searchMessageTool],
42
+ [sendMessageTool.name, sendMessageTool],
43
+ [xiaoyiAddCollectionTool.name, xiaoyiAddCollectionTool],
44
+ [xiaoyiCollectionTool.name, xiaoyiCollectionTool],
45
+ [xiaoyiDeleteCollectionTool.name, xiaoyiDeleteCollectionTool],
46
+ [calendarTool.name, calendarTool],
47
+ [searchCalendarTool.name, searchCalendarTool],
48
+ [searchPhotoGalleryTool.name, searchPhotoGalleryTool],
49
+ [uploadPhotoTool.name, uploadPhotoTool],
50
+ [saveMediaToGalleryTool.name, saveMediaToGalleryTool],
51
+ [searchFileTool.name, searchFileTool],
52
+ [uploadFileTool.name, uploadFileTool],
53
+ [saveFileToPhoneTool.name, saveFileToPhoneTool],
54
+ [sendEmailTool.name, sendEmailTool],
55
+ [searchEmailTool.name, searchEmailTool],
56
+ ]);
57
+ /**
58
+ * call_device_tool - 通用端工具调度器。
59
+ * LLM 必须先通过 get_xxx_tool_schema 获取具体工具 schema,再用本工具执行。
60
+ */
61
+ export const callDeviceTool = {
62
+ name: "call_device_tool",
63
+ label: "Call Device Tool",
64
+ description: "用户设备侧工具调用。必须先调用get_xxx_tool_schema获取了具体的工具schema,才能使用本工具执行对应设备侧工具。",
65
+ parameters: {
66
+ type: "object",
67
+ properties: {
68
+ toolName: {
69
+ type: "string",
70
+ description: "要调用的具体端工具名称,即get_xxx_tool_schema返回的工具的name",
71
+ },
72
+ arguments: {
73
+ type: "object",
74
+ description: "工具所需的具体参数JSON键值对",
75
+ },
76
+ },
77
+ required: ["toolName", "arguments"],
78
+ },
79
+ async execute(toolCallId, params) {
80
+ const { toolName, arguments: toolArgs } = params;
81
+ // 向用户端发送具体工具名的状态更新
82
+ const ctx = getCurrentSessionContext();
83
+ if (ctx) {
84
+ const currentTaskId = getCurrentTaskId(ctx.sessionId) ?? ctx.taskId;
85
+ const currentMessageId = getCurrentMessageId(ctx.sessionId) ?? ctx.messageId;
86
+ try {
87
+ await sendStatusUpdate({
88
+ config: ctx.config,
89
+ sessionId: ctx.sessionId,
90
+ taskId: currentTaskId,
91
+ messageId: currentMessageId,
92
+ text: `正在使用工具: ${toolName}...`,
93
+ state: "working",
94
+ });
95
+ }
96
+ catch (_) {
97
+ // 状态更新失败不影响工具执行
98
+ }
99
+ }
100
+ const tool = deviceToolRegistry.get(toolName);
101
+ if (!tool) {
102
+ return {
103
+ content: [
104
+ {
105
+ type: "text",
106
+ text: `端工具${toolName}不存在。请确保toolName为get_xxx_tool_schema返回的工具的name。`,
107
+ },
108
+ ],
109
+ };
110
+ }
111
+ try {
112
+ return await tool.execute(toolCallId, toolArgs);
113
+ }
114
+ catch (error) {
115
+ // ToolInputError (.name === "ToolInputError") 或其他参数校验错误
116
+ if (error.name === "ToolInputError") {
117
+ return {
118
+ content: [
119
+ {
120
+ type: "text",
121
+ text: `端工具参数错误:${error.message}。请确保arguments符合get_xxx_tool_schema返回的工具schema。`,
122
+ },
123
+ ],
124
+ };
125
+ }
126
+ // 非参数错误(网络超时等),直接向上抛出
127
+ throw error;
128
+ }
129
+ },
130
+ };
@@ -17,18 +17,7 @@ export const createAlarmTool = {
17
17
  name: "create_alarm",
18
18
  label: "Create Alarm",
19
19
  description: `在用户设备上创建闹钟。
20
-
21
- 必需参数:
22
- - alarmTime: 闹钟时间,格式必须为:YYYYMMDD hhmmss(例如:20240315 143000,表示2024年3月15日14:30:00)
23
-
24
- 可选参数(针对用户没有提及的参数,如果有默认参数,则发送请求时使用默认参数):
25
- - alarmTitle: 闹钟名称/标题,默认为"闹钟"
26
- - alarmSnoozeDuration: 小睡间隔(分钟),枚举值:5,10,15,20,25,30,默认10
27
- - alarmSnoozeTotal: 再响次数,枚举值:0,1,3,5,10,默认0(表示不再响)
28
- - alarmRingDuration: 响铃时长(分钟),枚举值:1,5,10,15,20,30,默认5
29
- - daysOfWakeType: 闹钟响铃类型,枚举值:0=单次响铃,1=法定节假日,2=每天,3=自定义时间,4=法定工作日,默认0
30
- - daysOfWeek: 自定义响铃星期,仅当daysOfWakeType=3(自定义时间)时必需且有效,其他情况不要传递此参数。数组或JSON字符串,枚举值:Mon,Tues,Wed,Thur,Fri,Sat,Sun。
31
-
20
+
32
21
  注意事项:
33
22
  a. 操作超时时间为60秒,请勿重复调用此工具,如果超时或失败,最多重试一次。
34
23
  b. 使用该工具之前需获取当前真实时间
@@ -39,7 +28,7 @@ b. 使用该工具之前需获取当前真实时间
39
28
  properties: {
40
29
  alarmTime: {
41
30
  type: "string",
42
- description: "闹钟时间,格式必须为:YYYYMMDD hhmmss(例如:20240315 143000)",
31
+ description: "闹钟时间,格式必须为:YYYYMMDD hhmmss(例如:20240315 143000,表示2024年3月15日14:30:00)",
43
32
  },
44
33
  alarmTitle: {
45
34
  type: "string",
@@ -51,7 +40,7 @@ b. 使用该工具之前需获取当前真实时间
51
40
  },
52
41
  alarmSnoozeTotal: {
53
42
  type: "number",
54
- description: "再响次数,枚举值:0,1,3,5,10,默认0",
43
+ description: "再响次数,枚举值:0,1,3,5,10,默认0(表示不再响)",
55
44
  },
56
45
  alarmRingDuration: {
57
46
  type: "number",
@@ -59,12 +48,12 @@ b. 使用该工具之前需获取当前真实时间
59
48
  },
60
49
  daysOfWakeType: {
61
50
  type: "number",
62
- description: "闹钟响铃类型:0=单次,1=法定节假日,2=每天,3=自定义,4=法定工作日,默认0",
51
+ description: "闹钟响铃类型,枚举值:0=单次响铃,1=法定节假日,2=每天,3=自定义时间,4=法定工作日,默认0",
63
52
  },
64
53
  daysOfWeek: {
65
54
  // 不指定 type,允许传入数组或 JSON 字符串
66
55
  // 具体的类型验证和转换在 execute 函数内部进行
67
- description: "自定义响铃星期(仅当daysOfWakeType=3时需要,其他情况不要传递),数组或JSON字符串,枚举值:Mon,Tues,Wed,Thur,Fri,Sat,Sun。",
56
+ description: "自定义响铃星期,仅当daysOfWakeType=3(自定义时间)时必需且有效,其他情况不要传递此参数。数组或JSON字符串,枚举值:Mon,Tues,Wed,Thur,Fri,Sat,Sun。",
68
57
  },
69
58
  },
70
59
  required: ["alarmTime"],
@@ -16,9 +16,6 @@ export const deleteAlarmTool = {
16
16
  label: "Delete Alarm",
17
17
  description: `删除用户设备上的闹钟。使用前必须先调用 search_alarm 或 create_alarm 工具获取闹钟的 entityId。
18
18
 
19
- 工具参数:
20
- - items: 要删除的闹钟列表,每个元素包含 entityId 字段。支持数组或 JSON 字符串格式。entityId 是闹钟的唯一标识符(从 search_alarm 或 create_alarm 工具获取)。
21
-
22
19
  使用示例:
23
20
  - 删除单个闹钟:{"items": [{"entityId": "6"}]}
24
21
  - 删除多个闹钟:{"items": [{"entityId": "6"}, {"entityId": "8"}]}
@@ -35,7 +32,7 @@ export const deleteAlarmTool = {
35
32
  items: {
36
33
  // 不指定 type,允许传入数组或 JSON 字符串
37
34
  // 具体的类型验证和转换在 execute 函数内部进行
38
- description: "要删除的闹钟列表,每个元素包含 entityId 字段。支持数组或 JSON 字符串格式。",
35
+ description: "要删除的闹钟列表,每个元素包含 entityId 字段。支持数组或 JSON 字符串格式。entityId 是闹钟的唯一标识符(从 search_alarm 或 create_alarm 工具获取)。",
39
36
  },
40
37
  },
41
38
  required: ["items"],
@@ -0,0 +1,4 @@
1
+ /** Known device type enum. */
2
+ export declare const DEVICE_TYPES: readonly ["car", "2in1", "phone"];
3
+ export type DeviceType = (typeof DEVICE_TYPES)[number];
4
+ export declare function filterToolsByDevice(tools: any[], deviceType?: string): any[];
@@ -0,0 +1,37 @@
1
+ // Device type to tool name mapping.
2
+ // Supports two modes:
3
+ // - allowlist: only listed tools are available (used for restrictive devices like car)
4
+ // - denylist: listed tools are blocked, everything else is available (used for permissive devices like pc)
5
+ // Tools NOT listed in any device entry → available to all devices (no restriction).
6
+ /** Known device type enum. */
7
+ export const DEVICE_TYPES = ["car", "2in1", "phone"];
8
+ const DEVICE_TOOL_POLICY = {
9
+ "2in1": {
10
+ allowlist: false,
11
+ tools: [
12
+ "xiaoyi_gui_agent",
13
+ "call_phone",
14
+ "send_message",
15
+ "search_message",
16
+ "search_contact",
17
+ "get_contact_tool_schema",
18
+ "query_collection",
19
+ "add_collection",
20
+ "delete_collection",
21
+ "get_collection_tool_schema",
22
+ ],
23
+ },
24
+ };
25
+ export function filterToolsByDevice(tools, deviceType) {
26
+ if (!deviceType)
27
+ return tools;
28
+ const policy = DEVICE_TOOL_POLICY[deviceType];
29
+ if (!policy)
30
+ return tools; // unrecognized device → no filtering
31
+ if (policy.allowlist) {
32
+ return tools.filter((tool) => policy.tools.includes(tool.name));
33
+ }
34
+ else {
35
+ return tools.filter((tool) => !policy.tools.includes(tool.name));
36
+ }
37
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * XY find PC devices tool - finds all PC devices associated with the user.
3
+ * Returns device IDs for use in subsequent file search operations.
4
+ */
5
+ export declare const findPcDevicesTool: any;
@@ -0,0 +1,98 @@
1
+ import { getXYWebSocketManager } from "../client.js";
2
+ import { sendCommand } from "../formatter.js";
3
+ import { getCurrentSessionContext } from "./session-manager.js";
4
+ /**
5
+ * XY find PC devices tool - finds all PC devices associated with the user.
6
+ * Returns device IDs for use in subsequent file search operations.
7
+ */
8
+ export const findPcDevicesTool = {
9
+ name: "find_pc_devices",
10
+ label: "Find PC Devices",
11
+ description: `查找用户所有PC/电脑设备,获取设备ID列表。当用户说"帮我找一下PC/电脑上的xxx文件"、"帮我搜索电脑上的xxx"等涉及PC设备的请求时,先调用此工具获取设备ID,再进行后续操作。注意:操作超时时间为60秒,请勿重复调用此工具,如果超时或失败,最多重试一次。回复约束:如果工具返回没有授权或者其他报错,只需要完整描述没有授权或者其他报错内容即可,不需要主动给用户提供解决方案,请严格遵守。`,
12
+ parameters: {
13
+ type: "object",
14
+ properties: {},
15
+ required: [],
16
+ },
17
+ async execute(toolCallId, params) {
18
+ // Get session context
19
+ const sessionContext = getCurrentSessionContext();
20
+ if (!sessionContext) {
21
+ throw new Error("No active XY session found. Find PC devices tool can only be used during an active conversation.");
22
+ }
23
+ const { config, sessionId, taskId, messageId } = sessionContext;
24
+ // Get WebSocket manager
25
+ const wsManager = getXYWebSocketManager(config);
26
+ // Build GetAllDevice command
27
+ const command = {
28
+ header: {
29
+ namespace: "Common",
30
+ name: "Action",
31
+ },
32
+ payload: {
33
+ cardParam: {},
34
+ executeParam: {
35
+ achieveType: "INTENT",
36
+ actionResponse: true,
37
+ bundleName: "com.huawei.hmos.aidispatchservice",
38
+ dimension: "",
39
+ executeMode: "background",
40
+ intentName: "GetAllDevice",
41
+ intentParam: {},
42
+ needUnlock: true,
43
+ permissionId: [],
44
+ timeOut: 5,
45
+ },
46
+ needUploadResult: true,
47
+ pageControlRelated: false,
48
+ responses: [{
49
+ displayText: "",
50
+ resultCode: "",
51
+ ttsText: "",
52
+ }],
53
+ },
54
+ };
55
+ // Send command and wait for response (60 second timeout)
56
+ return new Promise((resolve, reject) => {
57
+ const timeout = setTimeout(() => {
58
+ wsManager.off("data-event", handler);
59
+ reject(new Error("查找PC设备超时(60秒)"));
60
+ }, 60000);
61
+ // Listen for data events from WebSocket
62
+ const handler = (event) => {
63
+ if (event.intentName === "GetAllDevice") {
64
+ clearTimeout(timeout);
65
+ wsManager.off("data-event", handler);
66
+ if (event.status === "success" && event.outputs) {
67
+ resolve({
68
+ content: [
69
+ {
70
+ type: "text",
71
+ text: JSON.stringify(event.outputs),
72
+ }
73
+ ]
74
+ });
75
+ }
76
+ else {
77
+ reject(new Error(`查找PC设备失败: ${event.status}`));
78
+ }
79
+ }
80
+ };
81
+ // Register event handler
82
+ wsManager.on("data-event", handler);
83
+ // Send the command
84
+ sendCommand({
85
+ config,
86
+ sessionId,
87
+ taskId,
88
+ messageId,
89
+ command,
90
+ }).then(() => {
91
+ }).catch((error) => {
92
+ clearTimeout(timeout);
93
+ wsManager.off("data-event", handler);
94
+ reject(error);
95
+ });
96
+ });
97
+ },
98
+ };
@@ -0,0 +1,16 @@
1
+ export declare const getAlarmToolSchemaTool: {
2
+ name: string;
3
+ label: string;
4
+ description: string;
5
+ parameters: {
6
+ type: "object";
7
+ properties: {};
8
+ required: string[];
9
+ };
10
+ execute(_toolCallId: string, _params: any): Promise<{
11
+ content: {
12
+ type: "text";
13
+ text: string;
14
+ }[];
15
+ }>;
16
+ };
@@ -0,0 +1,11 @@
1
+ import { createSchemaTool } from "./schema-tool-factory.js";
2
+ import { createAlarmTool } from "./create-alarm-tool.js";
3
+ import { searchAlarmTool } from "./search-alarm-tool.js";
4
+ import { modifyAlarmTool } from "./modify-alarm-tool.js";
5
+ import { deleteAlarmTool } from "./delete-alarm-tool.js";
6
+ export const getAlarmToolSchemaTool = createSchemaTool({
7
+ name: "get_alarm_tool_schema",
8
+ label: "Get Alarm Tool Schema",
9
+ description: "获取可在用户设备上创建、检索、修改、删除闹钟的相关端工具列表。",
10
+ tools: [createAlarmTool, searchAlarmTool, modifyAlarmTool, deleteAlarmTool],
11
+ });