@ai-setting/roy-agent-core 1.7.3 → 1.7.4

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 (40) hide show
  1. package/dist/config/index.js +5 -5
  2. package/dist/env/agent/index.js +6 -6
  3. package/dist/env/event-source/index.js +6 -6
  4. package/dist/env/index.js +42 -42
  5. package/dist/env/llm/index.js +4 -3
  6. package/dist/env/mcp/index.js +9 -9
  7. package/dist/env/memory/index.js +4 -4
  8. package/dist/env/session/index.js +2 -2
  9. package/dist/env/task/delegate/index.js +2 -2
  10. package/dist/env/task/index.js +5 -5
  11. package/dist/env/task/plugins/index.js +4 -4
  12. package/dist/env/tool/built-in/index.js +3 -2
  13. package/dist/env/tool/index.js +6 -5
  14. package/dist/env/workflow/engine/index.js +3 -3
  15. package/dist/env/workflow/index.js +26 -26
  16. package/dist/env/workflow/tools/index.js +6 -6
  17. package/dist/env/workflow/utils/index.js +3 -3
  18. package/dist/index.js +100 -98
  19. package/dist/shared/@ai-setting/{roy-agent-core-qatz3q31.js → roy-agent-core-29ph0e2k.js} +6 -6
  20. package/dist/shared/@ai-setting/{roy-agent-core-watkmj7d.js → roy-agent-core-32226m35.js} +1 -1
  21. package/dist/shared/@ai-setting/{roy-agent-core-y9q3jdcx.js → roy-agent-core-4m4awz0m.js} +15 -15
  22. package/dist/shared/@ai-setting/{roy-agent-core-pdnp5kj0.js → roy-agent-core-62mvbqmj.js} +2 -2
  23. package/dist/shared/@ai-setting/{roy-agent-core-y3g3ar7a.js → roy-agent-core-adg9ghbt.js} +109 -1
  24. package/dist/shared/@ai-setting/{roy-agent-core-xmacq00w.js → roy-agent-core-c9kbf0ce.js} +9 -9
  25. package/dist/shared/@ai-setting/{roy-agent-core-yak43g6m.js → roy-agent-core-d11714ee.js} +56 -9
  26. package/dist/shared/@ai-setting/{roy-agent-core-g7nmwg63.js → roy-agent-core-hncxk9d1.js} +5 -111
  27. package/dist/shared/@ai-setting/{roy-agent-core-cy8azvpb.js → roy-agent-core-krapd8x2.js} +2 -1
  28. package/dist/shared/@ai-setting/{roy-agent-core-kv7frw13.js → roy-agent-core-mgp3284f.js} +1 -1
  29. package/dist/shared/@ai-setting/{roy-agent-core-3dwcwgn5.js → roy-agent-core-q6mq7gmc.js} +14 -14
  30. package/dist/shared/@ai-setting/{roy-agent-core-wr1pgw0x.js → roy-agent-core-w4dy6zzf.js} +1 -1
  31. package/dist/shared/@ai-setting/roy-agent-core-xwm8zavb.js +89 -0
  32. package/dist/shared/@ai-setting/{roy-agent-core-t7rw68q8.js → roy-agent-core-zjdzk1gg.js} +34 -84
  33. package/package.json +1 -1
  34. package/dist/shared/@ai-setting/{roy-agent-core-50jdqb7r.js → roy-agent-core-2yt4jmzv.js} +3 -3
  35. package/dist/shared/@ai-setting/{roy-agent-core-h28gcd77.js → roy-agent-core-71wde8ce.js} +0 -0
  36. package/dist/shared/@ai-setting/{roy-agent-core-3e0w0ekw.js → roy-agent-core-7xek618f.js} +4 -4
  37. package/dist/shared/@ai-setting/{roy-agent-core-xvag5pd0.js → roy-agent-core-v13dq3nc.js} +4 -4
  38. package/dist/shared/@ai-setting/{roy-agent-core-s4r8f6se.js → roy-agent-core-ya1tr7xq.js} +4 -4
  39. package/dist/shared/@ai-setting/{roy-agent-core-gns3wa97.js → roy-agent-core-zhv8efqh.js} +7 -7
  40. package/dist/shared/@ai-setting/{roy-agent-core-s07nere5.js → roy-agent-core-zqeq8m9z.js} +7 -7
@@ -1,6 +1,8 @@
1
1
  import {
2
- EnvSource
3
- } from "./roy-agent-core-y3g3ar7a.js";
2
+ EnvSource,
3
+ parseJSONCWithEnv,
4
+ parseJSONCWithProtocols
5
+ } from "./roy-agent-core-adg9ghbt.js";
4
6
  import {
5
7
  XDG_PATHS
6
8
  } from "./roy-agent-core-qxnbvgwe.js";
@@ -11,114 +13,6 @@ import {
11
13
  __require
12
14
  } from "./roy-agent-core-fs0mn2jk.js";
13
15
 
14
- // src/config/config-parser.ts
15
- import { parse as parseJSONCInternal, ParseErrorCode } from "jsonc-parser";
16
- function parseJSONC(content) {
17
- const errors = [];
18
- const result = parseJSONCInternal(content, errors, {
19
- allowTrailingComma: true,
20
- disallowComments: false
21
- });
22
- if (errors.length > 0) {
23
- const hasOnlyValueExpected = result === undefined && errors.length === 1 && errors[0].error === ParseErrorCode.ValueExpected;
24
- if (!hasOnlyValueExpected) {
25
- const error = errors[0];
26
- const offset = error.offset;
27
- const lines = content.substring(0, offset).split(`
28
- `);
29
- const line = lines.length;
30
- const col = lines[lines.length - 1].length + 1;
31
- const errorMessages = {
32
- [ParseErrorCode.UnexpectedEndOfString]: "Unexpected end of string",
33
- [ParseErrorCode.InvalidCharacter]: "Invalid character",
34
- [ParseErrorCode.PropertyNameExpected]: "Property name expected",
35
- [ParseErrorCode.ValueExpected]: "Value expected",
36
- [ParseErrorCode.ColonExpected]: "Colon expected",
37
- [ParseErrorCode.CommaExpected]: "Comma expected",
38
- [ParseErrorCode.CloseBraceExpected]: "Close brace expected",
39
- [ParseErrorCode.CloseBracketExpected]: "Close bracket expected",
40
- [ParseErrorCode.EndOfFileExpected]: "Unexpected end of input",
41
- [ParseErrorCode.InvalidSymbol]: "Invalid symbol"
42
- };
43
- throw new Error(`JSONC parse error at line ${line}, col ${col}: ${errorMessages[error.error] || "Unknown error"}`);
44
- }
45
- }
46
- if (result === undefined || result === null) {
47
- return {};
48
- }
49
- return result;
50
- }
51
- function substituteEnvVars(value) {
52
- if (typeof value === "string") {
53
- return value.replace(/\$\{([^}]+)\}/g, (match, varExpr) => {
54
- const [varName, defaultValue] = varExpr.split(":-");
55
- const envValue = process.env[varName.trim()];
56
- if (envValue !== undefined) {
57
- return envValue;
58
- }
59
- if (defaultValue !== undefined) {
60
- return defaultValue;
61
- }
62
- return "";
63
- });
64
- }
65
- if (Array.isArray(value)) {
66
- return value.map((item) => substituteEnvVars(item));
67
- }
68
- if (value !== null && typeof value === "object") {
69
- const result = {};
70
- for (const [key, val] of Object.entries(value)) {
71
- result[key] = substituteEnvVars(val);
72
- }
73
- return result;
74
- }
75
- return value;
76
- }
77
- function parseJSONCWithEnv(content) {
78
- const parsed = parseJSONC(content);
79
- return substituteEnvVars(parsed);
80
- }
81
- var PROTOCOL_REF_PATTERN = /^\$\{([^:]+):\/\/[^}]+\}$/;
82
- var PROTOCOL_REF_WITH_DEFAULT_PATTERN = /^\$\{([^:]+):\/\/([^:#]+)(?:#([^:-]+))?(?::-(.*))?\}$/;
83
- function isProtocolRefString(value) {
84
- return PROTOCOL_REF_PATTERN.test(value);
85
- }
86
- function extractDefaultValue(ref) {
87
- const match = ref.match(PROTOCOL_REF_WITH_DEFAULT_PATTERN);
88
- return match ? match[4] : undefined;
89
- }
90
- function substituteProtocolRefs(value, resolver) {
91
- if (typeof value === "string") {
92
- if (isProtocolRefString(value)) {
93
- const result = resolver.resolve(value);
94
- if (result !== null) {
95
- return result.value;
96
- }
97
- const defaultValue = extractDefaultValue(value);
98
- if (defaultValue !== undefined) {
99
- return defaultValue;
100
- }
101
- }
102
- return value;
103
- }
104
- if (Array.isArray(value)) {
105
- return value.map((item) => substituteProtocolRefs(item, resolver));
106
- }
107
- if (value !== null && typeof value === "object") {
108
- const result = {};
109
- for (const [key, val] of Object.entries(value)) {
110
- result[key] = substituteProtocolRefs(val, resolver);
111
- }
112
- return result;
113
- }
114
- return value;
115
- }
116
- function parseJSONCWithProtocols(content, resolver) {
117
- const parsed = parseJSONC(content);
118
- const withProtocols = substituteProtocolRefs(parsed, resolver);
119
- return substituteEnvVars(withProtocols);
120
- }
121
-
122
16
  // src/config/file-source.ts
123
17
  import * as fsSync from "fs";
124
18
  import * as fsPromises from "fs/promises";
@@ -1054,4 +948,4 @@ class ConfigComponent extends BaseComponent {
1054
948
  }
1055
949
  }
1056
950
 
1057
- export { parseJSONC, substituteEnvVars, parseJSONCWithEnv, substituteProtocolRefs, parseJSONCWithProtocols, FileSource, ConfigSourceNotFoundError, ConfigFileNotFoundError, MemorySource, ConfigComponent };
951
+ export { FileSource, ConfigSourceNotFoundError, ConfigFileNotFoundError, MemorySource, ConfigComponent };
@@ -3,7 +3,8 @@ import {
3
3
  resetUnderstandImageLLMProvider,
4
4
  setUnderstandImageLLMProvider,
5
5
  understandImageTool
6
- } from "./roy-agent-core-t7rw68q8.js";
6
+ } from "./roy-agent-core-xwm8zavb.js";
7
+ import"./roy-agent-core-zjdzk1gg.js";
7
8
  import"./roy-agent-core-fs0mn2jk.js";
8
9
  export {
9
10
  understandImageTool,
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  understandImageTool
3
- } from "./roy-agent-core-t7rw68q8.js";
3
+ } from "./roy-agent-core-xwm8zavb.js";
4
4
  import {
5
5
  queryBackgroundProcessTool
6
6
  } from "./roy-agent-core-amkqnyzy.js";
@@ -1,22 +1,12 @@
1
1
  import {
2
2
  truncateOutputInline
3
- } from "./roy-agent-core-h28gcd77.js";
4
- import {
5
- enqueueToAddFakeUserMessage
6
- } from "./roy-agent-core-t3yqzgse.js";
7
- import {
8
- AskUserError,
9
- init_workflow_hil
10
- } from "./roy-agent-core-e25xkv53.js";
3
+ } from "./roy-agent-core-71wde8ce.js";
11
4
  import {
12
5
  AgentRegistry
13
6
  } from "./roy-agent-core-x0yztmm6.js";
14
7
  import {
15
- getCurrentBgTaskId
16
- } from "./roy-agent-core-c1v263jn.js";
17
- import {
18
- ContextError
19
- } from "./roy-agent-core-ctdhjv68.js";
8
+ enqueueToAddFakeUserMessage
9
+ } from "./roy-agent-core-t3yqzgse.js";
20
10
  import {
21
11
  SessionMessageConverter
22
12
  } from "./roy-agent-core-zcx8nf4a.js";
@@ -24,6 +14,16 @@ import {
24
14
  safeParseToolArgs,
25
15
  withTimeout
26
16
  } from "./roy-agent-core-2xb3f3ye.js";
17
+ import {
18
+ getCurrentBgTaskId
19
+ } from "./roy-agent-core-c1v263jn.js";
20
+ import {
21
+ AskUserError,
22
+ init_workflow_hil
23
+ } from "./roy-agent-core-e25xkv53.js";
24
+ import {
25
+ ContextError
26
+ } from "./roy-agent-core-ctdhjv68.js";
27
27
  import {
28
28
  envKeyToConfigKey
29
29
  } from "./roy-agent-core-7hh0brvs.js";
@@ -585,7 +585,7 @@ class AgentComponent extends BaseComponent {
585
585
  this.toolComponent = tool ? tool : null;
586
586
  if (this.llmComponent) {
587
587
  try {
588
- const mod = await import("./roy-agent-core-cy8azvpb.js");
588
+ const mod = await import("./roy-agent-core-krapd8x2.js");
589
589
  mod.setUnderstandImageLLMProvider(async (messages) => {
590
590
  const result = await this.llmComponent.invoke({
591
591
  messages,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  TaskTagPlugin,
3
3
  createLarkCliTaskNotifyHook
4
- } from "./roy-agent-core-gns3wa97.js";
4
+ } from "./roy-agent-core-zhv8efqh.js";
5
5
  import {
6
6
  envKeyToConfigKey
7
7
  } from "./roy-agent-core-7hh0brvs.js";
@@ -0,0 +1,89 @@
1
+ import {
2
+ parseImageInput
3
+ } from "./roy-agent-core-zjdzk1gg.js";
4
+
5
+ // src/env/tool/built-in/understand-image.ts
6
+ import { z } from "zod";
7
+ var injectedProvider = null;
8
+ function setUnderstandImageLLMProvider(provider) {
9
+ injectedProvider = provider;
10
+ }
11
+ function getUnderstandImageLLMProvider() {
12
+ return injectedProvider;
13
+ }
14
+ async function resetUnderstandImageLLMProvider() {
15
+ injectedProvider = null;
16
+ }
17
+ function normalizeImageSource(raw) {
18
+ if (typeof raw !== "string")
19
+ return raw;
20
+ return raw.startsWith("@") ? raw.slice(1) : raw;
21
+ }
22
+ var understandImageTool = {
23
+ name: "understand_image",
24
+ description: "Analyze or describe the contents of an image using a multimodal LLM. " + "Provide a prompt describing what you want to extract or understand " + "(e.g. 'Describe this image in detail', 'Read the text in the receipt', " + "'What color is the car?'). The image_source can be an HTTP(S) URL, a " + "data:base64 URL, or a local file path (optionally prefixed with '@').",
25
+ parameters: z.object({
26
+ prompt: z.string().min(1).describe("A text prompt describing what you want to analyze or extract from the image."),
27
+ image_source: z.string().min(1).describe("The location of the image to analyze. Accepts HTTP(S) URL, data:base64 URL, or local file path. Optional '@' prefix is stripped.")
28
+ }),
29
+ metadata: {
30
+ category: "ai",
31
+ tags: ["multimodal", "vision", "image", "llm", "ocr"],
32
+ version: "1.0.0"
33
+ },
34
+ permission: {
35
+ level: "safe"
36
+ },
37
+ execute: async (args, _ctx) => {
38
+ const startTime = Date.now();
39
+ const { prompt, image_source } = args;
40
+ if (!injectedProvider) {
41
+ return {
42
+ success: false,
43
+ output: "",
44
+ error: "understand_image is not initialized: no LLM provider has been " + "registered. AgentComponent should call setUnderstandImageLLMProvider() " + "at agent startup.",
45
+ metadata: { execution_time_ms: Date.now() - startTime }
46
+ };
47
+ }
48
+ let imagePart;
49
+ try {
50
+ imagePart = await parseImageInput(normalizeImageSource(image_source));
51
+ } catch (err) {
52
+ return {
53
+ success: false,
54
+ output: "",
55
+ error: `failed to read image: ${err.message}`,
56
+ metadata: { execution_time_ms: Date.now() - startTime }
57
+ };
58
+ }
59
+ const messages = [
60
+ {
61
+ role: "user",
62
+ content: [
63
+ { type: "text", text: prompt },
64
+ imagePart
65
+ ]
66
+ }
67
+ ];
68
+ let responseText;
69
+ try {
70
+ responseText = await injectedProvider(messages);
71
+ } catch (err) {
72
+ return {
73
+ success: false,
74
+ output: "",
75
+ error: `LLM invocation failed: ${err.message}`,
76
+ metadata: { execution_time_ms: Date.now() - startTime }
77
+ };
78
+ }
79
+ return {
80
+ success: true,
81
+ output: responseText,
82
+ metadata: {
83
+ execution_time_ms: Date.now() - startTime
84
+ }
85
+ };
86
+ }
87
+ };
88
+
89
+ export { setUnderstandImageLLMProvider, getUnderstandImageLLMProvider, resetUnderstandImageLLMProvider, understandImageTool };
@@ -1,6 +1,3 @@
1
- // src/env/tool/built-in/understand-image.ts
2
- import { z } from "zod";
3
-
4
1
  // src/utils/media.ts
5
2
  import * as fs from "node:fs/promises";
6
3
  import * as path from "node:path";
@@ -15,6 +12,9 @@ function startsWith(buf, sig) {
15
12
  return true;
16
13
  }
17
14
  function sniffMimeType(buffer, fallbackName) {
15
+ return sniffMimeFromBuffer(buffer, fallbackName);
16
+ }
17
+ function sniffMimeFromBuffer(buffer, fallbackName) {
18
18
  if (startsWith(buffer, [137, 80, 78, 71, 13, 10, 26, 10])) {
19
19
  return "image/png";
20
20
  }
@@ -98,88 +98,38 @@ async function parseLocalImagePath(filePath) {
98
98
  }
99
99
  return { type: "image", image: buffer };
100
100
  }
101
-
102
- // src/env/tool/built-in/understand-image.ts
103
- var injectedProvider = null;
104
- function setUnderstandImageLLMProvider(provider) {
105
- injectedProvider = provider;
106
- }
107
- function getUnderstandImageLLMProvider() {
108
- return injectedProvider;
109
- }
110
- async function resetUnderstandImageLLMProvider() {
111
- injectedProvider = null;
112
- }
113
- function normalizeImageSource(raw) {
114
- if (typeof raw !== "string")
115
- return raw;
116
- return raw.startsWith("@") ? raw.slice(1) : raw;
117
- }
118
- var understandImageTool = {
119
- name: "understand_image",
120
- description: "Analyze or describe the contents of an image using a multimodal LLM. " + "Provide a prompt describing what you want to extract or understand " + "(e.g. 'Describe this image in detail', 'Read the text in the receipt', " + "'What color is the car?'). The image_source can be an HTTP(S) URL, a " + "data:base64 URL, or a local file path (optionally prefixed with '@').",
121
- parameters: z.object({
122
- prompt: z.string().min(1).describe("A text prompt describing what you want to analyze or extract from the image."),
123
- image_source: z.string().min(1).describe("The location of the image to analyze. Accepts HTTP(S) URL, data:base64 URL, or local file path. Optional '@' prefix is stripped.")
124
- }),
125
- metadata: {
126
- category: "ai",
127
- tags: ["multimodal", "vision", "image", "llm", "ocr"],
128
- version: "1.0.0"
129
- },
130
- permission: {
131
- level: "safe"
132
- },
133
- execute: async (args, _ctx) => {
134
- const startTime = Date.now();
135
- const { prompt, image_source } = args;
136
- if (!injectedProvider) {
137
- return {
138
- success: false,
139
- output: "",
140
- error: "understand_image is not initialized: no LLM provider has been " + "registered. AgentComponent should call setUnderstandImageLLMProvider() " + "at agent startup.",
141
- metadata: { execution_time_ms: Date.now() - startTime }
142
- };
143
- }
144
- let imagePart;
145
- try {
146
- imagePart = await parseImageInput(normalizeImageSource(image_source));
147
- } catch (err) {
148
- return {
149
- success: false,
150
- output: "",
151
- error: `failed to read image: ${err.message}`,
152
- metadata: { execution_time_ms: Date.now() - startTime }
153
- };
101
+ function sniffImageMime(image, explicitMediaType) {
102
+ if (explicitMediaType && typeof explicitMediaType === "string" && explicitMediaType !== "image/*" && explicitMediaType.length > 0) {
103
+ return explicitMediaType;
104
+ }
105
+ if (typeof image === "string" && image.startsWith("data:")) {
106
+ const match = image.match(/^data:([^;,]+)/);
107
+ if (match && match[1]) {
108
+ return match[1];
154
109
  }
155
- const messages = [
156
- {
157
- role: "user",
158
- content: [
159
- { type: "text", text: prompt },
160
- imagePart
161
- ]
162
- }
163
- ];
164
- let responseText;
165
- try {
166
- responseText = await injectedProvider(messages);
167
- } catch (err) {
168
- return {
169
- success: false,
170
- output: "",
171
- error: `LLM invocation failed: ${err.message}`,
172
- metadata: { execution_time_ms: Date.now() - startTime }
173
- };
110
+ }
111
+ if (typeof image === "string" && /^https?:\/\//i.test(image)) {
112
+ const m = image.match(/\.([a-zA-Z0-9]+)(?:\?|$)/);
113
+ const ext = m?.[1]?.toLowerCase();
114
+ if (ext === "jpg" || ext === "jpeg")
115
+ return "image/jpeg";
116
+ if (ext === "png")
117
+ return "image/png";
118
+ if (ext === "gif")
119
+ return "image/gif";
120
+ if (ext === "webp")
121
+ return "image/webp";
122
+ if (ext === "bmp")
123
+ return "image/bmp";
124
+ }
125
+ if (image instanceof Uint8Array) {
126
+ const detected = sniffMimeFromBuffer(image);
127
+ if (detected && detected !== "application/octet-stream") {
128
+ return detected;
174
129
  }
175
- return {
176
- success: true,
177
- output: responseText,
178
- metadata: {
179
- execution_time_ms: Date.now() - startTime
180
- }
181
- };
182
130
  }
183
- };
131
+ const desc = typeof image === "string" ? `URL "${image.slice(0, 60)}${image.length > 60 ? "..." : ""}"` : `buffer (${image.length} bytes, no recognized magic bytes)`;
132
+ throw new Error(`sniffImageMime: cannot determine image MIME from ${desc}. ` + `Provide an explicit mediaType (e.g. "image/jpeg") or use a data: URL with explicit MIME prefix.`);
133
+ }
184
134
 
185
- export { ATTACH_FILE_MAX_BYTES, sniffMimeType, isMediaType, parseImageInput, setUnderstandImageLLMProvider, getUnderstandImageLLMProvider, resetUnderstandImageLLMProvider, understandImageTool };
135
+ export { ATTACH_FILE_MAX_BYTES, sniffMimeType, isMediaType, parseImageInput, sniffImageMime };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-setting/roy-agent-core",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "type": "module",
5
5
  "description": "Core SDK for roy-agent - Environment, Components, Tools, Sessions, Tasks",
6
6
  "main": "./dist/index.js",
@@ -2,6 +2,9 @@ import {
2
2
  ProcessRegistry,
3
3
  runWithProcessRegistryAsync
4
4
  } from "./roy-agent-core-mvs5sen6.js";
5
+ import {
6
+ TaskHookPoints
7
+ } from "./roy-agent-core-1pg0fepg.js";
5
8
  import {
6
9
  builtInPrompts
7
10
  } from "./roy-agent-core-skqt40yy.js";
@@ -11,9 +14,6 @@ import {
11
14
  import {
12
15
  runWithBgTaskIdAsync
13
16
  } from "./roy-agent-core-c1v263jn.js";
14
- import {
15
- TaskHookPoints
16
- } from "./roy-agent-core-1pg0fepg.js";
17
17
  import {
18
18
  globalHookManager,
19
19
  init_global_hook_manager
@@ -1,11 +1,11 @@
1
- import {
2
- getFromMapWithNormalization,
3
- init_node_id_utils
4
- } from "./roy-agent-core-ddwa0n6h.js";
5
1
  import {
6
2
  DecoratorNode,
7
3
  init_decorator_node
8
4
  } from "./roy-agent-core-1ce3fqrk.js";
5
+ import {
6
+ getFromMapWithNormalization,
7
+ init_node_id_utils
8
+ } from "./roy-agent-core-ddwa0n6h.js";
9
9
  import {
10
10
  TracedAs,
11
11
  init_decorator
@@ -1,12 +1,12 @@
1
+ import {
2
+ MemorySessionStore,
3
+ SQLiteSessionStore
4
+ } from "./roy-agent-core-wgp3q62x.js";
1
5
  import {
2
6
  init_search_query_parser,
3
7
  matchesQuery,
4
8
  parseSearchQuery
5
9
  } from "./roy-agent-core-rvxg1wps.js";
6
- import {
7
- MemorySessionStore,
8
- SQLiteSessionStore
9
- } from "./roy-agent-core-wgp3q62x.js";
10
10
  import {
11
11
  envKeyToConfigKey
12
12
  } from "./roy-agent-core-7hh0brvs.js";
@@ -8,10 +8,6 @@ import {
8
8
  AgentComponentAdapter,
9
9
  init_agent_component_adapter
10
10
  } from "./roy-agent-core-ec4djnzd.js";
11
- import {
12
- TemplateResolver,
13
- init_template_resolver
14
- } from "./roy-agent-core-h1cb2jzh.js";
15
11
  import {
16
12
  PythonCallNode,
17
13
  SkillNode,
@@ -30,6 +26,10 @@ import {
30
26
  parseWorkflowJsonOutput,
31
27
  validateJsonOutputSchema
32
28
  } from "./roy-agent-core-1db4vpc6.js";
29
+ import {
30
+ TemplateResolver,
31
+ init_template_resolver
32
+ } from "./roy-agent-core-h1cb2jzh.js";
33
33
  import {
34
34
  DAGManager,
35
35
  init_dag_manager
@@ -1,6 +1,9 @@
1
1
  import {
2
- BasePlugin
3
- } from "./roy-agent-core-az13yzmc.js";
2
+ TaskHookPoints
3
+ } from "./roy-agent-core-1pg0fepg.js";
4
+ import {
5
+ WORKFLOW_EXTRACT_PROMPT
6
+ } from "./roy-agent-core-skqt40yy.js";
4
7
  import {
5
8
  validateWorkflowDefinition
6
9
  } from "./roy-agent-core-w8rv08d3.js";
@@ -8,11 +11,8 @@ import {
8
11
  enqueueToAddFakeUserMessage
9
12
  } from "./roy-agent-core-t3yqzgse.js";
10
13
  import {
11
- WORKFLOW_EXTRACT_PROMPT
12
- } from "./roy-agent-core-skqt40yy.js";
13
- import {
14
- TaskHookPoints
15
- } from "./roy-agent-core-1pg0fepg.js";
14
+ BasePlugin
15
+ } from "./roy-agent-core-az13yzmc.js";
16
16
  import {
17
17
  init_context
18
18
  } from "./roy-agent-core-h7ak839w.js";
@@ -1,14 +1,10 @@
1
+ import {
2
+ adaptMcpTool
3
+ } from "./roy-agent-core-dxfd6p1c.js";
1
4
  import {
2
5
  ComponentError,
3
6
  ErrorCodes
4
7
  } from "./roy-agent-core-ctdhjv68.js";
5
- import {
6
- ensureFallbackNpmPrefix,
7
- isUsableNpmPrefix
8
- } from "./roy-agent-core-fnv3ev18.js";
9
- import {
10
- adaptMcpTool
11
- } from "./roy-agent-core-dxfd6p1c.js";
12
8
  import {
13
9
  toEnvKey
14
10
  } from "./roy-agent-core-7hh0brvs.js";
@@ -19,6 +15,10 @@ import {
19
15
  createLogger,
20
16
  init_logger
21
17
  } from "./roy-agent-core-kaq037np.js";
18
+ import {
19
+ ensureFallbackNpmPrefix,
20
+ isUsableNpmPrefix
21
+ } from "./roy-agent-core-fnv3ev18.js";
22
22
 
23
23
  // src/env/mcp/types.ts
24
24
  import { z } from "zod";