@ai-setting/roy-agent-core 1.5.15-test → 1.5.17-beta.1
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/config/index.d.ts +1250 -0
- package/dist/config/index.js +32 -0
- package/dist/env/agent/index.d.ts +2279 -0
- package/dist/env/agent/index.js +24 -0
- package/dist/env/commands/index.d.ts +1131 -0
- package/dist/env/commands/index.js +14 -0
- package/dist/env/debug/formatters/index.d.ts +236 -0
- package/dist/env/debug/formatters/index.js +11 -0
- package/dist/env/debug/index.d.ts +1652 -0
- package/dist/env/debug/index.js +26 -0
- package/dist/env/hook/index.d.ts +279 -0
- package/dist/env/hook/index.js +29 -0
- package/dist/env/index.d.ts +3481 -0
- package/dist/env/index.js +82 -0
- package/dist/env/llm/index.d.ts +1760 -0
- package/dist/env/llm/index.js +40 -0
- package/dist/env/log-trace/index.d.ts +1574 -0
- package/dist/env/log-trace/index.js +83 -0
- package/dist/env/mcp/index.d.ts +1331 -0
- package/dist/env/mcp/index.js +39 -0
- package/dist/env/mcp/tool/index.d.ts +183 -0
- package/dist/env/mcp/tool/index.js +14 -0
- package/dist/env/memory/built-in/index.d.ts +232 -0
- package/dist/env/memory/built-in/index.js +11 -0
- package/dist/env/memory/index.d.ts +1799 -0
- package/dist/env/memory/index.js +56 -0
- package/dist/env/memory/plugin/index.d.ts +747 -0
- package/dist/env/memory/plugin/index.js +36 -0
- package/dist/env/prompt/index.d.ts +1164 -0
- package/dist/env/prompt/index.js +20 -0
- package/dist/env/session/index.d.ts +1908 -0
- package/dist/env/session/index.js +25 -0
- package/dist/env/session/storage/index.d.ts +564 -0
- package/dist/env/session/storage/index.js +18 -0
- package/dist/env/skill/index.d.ts +1266 -0
- package/dist/env/skill/index.js +34 -0
- package/dist/env/skill/tool/index.d.ts +193 -0
- package/dist/env/skill/tool/index.js +9 -0
- package/dist/env/task/delegate/index.d.ts +1612 -0
- package/dist/env/task/delegate/index.js +18 -0
- package/dist/env/task/events/index.d.ts +171 -0
- package/dist/env/task/events/index.js +7 -0
- package/dist/env/task/hooks/index.d.ts +624 -0
- package/dist/env/task/hooks/index.js +7 -0
- package/dist/env/task/index.d.ts +1553 -0
- package/dist/env/task/index.js +34 -0
- package/dist/env/task/plugins/index.d.ts +466 -0
- package/dist/env/task/plugins/index.js +23 -0
- package/dist/env/task/storage/index.d.ts +241 -0
- package/dist/env/task/storage/index.js +14 -0
- package/dist/env/task/tools/index.d.ts +1485 -0
- package/dist/env/task/tools/index.js +17 -0
- package/dist/env/task/tools/operation/index.d.ts +1484 -0
- package/dist/env/task/tools/operation/index.js +15 -0
- package/dist/env/tool/built-in/index.d.ts +218 -0
- package/dist/env/tool/built-in/index.js +25 -0
- package/dist/env/tool/index.d.ts +1396 -0
- package/dist/env/tool/index.js +39 -0
- package/dist/env/workflow/decorators/index.d.ts +2161 -0
- package/dist/env/workflow/decorators/index.js +27 -0
- package/dist/env/workflow/engine/index.d.ts +3453 -0
- package/dist/env/workflow/engine/index.js +28 -0
- package/dist/env/workflow/index.d.ts +3546 -0
- package/dist/env/workflow/index.js +136 -0
- package/dist/env/workflow/nodes/index.d.ts +2092 -0
- package/dist/env/workflow/nodes/index.js +19 -0
- package/dist/env/workflow/service/index.d.ts +227 -0
- package/dist/env/workflow/service/index.js +13 -0
- package/dist/env/workflow/storage/index.d.ts +165 -0
- package/dist/env/workflow/storage/index.js +27 -0
- package/dist/env/workflow/tools/index.d.ts +416 -0
- package/dist/env/workflow/tools/index.js +159 -0
- package/dist/env/workflow/types/index.d.ts +2255 -0
- package/dist/env/workflow/types/index.js +98 -0
- package/dist/env/workflow/utils/index.d.ts +2031 -0
- package/dist/env/workflow/utils/index.js +637 -0
- package/dist/index.d.ts +7858 -0
- package/dist/index.js +399 -0
- package/dist/shared/@ai-setting/roy-agent-core-0rtxwr28.js +258 -0
- package/dist/shared/@ai-setting/roy-agent-core-0vbdz0x7.js +36 -0
- package/dist/shared/@ai-setting/roy-agent-core-1akcqxj9.js +349 -0
- package/dist/shared/@ai-setting/roy-agent-core-1ce3fqrk.js +117 -0
- package/dist/shared/@ai-setting/roy-agent-core-2dhd60aw.js +11 -0
- package/dist/shared/@ai-setting/roy-agent-core-3jywqmdd.js +393 -0
- package/dist/shared/@ai-setting/roy-agent-core-3rr5k71j.js +200 -0
- package/dist/shared/@ai-setting/roy-agent-core-44hnfb02.js +299 -0
- package/dist/shared/@ai-setting/roy-agent-core-4t40mkpv.js +206 -0
- package/dist/shared/@ai-setting/roy-agent-core-4txzpsbt.js +393 -0
- package/dist/shared/@ai-setting/roy-agent-core-5x94xmt6.js +350 -0
- package/dist/shared/@ai-setting/roy-agent-core-69jskqjg.js +180 -0
- package/dist/shared/@ai-setting/roy-agent-core-6kvtahqv.js +408 -0
- package/dist/shared/@ai-setting/roy-agent-core-7fgf85wc.js +284 -0
- package/dist/shared/@ai-setting/roy-agent-core-81w1963m.js +762 -0
- package/dist/shared/@ai-setting/roy-agent-core-8gxth0eh.js +10 -0
- package/dist/shared/@ai-setting/roy-agent-core-92z6t4he.js +14 -0
- package/dist/shared/@ai-setting/roy-agent-core-93zfb3r1.js +922 -0
- package/dist/shared/@ai-setting/roy-agent-core-9yxb3ty9.js +15 -0
- package/dist/shared/@ai-setting/roy-agent-core-b0x5dda6.js +1130 -0
- package/dist/shared/@ai-setting/roy-agent-core-bcbqy27c.js +14 -0
- package/dist/shared/@ai-setting/roy-agent-core-bvr1761x.js +653 -0
- package/dist/shared/@ai-setting/roy-agent-core-ctdhjv68.js +93 -0
- package/dist/shared/@ai-setting/roy-agent-core-d7cyjkf7.js +872 -0
- package/dist/shared/@ai-setting/roy-agent-core-dh9d7a3m.js +11 -0
- package/dist/shared/@ai-setting/roy-agent-core-e25xkv53.js +64 -0
- package/dist/shared/@ai-setting/roy-agent-core-eajcvp4e.js +378 -0
- package/dist/shared/@ai-setting/roy-agent-core-f7q2x5z6.js +492 -0
- package/dist/shared/@ai-setting/roy-agent-core-fs0mn2jk.js +52 -0
- package/dist/shared/@ai-setting/roy-agent-core-g1s2h0e5.js +171 -0
- package/dist/shared/@ai-setting/roy-agent-core-g99pxzn5.js +862 -0
- package/dist/shared/@ai-setting/roy-agent-core-gbqcyegm.js +1387 -0
- package/dist/shared/@ai-setting/roy-agent-core-gjq1yk68.js +208 -0
- package/dist/shared/@ai-setting/roy-agent-core-gq20wsgv.js +139 -0
- package/dist/shared/@ai-setting/roy-agent-core-gwc4h96n.js +534 -0
- package/dist/shared/@ai-setting/roy-agent-core-jfh9q2qh.js +204 -0
- package/dist/shared/@ai-setting/roy-agent-core-jvatggbb.js +603 -0
- package/dist/shared/@ai-setting/roy-agent-core-kkbwepqb.js +97 -0
- package/dist/shared/@ai-setting/roy-agent-core-pjr12nnd.js +587 -0
- package/dist/shared/@ai-setting/roy-agent-core-psv4v63c.js +176 -0
- package/dist/shared/@ai-setting/roy-agent-core-psvxt4c9.js +60 -0
- package/dist/shared/@ai-setting/roy-agent-core-qqceba6k.js +442 -0
- package/dist/shared/@ai-setting/roy-agent-core-qxhq8ven.js +57 -0
- package/dist/shared/@ai-setting/roy-agent-core-qxnbvgwe.js +66 -0
- package/dist/shared/@ai-setting/roy-agent-core-r9ezzemr.js +10 -0
- package/dist/shared/@ai-setting/roy-agent-core-rhmtwnw1.js +267 -0
- package/dist/shared/@ai-setting/roy-agent-core-rvv6ydff.js +584 -0
- package/dist/shared/@ai-setting/roy-agent-core-rvxg1wps.js +102 -0
- package/dist/shared/@ai-setting/roy-agent-core-satmq6sh.js +549 -0
- package/dist/shared/@ai-setting/roy-agent-core-sx7wsvnn.js +15 -0
- package/dist/shared/@ai-setting/roy-agent-core-t94ktchq.js +213 -0
- package/dist/shared/@ai-setting/roy-agent-core-vf215qfv.js +812 -0
- package/dist/shared/@ai-setting/roy-agent-core-vkz81f7v.js +1316 -0
- package/dist/shared/@ai-setting/roy-agent-core-vn2bc59q.js +1205 -0
- package/dist/shared/@ai-setting/roy-agent-core-wa1kzqky.js +328 -0
- package/dist/shared/@ai-setting/roy-agent-core-wft9ra24.js +20 -0
- package/dist/shared/@ai-setting/roy-agent-core-wrcy0h6z.js +2098 -0
- package/dist/shared/@ai-setting/roy-agent-core-xq8hhqb8.js +419 -0
- package/dist/shared/@ai-setting/roy-agent-core-xs5rsgat.js +368 -0
- package/dist/shared/@ai-setting/roy-agent-core-zbkpc41z.js +377 -0
- package/dist/shared/@ai-setting/roy-agent-core-zgypchmt.js +172 -0
- package/dist/shared/@ai-setting/roy-agent-core-zpn0bqa8.js +103 -0
- package/package.json +29 -8
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createOperationTool,
|
|
3
|
+
deleteOperationTool,
|
|
4
|
+
getOperationTool,
|
|
5
|
+
listOperationsTool,
|
|
6
|
+
updateOperationTool
|
|
7
|
+
} from "../../../../shared/@ai-setting/roy-agent-core-t94ktchq.js";
|
|
8
|
+
import"../../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
9
|
+
export {
|
|
10
|
+
updateOperationTool,
|
|
11
|
+
listOperationsTool,
|
|
12
|
+
getOperationTool,
|
|
13
|
+
deleteOperationTool,
|
|
14
|
+
createOperationTool
|
|
15
|
+
};
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
import { z, ZodType, ZodError } from "zod";
|
|
2
|
+
/**
|
|
3
|
+
* 沙箱配置
|
|
4
|
+
*/
|
|
5
|
+
interface SandboxConfig {
|
|
6
|
+
/** 是否启用沙箱 */
|
|
7
|
+
enabled: boolean;
|
|
8
|
+
/** 沙箱类型 */
|
|
9
|
+
type: "native" | "docker";
|
|
10
|
+
/** 动作过滤 */
|
|
11
|
+
actionFilter?: {
|
|
12
|
+
/** 包含的动作 */
|
|
13
|
+
include?: string[];
|
|
14
|
+
/** 排除的动作 */
|
|
15
|
+
exclude?: string[];
|
|
16
|
+
};
|
|
17
|
+
/** 文件系统限制 */
|
|
18
|
+
filesystem?: {
|
|
19
|
+
/** 允许读取 */
|
|
20
|
+
allowRead?: string[];
|
|
21
|
+
/** 禁止读取 */
|
|
22
|
+
denyRead?: string[];
|
|
23
|
+
/** 允许写入 */
|
|
24
|
+
allowWrite?: string[];
|
|
25
|
+
/** 禁止写入 */
|
|
26
|
+
denyWrite?: string[];
|
|
27
|
+
};
|
|
28
|
+
/** 网络限制 */
|
|
29
|
+
network?: {
|
|
30
|
+
/** 允许的域名 */
|
|
31
|
+
allowedDomains?: string[];
|
|
32
|
+
/** 禁止的域名 */
|
|
33
|
+
deniedDomains?: string[];
|
|
34
|
+
};
|
|
35
|
+
/** Docker 配置 */
|
|
36
|
+
docker?: {
|
|
37
|
+
/** 镜像 */
|
|
38
|
+
image?: string;
|
|
39
|
+
/** 网络模式 */
|
|
40
|
+
networkMode?: "bridge" | "host" | "none";
|
|
41
|
+
/** 卷挂载 */
|
|
42
|
+
volumes?: Record<string, string>;
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* 工具执行上下文
|
|
47
|
+
*/
|
|
48
|
+
interface ToolContext {
|
|
49
|
+
/** 工作目录 */
|
|
50
|
+
workdir?: string;
|
|
51
|
+
/** 用户 ID */
|
|
52
|
+
user_id?: string;
|
|
53
|
+
/** 会话 ID */
|
|
54
|
+
session_id?: string;
|
|
55
|
+
/** 消息 ID */
|
|
56
|
+
message_id?: string;
|
|
57
|
+
/** 中断信号 */
|
|
58
|
+
abort?: AbortSignal;
|
|
59
|
+
/** 额外元数据 */
|
|
60
|
+
metadata?: Record<string, unknown>;
|
|
61
|
+
/** 沙箱配置 */
|
|
62
|
+
sandbox?: SandboxConfig;
|
|
63
|
+
/** 沙箱 Provider */
|
|
64
|
+
sandboxProvider?: unknown | null;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* 工具结果元数据
|
|
68
|
+
*/
|
|
69
|
+
interface ToolResultMetadata {
|
|
70
|
+
/** 执行时间(毫秒) */
|
|
71
|
+
execution_time_ms: number;
|
|
72
|
+
/** 输出大小(字节) */
|
|
73
|
+
output_size?: number;
|
|
74
|
+
/** 标准输出 */
|
|
75
|
+
stdout?: string;
|
|
76
|
+
/** 标准错误 */
|
|
77
|
+
stderr?: string;
|
|
78
|
+
/** 退出码 */
|
|
79
|
+
exit_code?: number;
|
|
80
|
+
/** Token 使用量 */
|
|
81
|
+
usage?: {
|
|
82
|
+
inputTokens: number;
|
|
83
|
+
outputTokens: number;
|
|
84
|
+
totalTokens?: number;
|
|
85
|
+
};
|
|
86
|
+
/** 额外元数据 */
|
|
87
|
+
[key: string]: unknown;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* 工具执行结果
|
|
91
|
+
*/
|
|
92
|
+
interface ToolResult {
|
|
93
|
+
/** 是否成功 */
|
|
94
|
+
success: boolean;
|
|
95
|
+
/** 输出内容 */
|
|
96
|
+
output: string | Record<string, unknown>;
|
|
97
|
+
/** 错误信息 */
|
|
98
|
+
error?: string;
|
|
99
|
+
/** 结果元数据 */
|
|
100
|
+
metadata?: ToolResultMetadata;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* 工具元数据
|
|
104
|
+
*/
|
|
105
|
+
interface ToolMetadata {
|
|
106
|
+
/** 分类 */
|
|
107
|
+
category?: string;
|
|
108
|
+
/** 标签 */
|
|
109
|
+
tags?: string[];
|
|
110
|
+
/** 版本 */
|
|
111
|
+
version?: string;
|
|
112
|
+
/** 作者 */
|
|
113
|
+
author?: string;
|
|
114
|
+
/** 是否实验性 */
|
|
115
|
+
experimental?: boolean;
|
|
116
|
+
/** MCP 工具信息(MCP adapter 使用) */
|
|
117
|
+
mcpTool?: {
|
|
118
|
+
originalName: string;
|
|
119
|
+
originalDescription: string;
|
|
120
|
+
inputSchema?: unknown;
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* 工具沙箱配置
|
|
125
|
+
*/
|
|
126
|
+
interface ToolSandboxConfig {
|
|
127
|
+
/** 是否启用沙箱 */
|
|
128
|
+
enabled: boolean;
|
|
129
|
+
/** 沙箱配置 */
|
|
130
|
+
config?: Partial<SandboxConfig>;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* 工具权限配置
|
|
134
|
+
*/
|
|
135
|
+
interface ToolPermissionConfig {
|
|
136
|
+
/** 是否需要用户确认 */
|
|
137
|
+
requireConfirmation?: boolean;
|
|
138
|
+
/** 权限级别 */
|
|
139
|
+
level?: "safe" | "dangerous" | "critical";
|
|
140
|
+
}
|
|
141
|
+
/**
|
|
142
|
+
* 工具信息
|
|
143
|
+
*/
|
|
144
|
+
interface ToolInfo<Parameters extends ZodType = ZodType> {
|
|
145
|
+
/** 工具名称 */
|
|
146
|
+
name: string;
|
|
147
|
+
/** 工具描述 */
|
|
148
|
+
description: string;
|
|
149
|
+
/** 参数 Schema */
|
|
150
|
+
parameters: Parameters;
|
|
151
|
+
/** 初始化函数(可选) */
|
|
152
|
+
init?: (ctx?: ToolContext) => Promise<void>;
|
|
153
|
+
/** 执行函数 */
|
|
154
|
+
execute: (args: z.infer<Parameters>, ctx: ToolContext) => Promise<ToolResult>;
|
|
155
|
+
/** 参数验证错误格式化(可选) */
|
|
156
|
+
formatValidationError?: (error: ZodError) => string;
|
|
157
|
+
/** 沙箱配置 */
|
|
158
|
+
sandbox?: ToolSandboxConfig;
|
|
159
|
+
/** 权限配置 */
|
|
160
|
+
permission?: ToolPermissionConfig;
|
|
161
|
+
/** 工具元数据 */
|
|
162
|
+
metadata?: ToolMetadata;
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* 工具类型别名
|
|
166
|
+
*/
|
|
167
|
+
type Tool = ToolInfo;
|
|
168
|
+
/**
|
|
169
|
+
* Bash 工具
|
|
170
|
+
* 执行 shell 命令
|
|
171
|
+
*
|
|
172
|
+
* 支持 OpenTelemetry W3C TraceContext 跨进程追踪:
|
|
173
|
+
* - 通过 TRACEPARENT 环境变量传递 traceId 和 parentSpanId
|
|
174
|
+
* - 子进程可以正确关联到父 trace
|
|
175
|
+
*/
|
|
176
|
+
declare const bashTool: Tool;
|
|
177
|
+
/**
|
|
178
|
+
* Echo tool - simple echo command
|
|
179
|
+
*
|
|
180
|
+
* This is a convenience tool for logging messages in workflows.
|
|
181
|
+
*/
|
|
182
|
+
declare const echoTool: Tool;
|
|
183
|
+
/**
|
|
184
|
+
* Glob 工具
|
|
185
|
+
* 文件模式匹配搜索
|
|
186
|
+
*/
|
|
187
|
+
declare const globTool: Tool;
|
|
188
|
+
/**
|
|
189
|
+
* 读取文件工具
|
|
190
|
+
*/
|
|
191
|
+
declare const readFileTool: Tool;
|
|
192
|
+
/**
|
|
193
|
+
* 写入文件工具
|
|
194
|
+
*/
|
|
195
|
+
declare const writeFileTool: Tool;
|
|
196
|
+
/**
|
|
197
|
+
* 编辑文件工具
|
|
198
|
+
* 通过 oldString/newString 替换来编辑文件
|
|
199
|
+
*/
|
|
200
|
+
declare const editFileTool: Tool;
|
|
201
|
+
/**
|
|
202
|
+
* Grep 工具
|
|
203
|
+
* 在文件中搜索内容
|
|
204
|
+
*/
|
|
205
|
+
declare const grepTool: Tool;
|
|
206
|
+
/**
|
|
207
|
+
* 获取所有内置工具
|
|
208
|
+
*
|
|
209
|
+
* Note: run-workflow tool is not included here because it requires
|
|
210
|
+
* a WorkflowService instance which needs to be initialized at runtime.
|
|
211
|
+
* Use initRunWorkflowTool(workflowService) to initialize it.
|
|
212
|
+
*/
|
|
213
|
+
declare function getAllBuiltInTools(): Tool[];
|
|
214
|
+
/**
|
|
215
|
+
* 获取指定内置工具
|
|
216
|
+
*/
|
|
217
|
+
declare function getBuiltInTool(name: string): Tool | undefined;
|
|
218
|
+
export { writeFileTool, readFileTool, grepTool, globTool, getBuiltInTool, getAllBuiltInTools, editFileTool, echoTool, bashTool };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import {
|
|
2
|
+
bashTool,
|
|
3
|
+
echoTool,
|
|
4
|
+
editFileTool,
|
|
5
|
+
getAllBuiltInTools,
|
|
6
|
+
getBuiltInTool,
|
|
7
|
+
globTool,
|
|
8
|
+
grepTool,
|
|
9
|
+
readFileTool,
|
|
10
|
+
writeFileTool
|
|
11
|
+
} from "../../../shared/@ai-setting/roy-agent-core-satmq6sh.js";
|
|
12
|
+
import"../../../shared/@ai-setting/roy-agent-core-xs5rsgat.js";
|
|
13
|
+
import"../../../shared/@ai-setting/roy-agent-core-psv4v63c.js";
|
|
14
|
+
import"../../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
15
|
+
export {
|
|
16
|
+
writeFileTool,
|
|
17
|
+
readFileTool,
|
|
18
|
+
grepTool,
|
|
19
|
+
globTool,
|
|
20
|
+
getBuiltInTool,
|
|
21
|
+
getAllBuiltInTools,
|
|
22
|
+
editFileTool,
|
|
23
|
+
echoTool,
|
|
24
|
+
bashTool
|
|
25
|
+
};
|