evolcore 0.0.21 → 0.0.22

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 (64) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/bin/codex-managed-hook.mjs +3 -0
  3. package/bin/install-codex-managed-hooks.mjs +3 -1
  4. package/dist/agents/claude-runner.js +14 -0
  5. package/dist/agents/codex-app-server-client.js +31 -5
  6. package/dist/agents/codex-runner.js +926 -121
  7. package/dist/aun/outbox.js +7 -0
  8. package/dist/channels/aun.js +209 -35
  9. package/dist/cli/daemon-commands.js +29 -8
  10. package/dist/cli/task-context.js +4 -0
  11. package/dist/cli/trigger-command.js +13 -4
  12. package/dist/config/config-field-policy.js +3 -0
  13. package/dist/config/config-manager.js +32 -5
  14. package/dist/config/contact-book-store.js +25 -3
  15. package/dist/core/auth/agent-delegation.js +12 -0
  16. package/dist/core/auth/auth-gateway.js +8 -0
  17. package/dist/core/auth/authorization-audit.js +66 -6
  18. package/dist/core/bootstrap-messages.js +8 -0
  19. package/dist/core/bootstrap-service.js +93 -25
  20. package/dist/core/command/command-handler.js +21 -0
  21. package/dist/core/command/menu-handler.js +9 -0
  22. package/dist/core/command/menu-protocol.js +1 -1
  23. package/dist/core/command/slash-handler.js +41 -18
  24. package/dist/core/data-migration.js +11 -1
  25. package/dist/core/event-catalog.js +32 -0
  26. package/dist/core/handoff/runtime.js +23 -3
  27. package/dist/core/message/im-renderer.js +7 -3
  28. package/dist/core/message/message-bridge.js +60 -2
  29. package/dist/core/message/message-log.js +33 -0
  30. package/dist/core/message/message-queue.js +21 -0
  31. package/dist/core/message/response-engine.js +172 -41
  32. package/dist/core/permission/ec-command-parser.js +272 -70
  33. package/dist/core/permission/protected-paths.js +11 -10
  34. package/dist/core/permission/tool-error-code.js +12 -0
  35. package/dist/core/permission/tool-policy.js +46 -5
  36. package/dist/core/session/session-manager.js +30 -0
  37. package/dist/core/session/session-renew.js +18 -1
  38. package/dist/core/session/session-turn-coordinator.js +5 -1
  39. package/dist/index.js +64 -5
  40. package/dist/ipc.js +97 -17
  41. package/dist/paths.js +18 -0
  42. package/dist/response-system/engines/v1/proactive-flow.js +7 -2
  43. package/dist/stats/price-resolver.js +4 -0
  44. package/dist/trigger/feedback.js +14 -2
  45. package/dist/trigger/parser.js +10 -1
  46. package/dist/trigger/scheduler.js +20 -3
  47. package/dist/utils/logger.js +9 -4
  48. package/dist/utils/tool-summary.js +59 -0
  49. package/dist/utils/windows-shell-trust.js +201 -0
  50. package/kits/docs/evolcore/INDEX.md +2 -2
  51. package/kits/docs/evolcore/agent-create.md +146 -0
  52. package/kits/docs/evolcore/agent.md +6 -0
  53. package/kits/docs/evolcore/group-collaboration.md +251 -0
  54. package/kits/docs/evolcore/group-rules.md +1 -19
  55. package/kits/docs/evolcore/group.md +3 -1
  56. package/kits/docs/evolcore/trigger.md +6 -3
  57. package/kits/docs/prompt-loading-architecture.md +6 -0
  58. package/kits/eck_message_manifest.json +6 -6
  59. package/kits/schemas/_meta.json +3 -2
  60. package/kits/schemas/agent-config.schema.12.json +427 -0
  61. package/kits/templates/message-fragments/item.md +1 -1
  62. package/kits/templates/system-fragments/bootstrap.md +2 -1
  63. package/kits/templates/system-fragments/commands.md +2 -2
  64. package/package.json +2 -2
@@ -0,0 +1,427 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "agent-config.schema.12.json",
4
+ "title": "AgentConfig v12 (agents/{aid}/config.json)",
5
+ "description": "Agent v12 主配置。备用模型链只允许在 defaults.json 定义。",
6
+ "x-logical-name": "agent-config",
7
+ "x-scope": "agent",
8
+ "type": "object",
9
+ "additionalProperties": true,
10
+ "not": {
11
+ "description": "禁止旧权限字段和已迁移到 relation role 的 admins。",
12
+ "anyOf": [
13
+ {
14
+ "description": "禁止旧版顶层 permissionMode;权限模式由独立角色策略决定。",
15
+ "required": [
16
+ "permissionMode"
17
+ ]
18
+ },
19
+ {
20
+ "description": "禁止旧版内嵌 roles;角色定义和默认角色已迁移到独立 roles/ 配置域。",
21
+ "required": [
22
+ "roles"
23
+ ]
24
+ },
25
+ {
26
+ "description": "admin 关系身份由 AUN 私聊 relation role 管理。",
27
+ "required": [
28
+ "admins"
29
+ ]
30
+ },
31
+ {
32
+ "description": "debug 是 daemon 进程级配置,不进入 Agent 覆盖链。",
33
+ "required": [
34
+ "debug"
35
+ ]
36
+ }
37
+ ]
38
+ },
39
+ "required": [
40
+ "aid",
41
+ "channels"
42
+ ],
43
+ "properties": {
44
+ "$schema_version": {
45
+ "type": "number",
46
+ "const": 12,
47
+ "default": 12,
48
+ "x-merge": "scalar",
49
+ "description": "配置 Schema 版本;v12 添加 Agent 级群聊 slash 提及校验开关"
50
+ },
51
+ "aid": {
52
+ "type": "string",
53
+ "x-merge": "scalar",
54
+ "description": "Agent 的全局唯一身份标识"
55
+ },
56
+ "enabled": {
57
+ "type": "boolean",
58
+ "default": true,
59
+ "x-merge": "scalar",
60
+ "description": "是否启用 Agent;缺省按启用处理"
61
+ },
62
+ "lifecycle": {
63
+ "type": "string",
64
+ "default": "active",
65
+ "enum": [
66
+ "created",
67
+ "bootstrapping",
68
+ "active"
69
+ ],
70
+ "x-merge": "scalar",
71
+ "description": "agent 生命周期状态;缺失时按 active 处理",
72
+ "x-enumDescriptions": {
73
+ "created": "已创建,尚未进入引导流程",
74
+ "bootstrapping": "引导中(初始化配置/身份)",
75
+ "active": "已激活,正常运行"
76
+ }
77
+ },
78
+ "initialized": {
79
+ "type": "boolean",
80
+ "x-merge": "scalar",
81
+ "description": "是否已完成 Agent 初始化流程"
82
+ },
83
+ "owners": {
84
+ "type": "array",
85
+ "items": {
86
+ "type": "string",
87
+ "description": "一个 Agent owner 的身份标识,通常为 AID。"
88
+ },
89
+ "uniqueItems": true,
90
+ "x-merge": "list",
91
+ "description": "Agent 所有者身份列表;用于 owner 级控制和通知"
92
+ },
93
+ "access": {
94
+ "type": "object",
95
+ "x-merge": "dict",
96
+ "additionalProperties": false,
97
+ "required": [
98
+ "policyMode",
99
+ "requestLimit"
100
+ ],
101
+ "properties": {
102
+ "policyMode": {
103
+ "type": "string",
104
+ "enum": [
105
+ "open",
106
+ "contacts",
107
+ "owners"
108
+ ],
109
+ "description": "私聊和群聊准入策略:开放、仅联系人或仅 Owner。"
110
+ },
111
+ "requestLimit": {
112
+ "type": "object",
113
+ "additionalProperties": false,
114
+ "required": [
115
+ "maxTimes",
116
+ "coolDown"
117
+ ],
118
+ "properties": {
119
+ "maxTimes": {
120
+ "type": "integer",
121
+ "minimum": 1,
122
+ "maximum": 100000,
123
+ "description": "每个 Agent、每个渠道实例在窗口内最多发送的准入控制消息数。"
124
+ },
125
+ "coolDown": {
126
+ "type": "integer",
127
+ "minimum": 1,
128
+ "maximum": 86400,
129
+ "description": "准入控制消息限额的冷却窗口,单位秒。"
130
+ }
131
+ }
132
+ }
133
+ },
134
+ "description": "Agent 自身的消息准入策略;不参与 defaults 或 relation 覆盖链。"
135
+ },
136
+ "channels": {
137
+ "type": "array",
138
+ "items": {
139
+ "type": "object",
140
+ "allOf": [
141
+ {
142
+ "if": {
143
+ "properties": { "type": { "const": "aun" } },
144
+ "required": ["type"]
145
+ },
146
+ "then": { "not": { "required": ["gatewayUrl"] } }
147
+ }
148
+ ],
149
+ "description": "一个渠道实例配置;具体字段由渠道类型及其适配器定义。"
150
+ },
151
+ "x-merge": "list",
152
+ "description": "Agent 绑定的消息渠道实例列表"
153
+ },
154
+ "aun": {
155
+ "type": "object",
156
+ "x-merge": "dict",
157
+ "description": "Agent 级 AUN 通信配置",
158
+ "properties": {
159
+ "gatewayUrl": {
160
+ "not": {},
161
+ "description": "已移除;网关由 fastaun 缓存和 AID discovery 决定"
162
+ },
163
+ "defaultEncrypt": {
164
+ "not": {},
165
+ "description": "不支持在 Agent 配置;请使用 daemon.json.aun.defaultEncrypt"
166
+ }
167
+ }
168
+ },
169
+ "models": {
170
+ "type": "object",
171
+ "x-merge": "dict",
172
+ "description": "Agent 级模型别名、注册表或模型覆盖配置"
173
+ },
174
+ "active_baseagent": {
175
+ "type": "string",
176
+ "x-merge": "scalar",
177
+ "description": "默认使用的 base agent 标识,例如 claude 或 codex"
178
+ },
179
+ "baseagents": {
180
+ "type": "object",
181
+ "x-merge": "dict",
182
+ "description": "各 base agent 的模型、推理强度及运行参数;备用模型链只能在 defaults.json 配置。",
183
+ "additionalProperties": {
184
+ "not": {
185
+ "type": "object",
186
+ "required": ["fallbackModels"]
187
+ },
188
+ "properties": {
189
+ "headers": {
190
+ "type": "object",
191
+ "propertyNames": { "pattern": "^[!#$%&'*+.^_`|~0-9A-Za-z-]+$" },
192
+ "additionalProperties": { "type": "string", "pattern": "^[^\\u0000\\r\\n]*$" }
193
+ },
194
+ "queryParams": {
195
+ "type": "object",
196
+ "propertyNames": { "minLength": 1 },
197
+ "additionalProperties": { "type": "string" }
198
+ },
199
+ "auxiliaryModel": {
200
+ "type": "string",
201
+ "minLength": 1,
202
+ "description": "Session Renew 语义连续性判断使用的 direct 辅助模型。"
203
+ },
204
+ "auxiliaryEffort": {
205
+ "type": "string",
206
+ "enum": ["low", "medium", "high", "xhigh", "max"],
207
+ "description": "Session Renew 辅助模型的可选推理强度。"
208
+ }
209
+ },
210
+ "dependencies": {
211
+ "auxiliaryEffort": ["auxiliaryModel"]
212
+ }
213
+ }
214
+ },
215
+ "projects": {
216
+ "type": "object",
217
+ "x-merge": "dict",
218
+ "description": "Agent 可用项目路径和项目选择配置"
219
+ },
220
+ "capabilities": {
221
+ "type": "object",
222
+ "x-merge": "dict",
223
+ "description": "Agent 能力开关及能力参数"
224
+ },
225
+ "readonlySourceDiagnostics": {
226
+ "type": "boolean",
227
+ "x-merge": "scalar",
228
+ "default": false,
229
+ "description": "允许只读会话在显式源码目录内执行受限、可证明只读的诊断查询"
230
+ },
231
+ "observable": {
232
+ "type": "boolean",
233
+ "default": true,
234
+ "x-merge": "scalar",
235
+ "description": "是否将 Agent 的入站和出站消息转发给 owners;默认开启"
236
+ },
237
+ "chatmode": {
238
+ "type": "object",
239
+ "x-merge": "dict",
240
+ "default": {
241
+ "private": "interactive",
242
+ "group": "proactive",
243
+ "nothuman": "proactive"
244
+ },
245
+ "properties": {
246
+ "private": {
247
+ "enum": [
248
+ "interactive",
249
+ "proactive"
250
+ ],
251
+ "description": "人类私聊场景的投递方式",
252
+ "x-enumDescriptions": {
253
+ "interactive": "同步交互:输出即回复",
254
+ "proactive": "主动推送:CLI 回复 + 思考投影"
255
+ }
256
+ },
257
+ "group": {
258
+ "enum": [
259
+ "interactive",
260
+ "proactive"
261
+ ],
262
+ "description": "群聊场景的投递方式",
263
+ "x-enumDescriptions": {
264
+ "interactive": "同步交互:输出即回复",
265
+ "proactive": "主动推送:CLI 回复 + 思考投影"
266
+ }
267
+ },
268
+ "nothuman": {
269
+ "enum": [
270
+ "interactive",
271
+ "proactive"
272
+ ],
273
+ "description": "非人类(agent)私聊场景的投递方式",
274
+ "x-enumDescriptions": {
275
+ "interactive": "同步交互:输出即回复",
276
+ "proactive": "主动推送:CLI 回复 + 思考投影"
277
+ }
278
+ }
279
+ },
280
+ "additionalProperties": false,
281
+ "description": "chatmode 场景默认表;出厂默认值即此 default(agent 级改默认,关系级按键覆盖)。键封闭 private/group/nothuman,值枚举 interactive/proactive"
282
+ },
283
+ "mentionMode": {
284
+ "type": "string",
285
+ "enum": [
286
+ "disabled",
287
+ "mention-only"
288
+ ],
289
+ "default": "disabled",
290
+ "x-merge": "scalar",
291
+ "description": "@ 处理策略(顶层通用参数)",
292
+ "x-enumDescriptions": {
293
+ "disabled": "处理所有消息",
294
+ "mention-only": "只处理被 @ 的消息,未 @ 作引用上下文"
295
+ }
296
+ },
297
+ "groupSlashRequireMentions": {
298
+ "type": "boolean",
299
+ "default": true,
300
+ "x-merge": "scalar",
301
+ "description": "AUN 群聊 slash 命令是否必须携带结构化 mentions;默认必须"
302
+ },
303
+ "model": {
304
+ "type": "string",
305
+ "x-merge": "scalar",
306
+ "description": "主会话模型(顶层通用参数);无默认值,缺省时由响应模式/全局默认决定"
307
+ },
308
+ "responseMode": {
309
+ "type": "string",
310
+ "x-merge": "scalar",
311
+ "description": "响应模式 id(标量);候选清单/默认值来自注册表,非 schema。关系级>agent级>注册表首选"
312
+ },
313
+ "responseModeParams": {
314
+ "type": "object",
315
+ "x-merge": "dict",
316
+ "description": "响应模式特有参数字典,按模式 id 分桶:{ [modeId]: {...} }"
317
+ },
318
+ "flush_delay": {
319
+ "type": "number",
320
+ "minimum": 0,
321
+ "default": 3,
322
+ "x-merge": "scalar",
323
+ "description": "流式出站消息的批量刷新间隔,单位为秒;默认 3 秒"
324
+ },
325
+ "debounce": {
326
+ "type": "number",
327
+ "minimum": 0,
328
+ "default": 0,
329
+ "x-merge": "scalar",
330
+ "description": "入站消息合并窗口,单位为秒;0 表示不合并,默认 0"
331
+ },
332
+ "show_activities": {
333
+ "type": "string",
334
+ "enum": [
335
+ "all",
336
+ "text",
337
+ "none"
338
+ ],
339
+ "default": "all",
340
+ "x-merge": "scalar",
341
+ "description": "中间输出展示范围(仅对 interactive 私聊有意义)",
342
+ "x-enumDescriptions": {
343
+ "all": "文本 + activity",
344
+ "text": "仅文本",
345
+ "none": "全部静默"
346
+ }
347
+ },
348
+ "session_renew": {
349
+ "type": "object",
350
+ "x-merge": "dict",
351
+ "additionalProperties": false,
352
+ "description": "会话超时后的续接判定",
353
+ "properties": {
354
+ "enabled": {
355
+ "type": "boolean",
356
+ "default": false,
357
+ "description": "是否启用超时后的会话连续性判定"
358
+ },
359
+ "after_hours": {
360
+ "type": "number",
361
+ "exclusiveMinimum": 0,
362
+ "default": 24,
363
+ "description": "距最后一条有效对话超过该小时数才触发判定"
364
+ },
365
+ "fallback_action": {
366
+ "type": "string",
367
+ "enum": [
368
+ "continue",
369
+ "new"
370
+ ],
371
+ "default": "continue",
372
+ "description": "无法判定时的兜底动作",
373
+ "x-enumDescriptions": {
374
+ "continue": "继续沿用当前会话",
375
+ "new": "开启新会话"
376
+ }
377
+ }
378
+ }
379
+ },
380
+ "group_venue_sync": {
381
+ "type": "object",
382
+ "x-merge": "dict",
383
+ "description": "AUN 群资源同步配置;控制规则文件路径、资源索引路径、条目/字节限制及刷新间隔。"
384
+ },
385
+ "groupRules": {
386
+ "type": "object",
387
+ "x-merge": "dict",
388
+ "additionalProperties": false,
389
+ "properties": {
390
+ "mode": {
391
+ "type": "string",
392
+ "enum": [
393
+ "load",
394
+ "ignore"
395
+ ],
396
+ "default": "load",
397
+ "description": "是否读取并注入 AUN 群已发布的 /rules.md;默认 load。"
398
+ }
399
+ },
400
+ "description": "本 Agent 对 AUN 群规则的本地加载策略。"
401
+ },
402
+ "render": {
403
+ "type": "object",
404
+ "x-merge": "dict",
405
+ "description": "私聊、群聊及注入内容使用的渲染器标识配置。"
406
+ },
407
+ "sessionManifests": {
408
+ "type": "object",
409
+ "x-merge": "dict",
410
+ "description": "会话类型到 manifest 文件的映射,用于选择对应的系统提示词清单。"
411
+ },
412
+ "enable_rich_content": {
413
+ "type": "boolean",
414
+ "x-merge": "scalar",
415
+ "description": "是否允许渠道使用富内容消息;未设置时由渠道能力和运行时默认决定"
416
+ },
417
+ "extra_backup": {
418
+ "type": "array",
419
+ "items": {
420
+ "type": "object",
421
+ "description": "一个额外备份规则,包含相对 path 和可选的文件匹配 pattern。"
422
+ },
423
+ "x-merge": "list",
424
+ "description": "配置快照需要额外包含的文件声明;不得指向 .env。"
425
+ }
426
+ }
427
+ }
@@ -1,2 +1,2 @@
1
1
  ‹{{now}} · from:{{peerId}}{{?peerName}}({{peerName}}){{/}}{{?peerRole}} · role:{{peerRole}}{{/}}{{?chatType=group}} → 群:{{groupLabel}} · self:{{selfAid}}{{/}}{{?chatType=private}} → self:{{selfAid}}{{/}}{{?encrypted=true}} · 🔒密文{{/}}{{?encrypted=false}} · ✉️明文{{/}}{{?sameDevice}} · 📍同设备{{/}}{{?sameNetwork}} · 🌐同网络{{/}}{{?sameEgressIp}} · 🔀同出口IP{{/}}{{?mentionAids}} · @:{{mentionAids}}{{/}}›
2
- {{content}}
2
+ {{?isHandoff!=true}}{{content}}{{/}}
@@ -3,6 +3,7 @@ phase: bootstrapping
3
3
 
4
4
  这是 agent 生命周期的强制门禁。你正在进行首次自我设定;在完成前,唯一目标是和 owner 确认并写入基础名片信息,不处理普通任务。
5
5
  整个过程由你根据当前对话自主推进,不存在需要查询或维护的额外 bootstrap 子状态。
6
+ 系统已经在进入本阶段时向 owner 发送过固定的首条引导消息。当前收到的是 owner 对该消息的后续输入:不要重新发送、复述或改写那条固定消息,也不要再次完整罗列三项问题;只针对当前输入推进下一步。
6
7
 
7
8
  需要确认的字段:
8
9
  - name:显示名,简短清晰
@@ -17,7 +18,7 @@ phase: bootstrapping
17
18
  - 除这些 bootstrap 操作及向 owner 回复外,不得调用工具或执行命令。
18
19
 
19
20
  每轮处理规则:
20
- 1. 首次需要候选值时,读取本地 agent.md 的 YAML frontmatter。已有且格式有效的 `name`、`description`、`tags` 是现有候选值:向 owner 回显并询问保持还是修改,不要求重新输入。空值、占位值或格式无效的字段视为缺失;`tags` 必须为 3 到 6 个非空标签。
21
+ 1. 首次需要候选值时,读取本地 agent.md 的 YAML frontmatter。已有且格式有效的 `name`、`description`、`tags` 是现有候选值:简短回显并询问保持还是修改,不要求重新输入。空值、占位值或格式无效的字段视为缺失;`tags` 必须为 3 到 6 个非空标签。
21
22
  2. 只把 owner 明确提供、修改、选择或确认的 `name`、`description`、`tags` 当作候选信息。普通任务内容、示例值和顺带提及的词语都不是候选信息,不得据此推断字段。
22
23
  3. 信息缺失、互相冲突或含义不清时,只追问缺失或有歧义的部分;保留此前已经明确或 owner 选择保持的内容。
23
24
  4. owner 在 bootstrap 完成前提出普通工作请求、要求跳过 bootstrap,或要求先执行任务后再设定时:不执行、不分析、不规划、不读取任务相关文件、不搜索、不调用任务工具,也不把任务排队到当前会话。只简短说明必须先完成首次设定,然后回显现有候选值并询问保持/修改,或只追问仍缺失的字段。
@@ -1,5 +1,5 @@
1
1
  [commands] 当前场景可用命令集(前缀 ec,以自己 AID 为发送者;完整用法 Read 对应文档)
2
- 遇到明确触发词(费用/用量/统计/创建agent/建群/查群等)优先查 INDEX.md 或直接试对应 ec 命令
2
+ 遇到明确触发词(费用/用量/统计/创建agent/建群/查群/群聊协作/任务分派等)优先查 INDEX.md 或直接试对应 ec 命令
3
3
 
4
4
  ec ctl 当前会话工具(主动发消息/文件、重命名、队列、项目路径、会话状态) $KITS_DOCS/evolcore/ctl.md
5
5
  ec model 模型与推理强度管理(切模型/列模型/当前模型/模型详情/改强度/诊断网关) $KITS_DOCS/evolcore/model.md
@@ -15,7 +15,7 @@ ec rpc 底层 AUN RPC 逃生通道 $KITS_DOCS/evolcore/
15
15
  ec msg 私聊收发消息(回复/拉取/撤回) $KITS_DOCS/evolcore/msg.md
16
16
  {{/}}
17
17
  {{?selfAid}}
18
- ec group 群聊收发与群管理(群发/建群/查群/邀请/踢人/角色/封禁/规则;高级 group.* 用 ec rpc) $KITS_DOCS/evolcore/group.md
18
+ ec group 群聊收发与群管理(群发/建群/查群/邀请/踢人/角色/封禁/规则/协作;完整协作流程见 $KITS_DOCS/evolcore/group-collaboration.md) $KITS_DOCS/evolcore/group.md
19
19
  {{/}}
20
20
  {{?peerRole=owner}}
21
21
  ec agent EvolAgent 生命周期(创建/启停/热重载/改配置)。ec agent reload 仅对配置/persona/memory 生效,改源码无效 $KITS_DOCS/evolcore/agent.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evolcore",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "AI Agent gateway connecting Claude, Codex, Gemini, and the bundled ecagent runner to messaging channels with multi-project session management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -48,7 +48,7 @@
48
48
  "prepublishOnly": "npm test"
49
49
  },
50
50
  "dependencies": {
51
- "@agentunion/fastaun": "0.5.10",
51
+ "@agentunion/fastaun": "0.5.11",
52
52
  "@anthropic-ai/claude-agent-sdk": "0.3.220",
53
53
  "@modelcontextprotocol/sdk": "^1.29.0",
54
54
  "ajv": "^8.20.0",