@ai-setting/roy-agent-core 1.5.99 → 1.5.101
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/env/agent/index.js +2 -2
- package/dist/env/event-source/index.js +7 -3
- package/dist/env/index.js +7 -7
- package/dist/env/task/delegate/index.js +3 -2
- package/dist/env/task/index.js +4 -3
- package/dist/env/task/plugins/index.js +2 -2
- package/dist/index.js +14 -10
- package/dist/shared/@ai-setting/{roy-agent-core-ss92p0r6.js → roy-agent-core-fkb75cf6.js} +12 -1
- package/dist/shared/@ai-setting/{roy-agent-core-hfgqwf5w.js → roy-agent-core-k31c3kvz.js} +13 -0
- package/dist/shared/@ai-setting/{roy-agent-core-0dv02z65.js → roy-agent-core-ks9t8jh1.js} +3 -1
- package/dist/shared/@ai-setting/{roy-agent-core-x65fyjaw.js → roy-agent-core-mp3xb3am.js} +1 -1
- package/dist/shared/@ai-setting/{roy-agent-core-7hm9zmb3.js → roy-agent-core-x47gc6rq.js} +2 -2
- package/package.json +1 -1
- package/dist/shared/@ai-setting/{roy-agent-core-mx9vq7b2.js → roy-agent-core-nt77d6fs.js} +3 -3
package/dist/env/agent/index.js
CHANGED
|
@@ -2,13 +2,13 @@ import {
|
|
|
2
2
|
AgentComponent,
|
|
3
3
|
AgentComponentConfigSchema,
|
|
4
4
|
SummaryAgent
|
|
5
|
-
} from "../../shared/@ai-setting/roy-agent-core-
|
|
5
|
+
} from "../../shared/@ai-setting/roy-agent-core-ks9t8jh1.js";
|
|
6
6
|
import"../../shared/@ai-setting/roy-agent-core-j7jeqxhd.js";
|
|
7
7
|
import"../../shared/@ai-setting/roy-agent-core-jhdv14ks.js";
|
|
8
8
|
import"../../shared/@ai-setting/roy-agent-core-5h49ct1a.js";
|
|
9
9
|
import"../../shared/@ai-setting/roy-agent-core-bdajt9cs.js";
|
|
10
10
|
import"../../shared/@ai-setting/roy-agent-core-e25xkv53.js";
|
|
11
|
-
import"../../shared/@ai-setting/roy-agent-core-
|
|
11
|
+
import"../../shared/@ai-setting/roy-agent-core-k31c3kvz.js";
|
|
12
12
|
import"../../shared/@ai-setting/roy-agent-core-qxnbvgwe.js";
|
|
13
13
|
import"../../shared/@ai-setting/roy-agent-core-ctdhjv68.js";
|
|
14
14
|
import"../../shared/@ai-setting/roy-agent-core-yfhgxh5a.js";
|
|
@@ -4,11 +4,13 @@ import {
|
|
|
4
4
|
EventSourceComponent,
|
|
5
5
|
TimerInstance,
|
|
6
6
|
bountyIMHandler,
|
|
7
|
+
buildDefaultBountyIMSystemPrompt,
|
|
7
8
|
builtInHandlers,
|
|
8
9
|
getBuiltInHandler,
|
|
9
10
|
larkCliHandler,
|
|
11
|
+
resolveBountyIMSystemPrompt,
|
|
10
12
|
timerHandler
|
|
11
|
-
} from "../../shared/@ai-setting/roy-agent-core-
|
|
13
|
+
} from "../../shared/@ai-setting/roy-agent-core-x47gc6rq.js";
|
|
12
14
|
import {
|
|
13
15
|
BUILT_IN_EVENT_SOURCE_TYPES,
|
|
14
16
|
BUILT_IN_EVENT_SOURCE_TYPE_LIST,
|
|
@@ -19,12 +21,12 @@ import {
|
|
|
19
21
|
validateEventSourceConfig
|
|
20
22
|
} from "../../shared/@ai-setting/roy-agent-core-ds5f75pg.js";
|
|
21
23
|
import"../../shared/@ai-setting/roy-agent-core-wmkx79b1.js";
|
|
22
|
-
import"../../shared/@ai-setting/roy-agent-core-
|
|
23
|
-
import"../../shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
24
|
+
import"../../shared/@ai-setting/roy-agent-core-nt77d6fs.js";
|
|
24
25
|
import"../../shared/@ai-setting/roy-agent-core-az13yzmc.js";
|
|
25
26
|
import"../../shared/@ai-setting/roy-agent-core-8wd3qwx5.js";
|
|
26
27
|
import"../../shared/@ai-setting/roy-agent-core-4yq23m5g.js";
|
|
27
28
|
import"../../shared/@ai-setting/roy-agent-core-bdajt9cs.js";
|
|
29
|
+
import"../../shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
28
30
|
import"../../shared/@ai-setting/roy-agent-core-92z6t4he.js";
|
|
29
31
|
import"../../shared/@ai-setting/roy-agent-core-qxhq8ven.js";
|
|
30
32
|
import"../../shared/@ai-setting/roy-agent-core-pf1c360e.js";
|
|
@@ -40,12 +42,14 @@ import"../../shared/@ai-setting/roy-agent-core-fs0mn2jk.js";
|
|
|
40
42
|
export {
|
|
41
43
|
validateEventSourceConfig,
|
|
42
44
|
timerHandler,
|
|
45
|
+
resolveBountyIMSystemPrompt,
|
|
43
46
|
larkCliHandler,
|
|
44
47
|
isValidEventSourceType,
|
|
45
48
|
isBuiltInEventSourceType,
|
|
46
49
|
getDefaultConfigForType,
|
|
47
50
|
getBuiltInHandler,
|
|
48
51
|
builtInHandlers,
|
|
52
|
+
buildDefaultBountyIMSystemPrompt,
|
|
49
53
|
bountyIMHandler,
|
|
50
54
|
TimerInstance,
|
|
51
55
|
EventSourceInitHooks,
|
package/dist/env/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
EventSourceComponent,
|
|
6
6
|
builtInHandlers,
|
|
7
7
|
larkCliHandler
|
|
8
|
-
} from "../shared/@ai-setting/roy-agent-core-
|
|
8
|
+
} from "../shared/@ai-setting/roy-agent-core-x47gc6rq.js";
|
|
9
9
|
import {
|
|
10
10
|
EventSourceInitHooks,
|
|
11
11
|
getDefaultConfigForType,
|
|
@@ -17,8 +17,7 @@ import"../shared/@ai-setting/roy-agent-core-wmkx79b1.js";
|
|
|
17
17
|
import {
|
|
18
18
|
PluginComponent
|
|
19
19
|
} from "../shared/@ai-setting/roy-agent-core-ws76avbn.js";
|
|
20
|
-
import"../shared/@ai-setting/roy-agent-core-
|
|
21
|
-
import"../shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
20
|
+
import"../shared/@ai-setting/roy-agent-core-nt77d6fs.js";
|
|
22
21
|
import"../shared/@ai-setting/roy-agent-core-az13yzmc.js";
|
|
23
22
|
import {
|
|
24
23
|
WorkflowComponent
|
|
@@ -42,7 +41,7 @@ import"../shared/@ai-setting/roy-agent-core-1ce3fqrk.js";
|
|
|
42
41
|
import {
|
|
43
42
|
AgentComponent,
|
|
44
43
|
AgentComponentConfigSchema
|
|
45
|
-
} from "../shared/@ai-setting/roy-agent-core-
|
|
44
|
+
} from "../shared/@ai-setting/roy-agent-core-ks9t8jh1.js";
|
|
46
45
|
import"../shared/@ai-setting/roy-agent-core-j7jeqxhd.js";
|
|
47
46
|
import"../shared/@ai-setting/roy-agent-core-jhdv14ks.js";
|
|
48
47
|
import"../shared/@ai-setting/roy-agent-core-5h49ct1a.js";
|
|
@@ -50,12 +49,13 @@ import"../shared/@ai-setting/roy-agent-core-bdajt9cs.js";
|
|
|
50
49
|
import"../shared/@ai-setting/roy-agent-core-e25xkv53.js";
|
|
51
50
|
import {
|
|
52
51
|
TaskComponent
|
|
53
|
-
} from "../shared/@ai-setting/roy-agent-core-
|
|
52
|
+
} from "../shared/@ai-setting/roy-agent-core-mp3xb3am.js";
|
|
54
53
|
import"../shared/@ai-setting/roy-agent-core-8gxth0eh.js";
|
|
55
|
-
import"../shared/@ai-setting/roy-agent-core-
|
|
54
|
+
import"../shared/@ai-setting/roy-agent-core-fkb75cf6.js";
|
|
56
55
|
import"../shared/@ai-setting/roy-agent-core-hvdfgvfz.js";
|
|
57
56
|
import"../shared/@ai-setting/roy-agent-core-9xby523m.js";
|
|
58
|
-
import"../shared/@ai-setting/roy-agent-core-
|
|
57
|
+
import"../shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
58
|
+
import"../shared/@ai-setting/roy-agent-core-k31c3kvz.js";
|
|
59
59
|
import {
|
|
60
60
|
XDG_PATHS,
|
|
61
61
|
getXDGPath,
|
|
@@ -3,9 +3,10 @@ import {
|
|
|
3
3
|
BackgroundTaskManager,
|
|
4
4
|
createDelegateTool,
|
|
5
5
|
createStopTool
|
|
6
|
-
} from "../../../shared/@ai-setting/roy-agent-core-
|
|
6
|
+
} from "../../../shared/@ai-setting/roy-agent-core-fkb75cf6.js";
|
|
7
7
|
import"../../../shared/@ai-setting/roy-agent-core-hvdfgvfz.js";
|
|
8
|
-
import"../../../shared/@ai-setting/roy-agent-core-
|
|
8
|
+
import"../../../shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
9
|
+
import"../../../shared/@ai-setting/roy-agent-core-k31c3kvz.js";
|
|
9
10
|
import"../../../shared/@ai-setting/roy-agent-core-qxnbvgwe.js";
|
|
10
11
|
import"../../../shared/@ai-setting/roy-agent-core-92z6t4he.js";
|
|
11
12
|
import"../../../shared/@ai-setting/roy-agent-core-gp872e7m.js";
|
package/dist/env/task/index.js
CHANGED
|
@@ -5,17 +5,18 @@ import {
|
|
|
5
5
|
TaskPriorityEnum,
|
|
6
6
|
TaskStatusEnum,
|
|
7
7
|
TaskTypeEnum
|
|
8
|
-
} from "../../shared/@ai-setting/roy-agent-core-
|
|
8
|
+
} from "../../shared/@ai-setting/roy-agent-core-mp3xb3am.js";
|
|
9
9
|
import {
|
|
10
10
|
TaskEntityEventTypes
|
|
11
11
|
} from "../../shared/@ai-setting/roy-agent-core-8gxth0eh.js";
|
|
12
|
-
import"../../shared/@ai-setting/roy-agent-core-
|
|
12
|
+
import"../../shared/@ai-setting/roy-agent-core-fkb75cf6.js";
|
|
13
13
|
import"../../shared/@ai-setting/roy-agent-core-hvdfgvfz.js";
|
|
14
14
|
import {
|
|
15
15
|
SQLiteTaskStore,
|
|
16
16
|
getDefaultTaskDbPath
|
|
17
17
|
} from "../../shared/@ai-setting/roy-agent-core-9xby523m.js";
|
|
18
|
-
import"../../shared/@ai-setting/roy-agent-core-
|
|
18
|
+
import"../../shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
19
|
+
import"../../shared/@ai-setting/roy-agent-core-k31c3kvz.js";
|
|
19
20
|
import"../../shared/@ai-setting/roy-agent-core-qxnbvgwe.js";
|
|
20
21
|
import"../../shared/@ai-setting/roy-agent-core-0ye4q2jj.js";
|
|
21
22
|
import"../../shared/@ai-setting/roy-agent-core-t94ktchq.js";
|
|
@@ -7,14 +7,14 @@ import {
|
|
|
7
7
|
formatExtractorInput,
|
|
8
8
|
formatExtractorInputFromDescription,
|
|
9
9
|
parseExtractorOutput
|
|
10
|
-
} from "../../../shared/@ai-setting/roy-agent-core-
|
|
11
|
-
import"../../../shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
10
|
+
} from "../../../shared/@ai-setting/roy-agent-core-nt77d6fs.js";
|
|
12
11
|
import"../../../shared/@ai-setting/roy-agent-core-az13yzmc.js";
|
|
13
12
|
import"../../../shared/@ai-setting/roy-agent-core-8wd3qwx5.js";
|
|
14
13
|
import"../../../shared/@ai-setting/roy-agent-core-4yq23m5g.js";
|
|
15
14
|
import {
|
|
16
15
|
createAutoTaskPlugin
|
|
17
16
|
} from "../../../shared/@ai-setting/roy-agent-core-bdajt9cs.js";
|
|
17
|
+
import"../../../shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
18
18
|
import"../../../shared/@ai-setting/roy-agent-core-92z6t4he.js";
|
|
19
19
|
import"../../../shared/@ai-setting/roy-agent-core-zttjq1h3.js";
|
|
20
20
|
import"../../../shared/@ai-setting/roy-agent-core-scp0afxg.js";
|
package/dist/index.js
CHANGED
|
@@ -68,11 +68,13 @@ import {
|
|
|
68
68
|
EventSourceComponent,
|
|
69
69
|
TimerInstance,
|
|
70
70
|
bountyIMHandler,
|
|
71
|
+
buildDefaultBountyIMSystemPrompt,
|
|
71
72
|
builtInHandlers,
|
|
72
73
|
getBuiltInHandler,
|
|
73
74
|
larkCliHandler,
|
|
75
|
+
resolveBountyIMSystemPrompt,
|
|
74
76
|
timerHandler
|
|
75
|
-
} from "./shared/@ai-setting/roy-agent-core-
|
|
77
|
+
} from "./shared/@ai-setting/roy-agent-core-x47gc6rq.js";
|
|
76
78
|
import {
|
|
77
79
|
BUILT_IN_EVENT_SOURCE_TYPES,
|
|
78
80
|
BUILT_IN_EVENT_SOURCE_TYPE_LIST,
|
|
@@ -91,11 +93,7 @@ import {
|
|
|
91
93
|
} from "./shared/@ai-setting/roy-agent-core-ws76avbn.js";
|
|
92
94
|
import {
|
|
93
95
|
TaskTagPlugin
|
|
94
|
-
} from "./shared/@ai-setting/roy-agent-core-
|
|
95
|
-
import {
|
|
96
|
-
getBuiltInPrompt,
|
|
97
|
-
getBuiltInPromptNames
|
|
98
|
-
} from "./shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
96
|
+
} from "./shared/@ai-setting/roy-agent-core-nt77d6fs.js";
|
|
99
97
|
import {
|
|
100
98
|
BasePlugin
|
|
101
99
|
} from "./shared/@ai-setting/roy-agent-core-az13yzmc.js";
|
|
@@ -130,7 +128,7 @@ import"./shared/@ai-setting/roy-agent-core-1ce3fqrk.js";
|
|
|
130
128
|
import {
|
|
131
129
|
AgentComponent,
|
|
132
130
|
AgentComponentConfigSchema
|
|
133
|
-
} from "./shared/@ai-setting/roy-agent-core-
|
|
131
|
+
} from "./shared/@ai-setting/roy-agent-core-ks9t8jh1.js";
|
|
134
132
|
import {
|
|
135
133
|
createInvokeConfig,
|
|
136
134
|
invoke,
|
|
@@ -152,17 +150,21 @@ import {
|
|
|
152
150
|
} from "./shared/@ai-setting/roy-agent-core-e25xkv53.js";
|
|
153
151
|
import {
|
|
154
152
|
TaskComponent
|
|
155
|
-
} from "./shared/@ai-setting/roy-agent-core-
|
|
153
|
+
} from "./shared/@ai-setting/roy-agent-core-mp3xb3am.js";
|
|
156
154
|
import"./shared/@ai-setting/roy-agent-core-8gxth0eh.js";
|
|
157
|
-
import"./shared/@ai-setting/roy-agent-core-
|
|
155
|
+
import"./shared/@ai-setting/roy-agent-core-fkb75cf6.js";
|
|
158
156
|
import"./shared/@ai-setting/roy-agent-core-hvdfgvfz.js";
|
|
159
157
|
import {
|
|
160
158
|
SQLiteTaskStore,
|
|
161
159
|
getDefaultTaskDbPath
|
|
162
160
|
} from "./shared/@ai-setting/roy-agent-core-9xby523m.js";
|
|
161
|
+
import {
|
|
162
|
+
getBuiltInPrompt,
|
|
163
|
+
getBuiltInPromptNames
|
|
164
|
+
} from "./shared/@ai-setting/roy-agent-core-dj18eyyk.js";
|
|
163
165
|
import {
|
|
164
166
|
AgentRegistry
|
|
165
|
-
} from "./shared/@ai-setting/roy-agent-core-
|
|
167
|
+
} from "./shared/@ai-setting/roy-agent-core-k31c3kvz.js";
|
|
166
168
|
import {
|
|
167
169
|
XDG_PATHS,
|
|
168
170
|
getXDGPath,
|
|
@@ -375,6 +377,7 @@ export {
|
|
|
375
377
|
setQuietMode,
|
|
376
378
|
setConfigComponent as setLoggerConfigComponent,
|
|
377
379
|
setLogDirOverride,
|
|
380
|
+
resolveBountyIMSystemPrompt,
|
|
378
381
|
resetUnderstandImageLLMProvider,
|
|
379
382
|
resetTracerProvider,
|
|
380
383
|
registerDecoratorNodeType,
|
|
@@ -421,6 +424,7 @@ export {
|
|
|
421
424
|
createAutoTaskPlugin,
|
|
422
425
|
closeDatabase,
|
|
423
426
|
builtInHandlers,
|
|
427
|
+
buildDefaultBountyIMSystemPrompt,
|
|
424
428
|
bountyIMHandler,
|
|
425
429
|
bashTool,
|
|
426
430
|
XDG_PATHS,
|
|
@@ -2,9 +2,12 @@ import {
|
|
|
2
2
|
ProcessRegistry,
|
|
3
3
|
runWithProcessRegistryAsync
|
|
4
4
|
} from "./roy-agent-core-hvdfgvfz.js";
|
|
5
|
+
import {
|
|
6
|
+
builtInPrompts
|
|
7
|
+
} from "./roy-agent-core-dj18eyyk.js";
|
|
5
8
|
import {
|
|
6
9
|
DEFAULT_SUBAGENT_PROMPT
|
|
7
|
-
} from "./roy-agent-core-
|
|
10
|
+
} from "./roy-agent-core-k31c3kvz.js";
|
|
8
11
|
import {
|
|
9
12
|
TaskHookPoints
|
|
10
13
|
} from "./roy-agent-core-92z6t4he.js";
|
|
@@ -176,6 +179,14 @@ var builtInSubAgents = [
|
|
|
176
179
|
description: "Fast agent specialized for exploring codebases, finding files, and searching for patterns.",
|
|
177
180
|
allowedTools: ["read_file", "glob", "grep", "bash"],
|
|
178
181
|
deniedTools: ["delegate_task", "stop_task"]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
id: "roy",
|
|
185
|
+
name: "Roy",
|
|
186
|
+
mode: "subagent",
|
|
187
|
+
description: "Versatile AI assistant inspired by Jarvis — intelligent, proactive, and capable. Use for general-purpose tasks, coding, research, and complex multi-step work. Always available (built-in) without `agent add roy`.",
|
|
188
|
+
promptOverride: builtInPrompts["roy"],
|
|
189
|
+
deniedTools: ["delegate_task", "stop_task"]
|
|
179
190
|
}
|
|
180
191
|
];
|
|
181
192
|
function getSubAgentSpec(id) {
|
|
@@ -246,6 +246,19 @@ class AgentRegistry {
|
|
|
246
246
|
};
|
|
247
247
|
this.agents.set(name, agent);
|
|
248
248
|
}
|
|
249
|
+
registerRoyAgent() {
|
|
250
|
+
const name = "roy";
|
|
251
|
+
if (this.agents.has(name))
|
|
252
|
+
return;
|
|
253
|
+
const agent = {
|
|
254
|
+
name,
|
|
255
|
+
type: "sub",
|
|
256
|
+
description: "Roy — versatile AI assistant inspired by Jarvis. Built-in general-purpose subagent for coding, research, planning, and complex multi-step tasks. Always available without `agent add roy`.",
|
|
257
|
+
systemPromptRef: "roy",
|
|
258
|
+
deniedTools: ["delegate_task", "stop_task"]
|
|
259
|
+
};
|
|
260
|
+
this.agents.set(name, agent);
|
|
261
|
+
}
|
|
249
262
|
async load() {
|
|
250
263
|
try {
|
|
251
264
|
return await this.loadFromDirectory(this.configDir);
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
} from "./roy-agent-core-e25xkv53.js";
|
|
11
11
|
import {
|
|
12
12
|
AgentRegistry
|
|
13
|
-
} from "./roy-agent-core-
|
|
13
|
+
} from "./roy-agent-core-k31c3kvz.js";
|
|
14
14
|
import {
|
|
15
15
|
ContextError
|
|
16
16
|
} from "./roy-agent-core-ctdhjv68.js";
|
|
@@ -343,6 +343,8 @@ class AgentComponent extends BaseComponent {
|
|
|
343
343
|
logger.info("[AgentComponent] Registered built-in compact agent");
|
|
344
344
|
this.registry.registerCompactHintAgent();
|
|
345
345
|
logger.info("[AgentComponent] Registered built-in compact-hint agent");
|
|
346
|
+
this.registry.registerRoyAgent();
|
|
347
|
+
logger.info("[AgentComponent] Registered built-in roy agent");
|
|
346
348
|
for (const agentDef of this.registry.list()) {
|
|
347
349
|
if (!this.agents.has(agentDef.name)) {
|
|
348
350
|
const systemPrompt = await this.registry.getSystemPrompt(agentDef.name);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
TaskTagPlugin,
|
|
3
3
|
createLarkCliTaskNotifyHook
|
|
4
|
-
} from "./roy-agent-core-
|
|
4
|
+
} from "./roy-agent-core-nt77d6fs.js";
|
|
5
5
|
import {
|
|
6
6
|
envKeyToConfigKey
|
|
7
7
|
} from "./roy-agent-core-qxhq8ven.js";
|
|
@@ -1448,4 +1448,4 @@ __legacyDecorateClassTS([
|
|
|
1448
1448
|
TracedAs("event-source.update", { recordParams: false, log: false })
|
|
1449
1449
|
], EventSourceComponent.prototype, "update", null);
|
|
1450
1450
|
|
|
1451
|
-
export { TimerInstance, timerHandler, BountyIMInstance, bountyIMHandler, larkCliHandler, builtInHandlers, getBuiltInHandler, EventSourceComponent };
|
|
1451
|
+
export { TimerInstance, timerHandler, buildDefaultBountyIMSystemPrompt, resolveBountyIMSystemPrompt, BountyIMInstance, bountyIMHandler, larkCliHandler, builtInHandlers, getBuiltInHandler, EventSourceComponent };
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
WORKFLOW_EXTRACT_PROMPT
|
|
3
|
-
} from "./roy-agent-core-dj18eyyk.js";
|
|
4
1
|
import {
|
|
5
2
|
BasePlugin
|
|
6
3
|
} from "./roy-agent-core-az13yzmc.js";
|
|
7
4
|
import {
|
|
8
5
|
validateWorkflowDefinition
|
|
9
6
|
} from "./roy-agent-core-8wd3qwx5.js";
|
|
7
|
+
import {
|
|
8
|
+
WORKFLOW_EXTRACT_PROMPT
|
|
9
|
+
} from "./roy-agent-core-dj18eyyk.js";
|
|
10
10
|
import {
|
|
11
11
|
TaskHookPoints
|
|
12
12
|
} from "./roy-agent-core-92z6t4he.js";
|