@cuylabs/agent-core 5.1.0 → 5.2.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/{chunk-SAWRDGBE.js → chunk-MRP7GMWJ.js} +10 -5
- package/dist/execution/index.js +1 -1
- package/dist/execution/turn/index.js +1 -1
- package/dist/index.js +73 -73
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/manager.d.ts.map +1 -1
- package/dist/mcp/modules.d.ts +3 -3
- package/dist/mcp/modules.d.ts.map +1 -1
- package/dist/team/index.js +2 -2
- package/dist/tool/index.js +7 -7
- package/package.json +2 -2
- package/dist/{chunk-UEEHZ4QH.js → chunk-2R4Y2QNH.js} +5 -5
|
@@ -93,7 +93,7 @@ function mcpToModelOutput(options) {
|
|
|
93
93
|
};
|
|
94
94
|
}
|
|
95
95
|
function toolToAiSdkTool(options) {
|
|
96
|
-
const { client, tool } = options;
|
|
96
|
+
const { client, requestOptions, tool } = options;
|
|
97
97
|
const inputSchema = {
|
|
98
98
|
...tool.inputSchema,
|
|
99
99
|
properties: tool.inputSchema.properties ?? {},
|
|
@@ -104,10 +104,14 @@ function toolToAiSdkTool(options) {
|
|
|
104
104
|
...tool.title ? { title: tool.title } : {},
|
|
105
105
|
inputSchema: jsonSchema(inputSchema),
|
|
106
106
|
execute: async (params) => {
|
|
107
|
-
return client.callTool(
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
107
|
+
return client.callTool(
|
|
108
|
+
{
|
|
109
|
+
name: tool.name,
|
|
110
|
+
arguments: params
|
|
111
|
+
},
|
|
112
|
+
void 0,
|
|
113
|
+
requestOptions
|
|
114
|
+
);
|
|
111
115
|
},
|
|
112
116
|
toModelOutput: mcpToModelOutput
|
|
113
117
|
});
|
|
@@ -190,6 +194,7 @@ var DefaultMCPManager = class {
|
|
|
190
194
|
allTools[`${serverName}__${tool.name}`] = toolToAiSdkTool({
|
|
191
195
|
serverName,
|
|
192
196
|
client: connection.client,
|
|
197
|
+
requestOptions: this.requestOptions(connection.config),
|
|
193
198
|
tool
|
|
194
199
|
});
|
|
195
200
|
}
|
package/dist/execution/index.js
CHANGED
|
@@ -43,7 +43,6 @@ import {
|
|
|
43
43
|
mergeAgentTurnStateProgress
|
|
44
44
|
} from "../chunk-E66PKKDL.js";
|
|
45
45
|
import "../chunk-DYZGHHDB.js";
|
|
46
|
-
import "../chunk-CGP6UNCQ.js";
|
|
47
46
|
import {
|
|
48
47
|
convertAgentMessagesToModelMessages
|
|
49
48
|
} from "../chunk-3ABZ5MIT.js";
|
|
@@ -60,6 +59,7 @@ import "../chunk-CNM6OROH.js";
|
|
|
60
59
|
import "../chunk-I6PKJ7XQ.js";
|
|
61
60
|
import "../chunk-T33MQXUP.js";
|
|
62
61
|
import "../chunk-FII65CN7.js";
|
|
62
|
+
import "../chunk-CGP6UNCQ.js";
|
|
63
63
|
import "../chunk-S6AKEPAX.js";
|
|
64
64
|
export {
|
|
65
65
|
AgentTurnEngine,
|
|
@@ -20,7 +20,6 @@ import {
|
|
|
20
20
|
mergeAgentTurnStateProgress
|
|
21
21
|
} from "../../chunk-E66PKKDL.js";
|
|
22
22
|
import "../../chunk-DYZGHHDB.js";
|
|
23
|
-
import "../../chunk-CGP6UNCQ.js";
|
|
24
23
|
import "../../chunk-3ABZ5MIT.js";
|
|
25
24
|
import "../../chunk-STDJYXYK.js";
|
|
26
25
|
import "../../chunk-JUIL2NJC.js";
|
|
@@ -30,6 +29,7 @@ import "../../chunk-CNM6OROH.js";
|
|
|
30
29
|
import "../../chunk-I6PKJ7XQ.js";
|
|
31
30
|
import "../../chunk-T33MQXUP.js";
|
|
32
31
|
import "../../chunk-FII65CN7.js";
|
|
32
|
+
import "../../chunk-CGP6UNCQ.js";
|
|
33
33
|
import "../../chunk-S6AKEPAX.js";
|
|
34
34
|
export {
|
|
35
35
|
AgentTurnEngine,
|
package/dist/index.js
CHANGED
|
@@ -58,7 +58,7 @@ import {
|
|
|
58
58
|
formatCoordinatorTaskNotifications,
|
|
59
59
|
formatCoordinatorWorkerReports,
|
|
60
60
|
teamPermissionPolicy
|
|
61
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-2R4Y2QNH.js";
|
|
62
62
|
import {
|
|
63
63
|
ToolRegistry,
|
|
64
64
|
createToolSearchTool,
|
|
@@ -158,60 +158,6 @@ import "./chunk-VOUEJSW6.js";
|
|
|
158
158
|
import {
|
|
159
159
|
assembleModelContext
|
|
160
160
|
} from "./chunk-TYQWH6XH.js";
|
|
161
|
-
import {
|
|
162
|
-
createCompositeDispatchTaskExecutor,
|
|
163
|
-
createDispatchExternalTaskControl,
|
|
164
|
-
createDispatchTaskExecutor,
|
|
165
|
-
createRuntimeDispatchExecutor,
|
|
166
|
-
createRuntimeDispatchTargets,
|
|
167
|
-
ensureNonEmpty,
|
|
168
|
-
mergeInspection
|
|
169
|
-
} from "./chunk-JZRLCTSD.js";
|
|
170
|
-
import {
|
|
171
|
-
DEFAULT_DISPATCH_TOOL_IDS,
|
|
172
|
-
DEFAULT_LOCAL_DISPATCH_CONCURRENCY,
|
|
173
|
-
DEFAULT_LOCAL_DISPATCH_DEPTH,
|
|
174
|
-
DEFAULT_LOCAL_DISPATCH_TITLE_PREFIX,
|
|
175
|
-
DISPATCH_STATES,
|
|
176
|
-
createDispatchTools,
|
|
177
|
-
createLocalDispatchRuntime,
|
|
178
|
-
createSubAgentRunSession,
|
|
179
|
-
ensureSessionLoaded,
|
|
180
|
-
getVisibleSessionMessages,
|
|
181
|
-
repairOrphanedToolCalls
|
|
182
|
-
} from "./chunk-556CPZ3J.js";
|
|
183
|
-
import {
|
|
184
|
-
InMemorySessionStore,
|
|
185
|
-
LocalSessionTurnLock,
|
|
186
|
-
SESSION_FORMAT_VERSION,
|
|
187
|
-
SessionManager,
|
|
188
|
-
buildEntryPath,
|
|
189
|
-
buildMessagesFromEntries,
|
|
190
|
-
buildRecentMessagesFromEntries,
|
|
191
|
-
buildRecentMessagesFromEntryMap,
|
|
192
|
-
configureDefaultSessionManager,
|
|
193
|
-
createMessageEntry,
|
|
194
|
-
createMetadataEntry,
|
|
195
|
-
deserializeMessage,
|
|
196
|
-
extractSessionInfo,
|
|
197
|
-
generateEntryId,
|
|
198
|
-
getDefaultSessionManager,
|
|
199
|
-
getLeafId,
|
|
200
|
-
parseJSONL,
|
|
201
|
-
serializeMessage,
|
|
202
|
-
toJSONL,
|
|
203
|
-
toJSONLBatch
|
|
204
|
-
} from "./chunk-EDKZOPUV.js";
|
|
205
|
-
import {
|
|
206
|
-
sleep
|
|
207
|
-
} from "./chunk-SZ2XBPTW.js";
|
|
208
|
-
import {
|
|
209
|
-
MAX_BYTES,
|
|
210
|
-
MAX_LINES,
|
|
211
|
-
Tool,
|
|
212
|
-
normalizeToolReplayPolicy,
|
|
213
|
-
truncateOutput
|
|
214
|
-
} from "./chunk-MJML3A2F.js";
|
|
215
161
|
import "./chunk-3NBTQHVV.js";
|
|
216
162
|
import {
|
|
217
163
|
createEventBus
|
|
@@ -295,23 +241,6 @@ import {
|
|
|
295
241
|
shouldFallbackOnSummaryFailure,
|
|
296
242
|
shouldPruneContext
|
|
297
243
|
} from "./chunk-DYZGHHDB.js";
|
|
298
|
-
import {
|
|
299
|
-
AGENT_CONTEXT_FRAGMENT_CLOSE,
|
|
300
|
-
AGENT_CONTEXT_FRAGMENT_OPEN,
|
|
301
|
-
AGENT_CONTEXT_FRAGMENT_TAG,
|
|
302
|
-
applyAgentContextFragments,
|
|
303
|
-
applyAgentContextFragmentsWithReport,
|
|
304
|
-
createAgentContextFragmentMessage,
|
|
305
|
-
estimateConversationTokens,
|
|
306
|
-
estimateMessageTokens,
|
|
307
|
-
estimateTokens,
|
|
308
|
-
getAgentContextFragmentMetadata,
|
|
309
|
-
isAgentContextFragmentMessage,
|
|
310
|
-
isRenderedAgentContextFragment,
|
|
311
|
-
normalizeAgentContextFragment,
|
|
312
|
-
parseRenderedAgentContextFragment,
|
|
313
|
-
renderAgentContextFragment
|
|
314
|
-
} from "./chunk-CGP6UNCQ.js";
|
|
315
244
|
import {
|
|
316
245
|
DEFAULT_MAX_OUTPUT_TOKENS,
|
|
317
246
|
DEFAULT_MAX_STEPS,
|
|
@@ -435,6 +364,77 @@ import {
|
|
|
435
364
|
resolveCapability
|
|
436
365
|
} from "./chunk-FII65CN7.js";
|
|
437
366
|
import "./chunk-SPBFQXOT.js";
|
|
367
|
+
import {
|
|
368
|
+
createCompositeDispatchTaskExecutor,
|
|
369
|
+
createDispatchExternalTaskControl,
|
|
370
|
+
createDispatchTaskExecutor,
|
|
371
|
+
createRuntimeDispatchExecutor,
|
|
372
|
+
createRuntimeDispatchTargets,
|
|
373
|
+
ensureNonEmpty,
|
|
374
|
+
mergeInspection
|
|
375
|
+
} from "./chunk-JZRLCTSD.js";
|
|
376
|
+
import {
|
|
377
|
+
DEFAULT_DISPATCH_TOOL_IDS,
|
|
378
|
+
DEFAULT_LOCAL_DISPATCH_CONCURRENCY,
|
|
379
|
+
DEFAULT_LOCAL_DISPATCH_DEPTH,
|
|
380
|
+
DEFAULT_LOCAL_DISPATCH_TITLE_PREFIX,
|
|
381
|
+
DISPATCH_STATES,
|
|
382
|
+
createDispatchTools,
|
|
383
|
+
createLocalDispatchRuntime,
|
|
384
|
+
createSubAgentRunSession,
|
|
385
|
+
ensureSessionLoaded,
|
|
386
|
+
getVisibleSessionMessages,
|
|
387
|
+
repairOrphanedToolCalls
|
|
388
|
+
} from "./chunk-556CPZ3J.js";
|
|
389
|
+
import {
|
|
390
|
+
InMemorySessionStore,
|
|
391
|
+
LocalSessionTurnLock,
|
|
392
|
+
SESSION_FORMAT_VERSION,
|
|
393
|
+
SessionManager,
|
|
394
|
+
buildEntryPath,
|
|
395
|
+
buildMessagesFromEntries,
|
|
396
|
+
buildRecentMessagesFromEntries,
|
|
397
|
+
buildRecentMessagesFromEntryMap,
|
|
398
|
+
configureDefaultSessionManager,
|
|
399
|
+
createMessageEntry,
|
|
400
|
+
createMetadataEntry,
|
|
401
|
+
deserializeMessage,
|
|
402
|
+
extractSessionInfo,
|
|
403
|
+
generateEntryId,
|
|
404
|
+
getDefaultSessionManager,
|
|
405
|
+
getLeafId,
|
|
406
|
+
parseJSONL,
|
|
407
|
+
serializeMessage,
|
|
408
|
+
toJSONL,
|
|
409
|
+
toJSONLBatch
|
|
410
|
+
} from "./chunk-EDKZOPUV.js";
|
|
411
|
+
import {
|
|
412
|
+
sleep
|
|
413
|
+
} from "./chunk-SZ2XBPTW.js";
|
|
414
|
+
import {
|
|
415
|
+
MAX_BYTES,
|
|
416
|
+
MAX_LINES,
|
|
417
|
+
Tool,
|
|
418
|
+
normalizeToolReplayPolicy,
|
|
419
|
+
truncateOutput
|
|
420
|
+
} from "./chunk-MJML3A2F.js";
|
|
421
|
+
import {
|
|
422
|
+
AGENT_CONTEXT_FRAGMENT_CLOSE,
|
|
423
|
+
AGENT_CONTEXT_FRAGMENT_OPEN,
|
|
424
|
+
AGENT_CONTEXT_FRAGMENT_TAG,
|
|
425
|
+
applyAgentContextFragments,
|
|
426
|
+
applyAgentContextFragmentsWithReport,
|
|
427
|
+
createAgentContextFragmentMessage,
|
|
428
|
+
estimateConversationTokens,
|
|
429
|
+
estimateMessageTokens,
|
|
430
|
+
estimateTokens,
|
|
431
|
+
getAgentContextFragmentMetadata,
|
|
432
|
+
isAgentContextFragmentMessage,
|
|
433
|
+
isRenderedAgentContextFragment,
|
|
434
|
+
normalizeAgentContextFragment,
|
|
435
|
+
parseRenderedAgentContextFragment,
|
|
436
|
+
renderAgentContextFragment
|
|
437
|
+
} from "./chunk-CGP6UNCQ.js";
|
|
438
438
|
import {
|
|
439
439
|
ClientCredentialsProvider,
|
|
440
440
|
createDiagnosticFetch,
|
|
@@ -443,7 +443,7 @@ import {
|
|
|
443
443
|
serviceAccountServer,
|
|
444
444
|
sseServer,
|
|
445
445
|
stdioServer
|
|
446
|
-
} from "./chunk-
|
|
446
|
+
} from "./chunk-MRP7GMWJ.js";
|
|
447
447
|
import {
|
|
448
448
|
createConsoleLogger,
|
|
449
449
|
createFileLogger,
|
package/dist/mcp/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manager.d.ts","sourceRoot":"","sources":["../../src/mcp/manager.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,IAAI,IAAI,MAAM,EACpB,MAAM,IAAI,CAAC;AACZ,OAAO,KAAK,EAEV,eAAe,EAKf,kBAAkB,EAInB,MAAM,oCAAoC,CAAC;AAQ5C,OAAO,KAAK,EACV,SAAS,EACT,UAAU,EACV,aAAa,EACb,eAAe,EACf,uBAAuB,EAEvB,eAAe,EAChB,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"manager.d.ts","sourceRoot":"","sources":["../../src/mcp/manager.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,IAAI,IAAI,MAAM,EACpB,MAAM,IAAI,CAAC;AACZ,OAAO,KAAK,EAEV,eAAe,EAKf,kBAAkB,EAInB,MAAM,oCAAoC,CAAC;AAQ5C,OAAO,KAAK,EACV,SAAS,EACT,UAAU,EACV,aAAa,EACb,eAAe,EACf,uBAAuB,EAEvB,eAAe,EAChB,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAmFjD;;;;;;GAMG;AACH,qBAAa,iBAAkB,YAAW,UAAU;IAClD,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAY;IACnC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAuC;IACnE,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAS;IAC7B,OAAO,CAAC,SAAS,CAAqC;IACtD,OAAO,CAAC,aAAa,CAAgC;IACrD,OAAO,CAAC,qBAAqB,CAAwC;IACrE,OAAO,CAAC,WAAW,CAA8B;gBAErC,MAAM,EAAE,SAAS,EAAE,MAAM,CAAC,EAAE,MAAM;IAKxC,OAAO,IAAI,OAAO,CAAC,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;IAqDhD,QAAQ,IAAI,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IA0C3C,aAAa,IAAI,OAAO,CAAC,eAAe,EAAE,CAAC;IAoB3C,qBAAqB,IAAI,OAAO,CAAC,uBAAuB,EAAE,CAAC;IAoB3D,YAAY,CAChB,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,MAAM,GACV,OAAO,CAAC,kBAAkB,CAAC;IAQxB,WAAW,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC;IAiBvC,SAAS,CACb,UAAU,EAAE,MAAM,EAClB,IAAI,EAAE,MAAM,EACZ,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAC5B,OAAO,CAAC,eAAe,CAAC;IAQ3B,SAAS,CAAC,UAAU,EAAE,MAAM,GAAG,eAAe;IAK9C,YAAY,IAAI,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC;IAQtC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAkB5B,WAAW,IAAI,OAAO;IAUtB,OAAO,CAAC,gBAAgB;YAOV,iBAAiB;IAM/B,OAAO,CAAC,cAAc;YAIR,oBAAoB;YAqCpB,sBAAsB;YAuBtB,gBAAgB;IAmB9B,OAAO,CAAC,YAAY;IAcpB,OAAO,CAAC,gBAAgB;IAcxB,OAAO,CAAC,wBAAwB;IAchC,OAAO,CAAC,cAAc;YAcR,YAAY;YA2CZ,eAAe;CAiC9B"}
|
package/dist/mcp/modules.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export type MCPClient = import("@modelcontextprotocol/sdk/client/index.js").Client;
|
|
2
2
|
export declare function getMcpClientModule(): Promise<typeof import("@modelcontextprotocol/sdk/client")>;
|
|
3
|
-
export declare function getStdioClientModule(): Promise<typeof import("@modelcontextprotocol/sdk/client/stdio
|
|
4
|
-
export declare function getStreamableHttpClientModule(): Promise<typeof import("@modelcontextprotocol/sdk/client/streamableHttp
|
|
5
|
-
export declare function getSseClientModule(): Promise<typeof import("@modelcontextprotocol/sdk/client/sse
|
|
3
|
+
export declare function getStdioClientModule(): Promise<typeof import("@modelcontextprotocol/sdk/client/stdio")>;
|
|
4
|
+
export declare function getStreamableHttpClientModule(): Promise<typeof import("@modelcontextprotocol/sdk/client/streamableHttp")>;
|
|
5
|
+
export declare function getSseClientModule(): Promise<typeof import("@modelcontextprotocol/sdk/client/sse")>;
|
|
6
6
|
//# sourceMappingURL=modules.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modules.d.ts","sourceRoot":"","sources":["../../src/mcp/modules.ts"],"names":[],"mappings":"AAaA,MAAM,MAAM,SAAS,GACnB,OAAO,2CAA2C,EAAE,MAAM,CAAC;AAE7D,wBAAsB,kBAAkB,+DAavC;AAED,wBAAsB,oBAAoB,
|
|
1
|
+
{"version":3,"file":"modules.d.ts","sourceRoot":"","sources":["../../src/mcp/modules.ts"],"names":[],"mappings":"AAaA,MAAM,MAAM,SAAS,GACnB,OAAO,2CAA2C,EAAE,MAAM,CAAC;AAE7D,wBAAsB,kBAAkB,+DAavC;AAED,wBAAsB,oBAAoB,qEAYzC;AAED,wBAAsB,6BAA6B,8EAalD;AAED,wBAAsB,kBAAkB,mEAYvC"}
|
package/dist/team/index.js
CHANGED
|
@@ -16,10 +16,10 @@ import {
|
|
|
16
16
|
formatCoordinatorTaskNotifications,
|
|
17
17
|
formatCoordinatorWorkerReports,
|
|
18
18
|
teamPermissionPolicy
|
|
19
|
-
} from "../chunk-
|
|
19
|
+
} from "../chunk-2R4Y2QNH.js";
|
|
20
|
+
import "../chunk-FII65CN7.js";
|
|
20
21
|
import "../chunk-SZ2XBPTW.js";
|
|
21
22
|
import "../chunk-MJML3A2F.js";
|
|
22
|
-
import "../chunk-FII65CN7.js";
|
|
23
23
|
export {
|
|
24
24
|
InMemoryMailboxStore,
|
|
25
25
|
InMemoryTaskBoardStore,
|
package/dist/tool/index.js
CHANGED
|
@@ -8,13 +8,6 @@ import {
|
|
|
8
8
|
defaultToolHostRegistry,
|
|
9
9
|
localHost
|
|
10
10
|
} from "../chunk-X4VN4GIJ.js";
|
|
11
|
-
import {
|
|
12
|
-
MAX_BYTES,
|
|
13
|
-
MAX_LINES,
|
|
14
|
-
Tool,
|
|
15
|
-
normalizeToolReplayPolicy,
|
|
16
|
-
truncateOutput
|
|
17
|
-
} from "../chunk-MJML3A2F.js";
|
|
18
11
|
import {
|
|
19
12
|
executeAgentToolCall
|
|
20
13
|
} from "../chunk-JUIL2NJC.js";
|
|
@@ -24,6 +17,13 @@ import {
|
|
|
24
17
|
getRequiredToolHost,
|
|
25
18
|
resolveCapability
|
|
26
19
|
} from "../chunk-FII65CN7.js";
|
|
20
|
+
import {
|
|
21
|
+
MAX_BYTES,
|
|
22
|
+
MAX_LINES,
|
|
23
|
+
Tool,
|
|
24
|
+
normalizeToolReplayPolicy,
|
|
25
|
+
truncateOutput
|
|
26
|
+
} from "../chunk-MJML3A2F.js";
|
|
27
27
|
export {
|
|
28
28
|
MAX_BYTES,
|
|
29
29
|
MAX_LINES,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuylabs/agent-core",
|
|
3
|
-
"version": "5.1
|
|
3
|
+
"version": "5.2.1",
|
|
4
4
|
"description": "Embeddable AI agent infrastructure — execution, sessions, tools, skills, dispatch, tracing",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
"@ai-sdk/provider-utils": "5.0.0-beta.26",
|
|
246
246
|
"@ai-sdk/xai": "4.0.0-beta.43",
|
|
247
247
|
"@arizeai/openinference-vercel": "^2.7.1",
|
|
248
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
248
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
249
249
|
"@opentelemetry/api": "^1.9.0",
|
|
250
250
|
"@opentelemetry/exporter-trace-otlp-grpc": "^0.213.0",
|
|
251
251
|
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
import {
|
|
2
|
+
extractApprovalPatterns,
|
|
3
|
+
matchApprovalPattern,
|
|
4
|
+
resolveCapability
|
|
5
|
+
} from "./chunk-FII65CN7.js";
|
|
1
6
|
import {
|
|
2
7
|
sleep
|
|
3
8
|
} from "./chunk-SZ2XBPTW.js";
|
|
4
9
|
import {
|
|
5
10
|
Tool
|
|
6
11
|
} from "./chunk-MJML3A2F.js";
|
|
7
|
-
import {
|
|
8
|
-
extractApprovalPatterns,
|
|
9
|
-
matchApprovalPattern,
|
|
10
|
-
resolveCapability
|
|
11
|
-
} from "./chunk-FII65CN7.js";
|
|
12
12
|
|
|
13
13
|
// src/team/types.ts
|
|
14
14
|
var TERMINAL_STATUSES = [
|