foliko 1.0.82 → 1.0.84

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 (167) hide show
  1. package/.agent/.shared/ui-ux-pro-max/data/charts.csv +26 -0
  2. package/.agent/.shared/ui-ux-pro-max/data/colors.csv +97 -0
  3. package/.agent/.shared/ui-ux-pro-max/data/icons.csv +101 -0
  4. package/.agent/.shared/ui-ux-pro-max/data/landing.csv +31 -0
  5. package/.agent/.shared/ui-ux-pro-max/data/products.csv +97 -0
  6. package/.agent/.shared/ui-ux-pro-max/data/prompts.csv +24 -0
  7. package/.agent/.shared/ui-ux-pro-max/data/react-performance.csv +45 -0
  8. package/.agent/.shared/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  9. package/.agent/.shared/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  10. package/.agent/.shared/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  11. package/.agent/.shared/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  12. package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  13. package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  14. package/.agent/.shared/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  15. package/.agent/.shared/ui-ux-pro-max/data/stacks/react.csv +54 -0
  16. package/.agent/.shared/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  17. package/.agent/.shared/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  18. package/.agent/.shared/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  19. package/.agent/.shared/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  20. package/.agent/.shared/ui-ux-pro-max/data/styles.csv +59 -0
  21. package/.agent/.shared/ui-ux-pro-max/data/typography.csv +58 -0
  22. package/.agent/.shared/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  23. package/.agent/.shared/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  24. package/.agent/.shared/ui-ux-pro-max/data/web-interface.csv +31 -0
  25. package/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-313.pyc +0 -0
  26. package/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-313.pyc +0 -0
  27. package/.agent/.shared/ui-ux-pro-max/scripts/core.py +258 -0
  28. package/.agent/.shared/ui-ux-pro-max/scripts/design_system.py +1067 -0
  29. package/.agent/.shared/ui-ux-pro-max/scripts/search.py +106 -0
  30. package/.agent/ARCHITECTURE.md +288 -0
  31. package/.agent/agents/ambient-agent.md +57 -0
  32. package/.agent/agents/debugger.md +55 -0
  33. package/.agent/agents/email-assistant.md +49 -0
  34. package/.agent/agents/file-manager.md +42 -0
  35. package/.agent/agents/python-developer.md +60 -0
  36. package/.agent/agents/scheduler.md +59 -0
  37. package/.agent/agents/web-developer.md +45 -0
  38. package/.agent/data/default.json +355 -6
  39. package/.agent/data/plugins-state.json +185 -146
  40. package/.agent/data/puppeteer-sessions/undefined.json +6 -0
  41. package/.agent/mcp_config.json +0 -1
  42. package/.agent/mcp_config_updated.json +12 -0
  43. package/.agent/plugins/puppeteer-plugin/README.md +147 -0
  44. package/.agent/plugins/puppeteer-plugin/index.js +1320 -0
  45. package/.agent/plugins/puppeteer-plugin/package.json +9 -0
  46. package/.agent/plugins.json +5 -14
  47. package/.agent/rules/GEMINI.md +273 -0
  48. package/.agent/rules/allow-rule.md +77 -0
  49. package/.agent/rules/log-rule.md +83 -0
  50. package/.agent/rules/security-rule.md +93 -0
  51. package/.agent/scripts/auto_preview.py +148 -0
  52. package/.agent/scripts/checklist.py +217 -0
  53. package/.agent/scripts/session_manager.py +120 -0
  54. package/.agent/scripts/verify_all.py +327 -0
  55. package/.agent/skills/api-patterns/SKILL.md +81 -0
  56. package/.agent/skills/api-patterns/api-style.md +42 -0
  57. package/.agent/skills/api-patterns/auth.md +24 -0
  58. package/.agent/skills/api-patterns/documentation.md +26 -0
  59. package/.agent/skills/api-patterns/graphql.md +41 -0
  60. package/.agent/skills/api-patterns/rate-limiting.md +31 -0
  61. package/.agent/skills/api-patterns/response.md +37 -0
  62. package/.agent/skills/api-patterns/rest.md +40 -0
  63. package/.agent/skills/api-patterns/scripts/api_validator.py +211 -0
  64. package/.agent/skills/api-patterns/security-testing.md +122 -0
  65. package/.agent/skills/api-patterns/trpc.md +41 -0
  66. package/.agent/skills/api-patterns/versioning.md +22 -0
  67. package/.agent/skills/app-builder/SKILL.md +75 -0
  68. package/.agent/skills/app-builder/agent-coordination.md +71 -0
  69. package/.agent/skills/app-builder/feature-building.md +53 -0
  70. package/.agent/skills/app-builder/project-detection.md +34 -0
  71. package/.agent/skills/app-builder/scaffolding.md +118 -0
  72. package/.agent/skills/app-builder/tech-stack.md +40 -0
  73. package/.agent/skills/app-builder/templates/SKILL.md +39 -0
  74. package/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  75. package/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  76. package/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  77. package/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  78. package/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  79. package/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  80. package/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  81. package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +122 -0
  82. package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +122 -0
  83. package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +169 -0
  84. package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +134 -0
  85. package/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  86. package/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +119 -0
  87. package/.agent/skills/architecture/SKILL.md +55 -0
  88. package/.agent/skills/architecture/context-discovery.md +43 -0
  89. package/.agent/skills/architecture/examples.md +94 -0
  90. package/.agent/skills/architecture/pattern-selection.md +68 -0
  91. package/.agent/skills/architecture/patterns-reference.md +50 -0
  92. package/.agent/skills/architecture/trade-off-analysis.md +77 -0
  93. package/.agent/skills/clean-code/SKILL.md +201 -0
  94. package/.agent/skills/doc.md +177 -0
  95. package/.agent/skills/frontend-design/SKILL.md +418 -0
  96. package/.agent/skills/frontend-design/animation-guide.md +331 -0
  97. package/.agent/skills/frontend-design/color-system.md +311 -0
  98. package/.agent/skills/frontend-design/decision-trees.md +418 -0
  99. package/.agent/skills/frontend-design/motion-graphics.md +306 -0
  100. package/.agent/skills/frontend-design/scripts/accessibility_checker.py +183 -0
  101. package/.agent/skills/frontend-design/scripts/ux_audit.py +722 -0
  102. package/.agent/skills/frontend-design/typography-system.md +345 -0
  103. package/.agent/skills/frontend-design/ux-psychology.md +1116 -0
  104. package/.agent/skills/frontend-design/visual-effects.md +383 -0
  105. package/.agent/skills/i18n-localization/SKILL.md +154 -0
  106. package/.agent/skills/i18n-localization/scripts/i18n_checker.py +241 -0
  107. package/.agent/skills/mcp-builder/SKILL.md +176 -0
  108. package/.agent/skills/web-design-guidelines/SKILL.md +57 -0
  109. package/.agent/workflows/brainstorm.md +113 -0
  110. package/.agent/workflows/create.md +59 -0
  111. package/.agent/workflows/debug.md +103 -0
  112. package/.agent/workflows/deploy.md +176 -0
  113. package/.agent/workflows/enhance.md +63 -0
  114. package/.agent/workflows/orchestrate.md +237 -0
  115. package/.agent/workflows/plan.md +89 -0
  116. package/.agent/workflows/preview.md +81 -0
  117. package/.agent/workflows/simple-test.md +42 -0
  118. package/.agent/workflows/status.md +86 -0
  119. package/.agent/workflows/structured-orchestrate.md +180 -0
  120. package/.agent/workflows/test.md +144 -0
  121. package/.agent/workflows/ui-ux-pro-max.md +296 -0
  122. package/.claude/settings.local.json +178 -171
  123. package/.env.example +56 -56
  124. package/cli/src/commands/plugin.js +482 -0
  125. package/cli/src/index.js +7 -0
  126. package/cli/src/utils/plugin-config.js +50 -0
  127. package/package.json +1 -1
  128. package/plugins/audit-plugin.js +2 -0
  129. package/plugins/extension-executor-plugin.js +30 -0
  130. package/plugins/plugin-manager-plugin.js +402 -0
  131. package/skills/find-skills/AGENTS.md +162 -162
  132. package/skills/find-skills/SKILL.md +133 -133
  133. package/skills/foliko-dev/SKILL.md +563 -563
  134. package/skills/plugin-guide/SKILL.md +139 -0
  135. package/skills/python-plugin-dev/SKILL.md +238 -238
  136. package/src/core/agent-chat.js +115 -46
  137. package/src/core/framework.js +42 -1
  138. package/src/executors/mcp-executor.js +33 -0
  139. package/src/utils/index.js +153 -0
  140. package/xhs_auth.json +268 -0
  141. package/.agent/agents/code-assistant.json +0 -14
  142. package/.agent/agents/email-assistant.json +0 -14
  143. package/.agent/agents/file-assistant.json +0 -15
  144. package/.agent/agents/system-assistant.json +0 -15
  145. package/.agent/agents/web-assistant.json +0 -12
  146. package/.agent/data/ambient/goals.json +0 -50
  147. package/.agent/data/ambient/memories.json +0 -7
  148. package/.agent/data/scheduler/tasks.json +0 -1
  149. package/.agent/package.json +0 -8
  150. package/.agent/plugins/__pycache__/test_plugin.cpython-312.pyc +0 -0
  151. package/.agent/plugins/system-info/index.js +0 -387
  152. package/.agent/plugins/system-info/package.json +0 -4
  153. package/.agent/plugins/system-info/test.js +0 -40
  154. package/.agent/plugins/test_plugin.py +0 -304
  155. package/.agent/python-scripts/test_sample.py +0 -24
  156. package/.agent/skills/sysinfo/SKILL.md +0 -38
  157. package/.agent/skills/sysinfo/system-info.sh +0 -130
  158. package/.agent/skills/workflow/SKILL.md +0 -324
  159. package/.agent/workflows/email-digest.json +0 -50
  160. package/.agent/workflows/file-backup.json +0 -21
  161. package/.agent/workflows/get-ip-notify.json +0 -32
  162. package/.agent/workflows/news-aggregator.json +0 -93
  163. package/.agent/workflows/news-dashboard-v2.json +0 -94
  164. package/.agent/workflows/notification-batch.json +0 -32
  165. package/reports/system-health-report-20260401.md +0 -79
  166. package/test/tool-registry-validation.test.js +0 -218
  167. package/test_report.md +0 -70
@@ -1,79 +0,0 @@
1
- # 系统健康检查报告
2
-
3
- **生成时间**: 2026-04-01 02:26:37 (北京时间)
4
-
5
- ---
6
-
7
- ## 1. 系统概览
8
-
9
- | 项目 | 值 |
10
- |------|-----|
11
- | 主机名 | Foliko |
12
- | 操作系统 | Windows 11 (10.0.26200) |
13
- | 架构 | x64 |
14
- | Node.js 版本 | v25.8.1 |
15
- | 运行时间 | 12 天 4 小时 58 分钟 36 秒 |
16
-
17
- ---
18
-
19
- ## 2. CPU 信息
20
-
21
- | 项目 | 值 |
22
- |------|-----|
23
- | 型号 | 12th Gen Intel(R) Core(TM) i3-1220P |
24
- | 核心数 | 12 |
25
- | 当前负载 | 9.63% |
26
- | 频率 | 1997 MHz |
27
-
28
- **状态**: 正常 (负载较低)
29
-
30
- ---
31
-
32
- ## 3. 内存信息
33
-
34
- | 项目 | 值 |
35
- |------|-----|
36
- | 总内存 | 23.75 GB |
37
- | 已用 | 14.31 GB |
38
- | 可用 | 9.44 GB |
39
- | 使用率 | 60.25% |
40
-
41
- **状态**: 正常
42
-
43
- ---
44
-
45
- ## 4. 网络信息
46
-
47
- ### 本地网络接口
48
- | 接口 | IP 地址 | 类型 |
49
- |------|---------|------|
50
- | WLAN | 192.168.1.9 | IPv4 |
51
- | vEthernet (Default Switch) | 172.23.240.1 | IPv4 |
52
- | Loopback | 127.0.0.1 | IPv4 |
53
-
54
- ### 公网信息
55
- | 项目 | 值 |
56
- |------|-----|
57
- | 公网 IP | 172.70.46.104 |
58
- | 位置 | Amsterdam, North Holland, NL |
59
- | ISP | Cloudflare, Inc. |
60
- | 时区 | Europe/Amsterdam |
61
-
62
- ---
63
-
64
- ## 5. 协同测试总结
65
-
66
- 本次多 Agent 协同测试成功完成:
67
-
68
- | 步骤 | 执行 Agent | 任务 |
69
- |------|------------|------|
70
- | 1 | system-assistant | 获取系统完整信息 |
71
- | 2 | web-assistant | 通过代理获取公网 IP |
72
- | 3 | code-assistant | 汇总数据生成报告 |
73
- | 4 | file-assistant | 报告保存到文件 |
74
-
75
- **测试结果**: ✅ 所有协同步骤执行成功
76
-
77
- ---
78
-
79
- *此报告由 vb-agent 多子 Agent 协同生成*
@@ -1,218 +0,0 @@
1
- /**
2
- * 工具参数验证测试
3
- */
4
-
5
- const { ToolRegistry } = require('../src/core/tool-registry');
6
- const { z } = require('zod');
7
-
8
- async function runTests() {
9
- console.log('🧪 开始工具参数验证测试\n');
10
- let passed = 0;
11
- let failed = 0;
12
-
13
- // 创建工具注册表
14
- const registry = new ToolRegistry({ circuitBreaker: false });
15
-
16
- // 注册带 Zod schema 的工具
17
- registry.register({
18
- name: 'greet',
19
- description: '打招呼工具',
20
- inputSchema: z.object({
21
- name: z.string().describe('姓名'),
22
- age: z.number().optional().describe('年龄'),
23
- role: z.enum(['admin', 'user', 'guest']).optional().describe('角色'),
24
- }),
25
- execute: async (args) => {
26
- return `Hello, ${args.name}! You are ${args.age || 'unknown age'}.`;
27
- },
28
- });
29
-
30
- // 注册带 JSON Schema 的工具
31
- registry.register({
32
- name: 'calculate',
33
- description: '计算工具',
34
- inputSchema: {
35
- type: 'object',
36
- properties: {
37
- expression: {
38
- type: 'string',
39
- description: '数学表达式',
40
- },
41
- precision: {
42
- type: 'integer',
43
- description: '精度',
44
- minimum: 0,
45
- maximum: 10,
46
- },
47
- },
48
- required: ['expression'],
49
- },
50
- execute: async (args) => {
51
- return `Calculating: ${args.expression}`;
52
- },
53
- });
54
-
55
- // 注册无 schema 的工具
56
- registry.register({
57
- name: 'echo',
58
- description: '回声工具',
59
- execute: async (args) => {
60
- return args;
61
- },
62
- });
63
-
64
- // 测试1: 有效的 Zod schema 参数
65
- try {
66
- const result = await registry.execute('greet', { name: 'Alice', age: 25 });
67
- console.log('✅ 测试1 通过: 有效的 Zod schema 参数');
68
- console.log(` 结果: ${result}\n`);
69
- passed++;
70
- } catch (err) {
71
- console.log('❌ 测试1 失败:', err.message, '\n');
72
- failed++;
73
- }
74
-
75
- // 测试2: 缺少必需参数(Zod schema)
76
- try {
77
- await registry.execute('greet', { age: 25 });
78
- console.log('❌ 测试2 失败: 应该抛出验证错误\n');
79
- failed++;
80
- } catch (err) {
81
- if (err.validationErrors) {
82
- console.log('✅ 测试2 通过: 缺少必需参数正确抛出验证错误');
83
- console.log(` 错误详情: ${JSON.stringify(err.validationErrors, null, 2)}\n`);
84
- passed++;
85
- } else {
86
- console.log('❌ 测试2 失败: 错误格式不正确\n');
87
- failed++;
88
- }
89
- }
90
-
91
- // 测试3: 参数类型错误(Zod schema)
92
- try {
93
- await registry.execute('greet', { name: 123, age: 'twenty-five' });
94
- console.log('❌ 测试3 失败: 应该抛出验证错误\n');
95
- failed++;
96
- } catch (err) {
97
- if (err.validationErrors) {
98
- console.log('✅ 测试3 通过: 参数类型错误正确抛出验证错误');
99
- console.log(` 错误详情: ${JSON.stringify(err.validationErrors, null, 2)}\n`);
100
- passed++;
101
- } else {
102
- console.log('❌ 测试3 失败: 错误格式不正确\n');
103
- failed++;
104
- }
105
- }
106
-
107
- // 测试4: 有效的 JSON Schema 参数
108
- try {
109
- const result = await registry.execute('calculate', { expression: '2+2', precision: 2 });
110
- console.log('✅ 测试4 通过: 有效的 JSON Schema 参数');
111
- console.log(` 结果: ${result}\n`);
112
- passed++;
113
- } catch (err) {
114
- console.log('❌ 测试4 失败:', err.message, '\n');
115
- failed++;
116
- }
117
-
118
- // 测试5: 缺少必需参数(JSON Schema)
119
- try {
120
- await registry.execute('calculate', { precision: 2 });
121
- console.log('❌ 测试5 失败: 应该抛出验证错误\n');
122
- failed++;
123
- } catch (err) {
124
- if (err.validationErrors) {
125
- console.log('✅ 测试5 通过: JSON Schema 缺少必需参数正确抛出验证错误');
126
- console.log(` 错误详情: ${JSON.stringify(err.validationErrors, null, 2)}\n`);
127
- passed++;
128
- } else {
129
- console.log('❌ 测试5 失败: 错误格式不正确\n');
130
- failed++;
131
- }
132
- }
133
-
134
- // 测试6: 超出范围验证(JSON Schema)
135
- try {
136
- await registry.execute('calculate', { expression: '2+2', precision: 15 });
137
- console.log('❌ 测试6 失败: 应该抛出验证错误\n');
138
- failed++;
139
- } catch (err) {
140
- if (err.validationErrors) {
141
- console.log('✅ 测试6 通过: JSON Schema 范围验证正确');
142
- console.log(` 错误详情: ${JSON.stringify(err.validationErrors, null, 2)}\n`);
143
- passed++;
144
- } else {
145
- console.log('❌ 测试6 失败: 错误格式不正确\n');
146
- failed++;
147
- }
148
- }
149
-
150
- // 测试7: 无 schema 工具接受任意参数
151
- try {
152
- const result = await registry.execute('echo', { foo: 'bar', num: 42 });
153
- console.log('✅ 测试7 通过: 无 schema 工具接受任意参数');
154
- console.log(` 结果: ${JSON.stringify(result)}\n`);
155
- passed++;
156
- } catch (err) {
157
- console.log('❌ 测试7 失败:', err.message, '\n');
158
- failed++;
159
- }
160
-
161
- // 测试8: 不存在的工具
162
- try {
163
- await registry.execute('nonexistent', {});
164
- console.log('❌ 测试8 失败: 应该抛出工具不存在错误\n');
165
- failed++;
166
- } catch (err) {
167
- if (err.message.includes('not found')) {
168
- console.log('✅ 测试8 通过: 工具不存在正确抛出错误\n');
169
- passed++;
170
- } else {
171
- console.log('❌ 测试8 失败: 错误类型不正确\n');
172
- failed++;
173
- }
174
- }
175
-
176
- // 测试9: 可选参数默认值
177
- try {
178
- const result = await registry.execute('greet', { name: 'Bob' });
179
- console.log('✅ 测试9 通过: 可选参数使用默认值');
180
- console.log(` 结果: ${result}\n`);
181
- passed++;
182
- } catch (err) {
183
- console.log('❌ 测试9 失败:', err.message, '\n');
184
- failed++;
185
- }
186
-
187
- // 测试10: enum 验证
188
- try {
189
- await registry.execute('greet', { name: 'Charlie', role: 'hacker' });
190
- console.log('❌ 测试10 失败: enum 值不正确应抛出错误\n');
191
- failed++;
192
- } catch (err) {
193
- if (err.validationErrors) {
194
- console.log('✅ 测试10 通过: enum 验证正确');
195
- console.log(` 错误详情: ${JSON.stringify(err.validationErrors, null, 2)}\n`);
196
- passed++;
197
- } else {
198
- console.log('❌ 测试10 失败: 错误格式不正确\n');
199
- failed++;
200
- }
201
- }
202
-
203
- // 输出测试摘要
204
- console.log('='.repeat(50));
205
- console.log(`测试摘要: ${passed} 通过, ${failed} 失败`);
206
- console.log('='.repeat(50));
207
-
208
- return failed === 0;
209
- }
210
-
211
- runTests()
212
- .then((success) => {
213
- process.exit(success ? 0 : 1);
214
- })
215
- .catch((err) => {
216
- console.error('测试执行失败:', err);
217
- process.exit(1);
218
- });
package/test_report.md DELETED
@@ -1,70 +0,0 @@
1
- # 协同测试报告
2
-
3
- ## 基本信息
4
-
5
- - **测试日期**:2026-04-01 02:34:06
6
- - **测试环境**:Windows
7
- - **测试人员**:-
8
-
9
- ## 测试目的
10
-
11
- 本文档用于记录协同测试的相关信息和测试结果,验证系统在协同工作场景下的功能表现和稳定性。
12
-
13
- ### 主要测试目标
14
-
15
- 1. 验证系统核心功能的正常运行
16
- 2. 测试多模块协同工作的能力
17
- 3. 检查数据交互和状态同步的准确性
18
- 4. 评估系统在高负载场景下的表现
19
-
20
- ## 测试结果
21
-
22
- | 测试项 | 状态 | 备注 |
23
- |--------|------|------|
24
- | - | - | - |
25
-
26
- ## 问题记录
27
-
28
- | 序号 | 问题描述 | 严重程度 | 处理状态 |
29
- |------|----------|----------|----------|
30
- | - | - | - | - |
31
-
32
- ## 系统测试结果
33
-
34
- ### 系统配置汇总
35
-
36
- | 项目 | 配置信息 |
37
- |------|----------|
38
- | 主机名 | Foliko |
39
- | 操作系统 | Windows 11 |
40
- | CPU | Intel Core i3-1220P 12核心 |
41
- | 内存 | 23.75GB (已用 60.6%) |
42
-
43
- ### 公网连接信息
44
-
45
- | 项目 | 信息 |
46
- |------|------|
47
- | 公网IP | 172.71.182.212 |
48
- | 地理位置 | 荷兰阿姆斯特丹 |
49
- | ISP | Cloudflare |
50
-
51
- ## 协同测试总结
52
-
53
- ### 各Agent执行状态
54
-
55
- | Agent | 状态 | 备注 |
56
- |-------|------|------|
57
- | code-assistant | ✅ 正常 | 代码助手已就绪 |
58
- | email-assistant | ✅ 正常 | 邮件助手已就绪 |
59
- | file-assistant | ✅ 正常 | 文件助手已就绪 |
60
- | system-assistant | ✅ 正常 | 系统助手已就绪 |
61
- | web-assistant | ✅ 正常 | Web助手已就绪 |
62
-
63
- ### 测试完成时间戳
64
-
65
- - **测试开始时间**:2026-04-01 02:34:06
66
- - **测试完成时间**:2026-04-01 02:34:36
67
- - **测试持续时长**:30秒
68
-
69
- ## 总结
70
-