agents 0.0.0-fd36bbc → 0.0.0-fd59ae2
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/README.md +130 -28
- package/dist/ai-chat-agent.d.ts +52 -3
- package/dist/ai-chat-agent.js +170 -82
- package/dist/ai-chat-agent.js.map +1 -1
- package/dist/ai-react.d.ts +26 -8
- package/dist/ai-react.js +62 -48
- package/dist/ai-react.js.map +1 -1
- package/dist/ai-types.d.ts +5 -0
- package/dist/chunk-DQJFYHG3.js +1290 -0
- package/dist/chunk-DQJFYHG3.js.map +1 -0
- package/dist/chunk-EM3J4KV7.js +598 -0
- package/dist/chunk-EM3J4KV7.js.map +1 -0
- package/dist/chunk-KUH345EY.js +116 -0
- package/dist/chunk-KUH345EY.js.map +1 -0
- package/dist/chunk-PVQZBKN7.js +106 -0
- package/dist/chunk-PVQZBKN7.js.map +1 -0
- package/dist/client-DgyzBU_8.d.ts +4601 -0
- package/dist/client.d.ts +16 -2
- package/dist/client.js +6 -133
- package/dist/client.js.map +1 -1
- package/dist/index.d.ts +265 -20
- package/dist/index.js +12 -4
- package/dist/mcp/client.d.ts +11 -0
- package/dist/mcp/client.js +9 -0
- package/dist/mcp/do-oauth-client-provider.d.ts +41 -0
- package/dist/mcp/do-oauth-client-provider.js +7 -0
- package/dist/mcp/do-oauth-client-provider.js.map +1 -0
- package/dist/mcp/index.d.ts +112 -0
- package/dist/mcp/index.js +955 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/observability/index.d.ts +46 -0
- package/dist/observability/index.js +10 -0
- package/dist/observability/index.js.map +1 -0
- package/dist/react.d.ts +88 -5
- package/dist/react.js +50 -31
- package/dist/react.js.map +1 -1
- package/dist/schedule.d.ts +6 -6
- package/dist/schedule.js +4 -6
- package/dist/schedule.js.map +1 -1
- package/dist/serializable.d.ts +32 -0
- package/dist/serializable.js +1 -0
- package/dist/serializable.js.map +1 -0
- package/package.json +87 -43
- package/src/index.ts +1217 -185
- package/dist/chunk-HMLY7DHA.js +0 -16
- package/dist/chunk-X6BBKLSC.js +0 -568
- package/dist/chunk-X6BBKLSC.js.map +0 -1
- /package/dist/{chunk-HMLY7DHA.js.map → mcp/client.js.map} +0 -0
package/src/index.ts
CHANGED
|
@@ -1,19 +1,33 @@
|
|
|
1
|
+
import type { env } from "cloudflare:workers";
|
|
2
|
+
import { AsyncLocalStorage } from "node:async_hooks";
|
|
3
|
+
import type { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
4
|
+
import type { SSEClientTransportOptions } from "@modelcontextprotocol/sdk/client/sse.js";
|
|
5
|
+
|
|
6
|
+
import type {
|
|
7
|
+
Prompt,
|
|
8
|
+
Resource,
|
|
9
|
+
ServerCapabilities,
|
|
10
|
+
Tool
|
|
11
|
+
} from "@modelcontextprotocol/sdk/types.js";
|
|
12
|
+
import { parseCronExpression } from "cron-schedule";
|
|
13
|
+
import { nanoid } from "nanoid";
|
|
14
|
+
import { EmailMessage } from "cloudflare:email";
|
|
1
15
|
import {
|
|
2
|
-
Server,
|
|
3
|
-
routePartykitRequest,
|
|
4
|
-
type PartyServerOptions,
|
|
5
|
-
getServerByName,
|
|
6
16
|
type Connection,
|
|
7
17
|
type ConnectionContext,
|
|
18
|
+
type PartyServerOptions,
|
|
19
|
+
Server,
|
|
8
20
|
type WSMessage,
|
|
21
|
+
getServerByName,
|
|
22
|
+
routePartykitRequest
|
|
9
23
|
} from "partyserver";
|
|
24
|
+
import { camelCaseToKebabCase } from "./client";
|
|
25
|
+
import { MCPClientManager } from "./mcp/client";
|
|
26
|
+
// import type { MCPClientConnection } from "./mcp/client-connection";
|
|
27
|
+
import { DurableObjectOAuthClientProvider } from "./mcp/do-oauth-client-provider";
|
|
28
|
+
import { genericObservability, type Observability } from "./observability";
|
|
10
29
|
|
|
11
|
-
|
|
12
|
-
import { nanoid } from "nanoid";
|
|
13
|
-
|
|
14
|
-
export type { Connection, WSMessage, ConnectionContext } from "partyserver";
|
|
15
|
-
|
|
16
|
-
import { WorkflowEntrypoint as CFWorkflowEntrypoint } from "cloudflare:workers";
|
|
30
|
+
export type { Connection, ConnectionContext, WSMessage } from "partyserver";
|
|
17
31
|
|
|
18
32
|
/**
|
|
19
33
|
* RPC request message from client
|
|
@@ -97,7 +111,6 @@ export type CallableMetadata = {
|
|
|
97
111
|
streaming?: boolean;
|
|
98
112
|
};
|
|
99
113
|
|
|
100
|
-
// biome-ignore lint/complexity/noBannedTypes: <explanation>
|
|
101
114
|
const callableMetadata = new Map<Function, CallableMetadata>();
|
|
102
115
|
|
|
103
116
|
/**
|
|
@@ -107,6 +120,7 @@ const callableMetadata = new Map<Function, CallableMetadata>();
|
|
|
107
120
|
export function unstable_callable(metadata: CallableMetadata = {}) {
|
|
108
121
|
return function callableDecorator<This, Args extends unknown[], Return>(
|
|
109
122
|
target: (this: This, ...args: Args) => Return,
|
|
123
|
+
// biome-ignore lint/correctness/noUnusedFunctionParameters: later
|
|
110
124
|
context: ClassMethodDecoratorContext
|
|
111
125
|
) {
|
|
112
126
|
if (!callableMetadata.has(target)) {
|
|
@@ -117,10 +131,12 @@ export function unstable_callable(metadata: CallableMetadata = {}) {
|
|
|
117
131
|
};
|
|
118
132
|
}
|
|
119
133
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
134
|
+
export type QueueItem<T = string> = {
|
|
135
|
+
id: string;
|
|
136
|
+
payload: T;
|
|
137
|
+
callback: keyof Agent<unknown>;
|
|
138
|
+
created_at: number;
|
|
139
|
+
};
|
|
124
140
|
|
|
125
141
|
/**
|
|
126
142
|
* Represents a scheduled task within an Agent
|
|
@@ -163,18 +179,118 @@ function getNextCronTime(cron: string) {
|
|
|
163
179
|
return interval.getNextDate();
|
|
164
180
|
}
|
|
165
181
|
|
|
182
|
+
/**
|
|
183
|
+
* MCP Server state update message from server -> Client
|
|
184
|
+
*/
|
|
185
|
+
export type MCPServerMessage = {
|
|
186
|
+
type: "cf_agent_mcp_servers";
|
|
187
|
+
mcp: MCPServersState;
|
|
188
|
+
};
|
|
189
|
+
|
|
190
|
+
export type MCPServersState = {
|
|
191
|
+
servers: {
|
|
192
|
+
[id: string]: MCPServer;
|
|
193
|
+
};
|
|
194
|
+
tools: Tool[];
|
|
195
|
+
prompts: Prompt[];
|
|
196
|
+
resources: Resource[];
|
|
197
|
+
};
|
|
198
|
+
|
|
199
|
+
export type MCPServer = {
|
|
200
|
+
name: string;
|
|
201
|
+
server_url: string;
|
|
202
|
+
auth_url: string | null;
|
|
203
|
+
// This state is specifically about the temporary process of getting a token (if needed).
|
|
204
|
+
// Scope outside of that can't be relied upon because when the DO sleeps, there's no way
|
|
205
|
+
// to communicate a change to a non-ready state.
|
|
206
|
+
state: "authenticating" | "connecting" | "ready" | "discovering" | "failed";
|
|
207
|
+
instructions: string | null;
|
|
208
|
+
capabilities: ServerCapabilities | null;
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* MCP Server data stored in DO SQL for resuming MCP Server connections
|
|
213
|
+
*/
|
|
214
|
+
type MCPServerRow = {
|
|
215
|
+
id: string;
|
|
216
|
+
name: string;
|
|
217
|
+
server_url: string;
|
|
218
|
+
client_id: string | null;
|
|
219
|
+
auth_url: string | null;
|
|
220
|
+
callback_url: string;
|
|
221
|
+
server_options: string;
|
|
222
|
+
};
|
|
223
|
+
|
|
166
224
|
const STATE_ROW_ID = "cf_state_row_id";
|
|
167
225
|
const STATE_WAS_CHANGED = "cf_state_was_changed";
|
|
168
226
|
|
|
169
227
|
const DEFAULT_STATE = {} as unknown;
|
|
170
228
|
|
|
229
|
+
const agentContext = new AsyncLocalStorage<{
|
|
230
|
+
agent: Agent<unknown, unknown>;
|
|
231
|
+
connection: Connection | undefined;
|
|
232
|
+
request: Request | undefined;
|
|
233
|
+
email: AgentEmail | undefined;
|
|
234
|
+
}>();
|
|
235
|
+
|
|
236
|
+
export function getCurrentAgent<
|
|
237
|
+
T extends Agent<unknown, unknown> = Agent<unknown, unknown>
|
|
238
|
+
>(): {
|
|
239
|
+
agent: T | undefined;
|
|
240
|
+
connection: Connection | undefined;
|
|
241
|
+
request: Request | undefined;
|
|
242
|
+
email: AgentEmail | undefined;
|
|
243
|
+
} {
|
|
244
|
+
const store = agentContext.getStore() as
|
|
245
|
+
| {
|
|
246
|
+
agent: T;
|
|
247
|
+
connection: Connection | undefined;
|
|
248
|
+
request: Request | undefined;
|
|
249
|
+
email: AgentEmail | undefined;
|
|
250
|
+
}
|
|
251
|
+
| undefined;
|
|
252
|
+
if (!store) {
|
|
253
|
+
return {
|
|
254
|
+
agent: undefined,
|
|
255
|
+
connection: undefined,
|
|
256
|
+
request: undefined,
|
|
257
|
+
email: undefined
|
|
258
|
+
};
|
|
259
|
+
}
|
|
260
|
+
return store;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* Wraps a method to run within the agent context, ensuring getCurrentAgent() works properly
|
|
265
|
+
* @param agent The agent instance
|
|
266
|
+
* @param method The method to wrap
|
|
267
|
+
* @returns A wrapped method that runs within the agent context
|
|
268
|
+
*/
|
|
269
|
+
|
|
270
|
+
// biome-ignore lint/suspicious/noExplicitAny: I can't typescript
|
|
271
|
+
function withAgentContext<T extends (...args: any[]) => any>(
|
|
272
|
+
method: T
|
|
273
|
+
): (this: Agent<unknown, unknown>, ...args: Parameters<T>) => ReturnType<T> {
|
|
274
|
+
return function (...args: Parameters<T>): ReturnType<T> {
|
|
275
|
+
const { connection, request, email } = getCurrentAgent();
|
|
276
|
+
return agentContext.run({ agent: this, connection, request, email }, () => {
|
|
277
|
+
return method.apply(this, args);
|
|
278
|
+
});
|
|
279
|
+
};
|
|
280
|
+
}
|
|
281
|
+
|
|
171
282
|
/**
|
|
172
283
|
* Base class for creating Agent implementations
|
|
173
284
|
* @template Env Environment type containing bindings
|
|
174
285
|
* @template State State type to store within the Agent
|
|
175
286
|
*/
|
|
176
|
-
export class Agent<Env, State = unknown> extends Server<Env> {
|
|
177
|
-
|
|
287
|
+
export class Agent<Env = typeof env, State = unknown> extends Server<Env> {
|
|
288
|
+
private _state = DEFAULT_STATE as State;
|
|
289
|
+
|
|
290
|
+
private _ParentClass: typeof Agent<Env, State> =
|
|
291
|
+
Object.getPrototypeOf(this).constructor;
|
|
292
|
+
|
|
293
|
+
mcp: MCPClientManager = new MCPClientManager(this._ParentClass.name, "0.0.1");
|
|
178
294
|
|
|
179
295
|
/**
|
|
180
296
|
* Initial state for the Agent
|
|
@@ -186,9 +302,9 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
186
302
|
* Current state of the Agent
|
|
187
303
|
*/
|
|
188
304
|
get state(): State {
|
|
189
|
-
if (this
|
|
305
|
+
if (this._state !== DEFAULT_STATE) {
|
|
190
306
|
// state was previously set, and populated internal state
|
|
191
|
-
return this
|
|
307
|
+
return this._state;
|
|
192
308
|
}
|
|
193
309
|
// looks like this is the first time the state is being accessed
|
|
194
310
|
// check if the state was set in a previous life
|
|
@@ -208,8 +324,8 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
208
324
|
) {
|
|
209
325
|
const state = result[0]?.state as string; // could be null?
|
|
210
326
|
|
|
211
|
-
this
|
|
212
|
-
return this
|
|
327
|
+
this._state = JSON.parse(state);
|
|
328
|
+
return this._state;
|
|
213
329
|
}
|
|
214
330
|
|
|
215
331
|
// ok, this is the first time the state is being accessed
|
|
@@ -230,9 +346,14 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
230
346
|
*/
|
|
231
347
|
static options = {
|
|
232
348
|
/** Whether the Agent should hibernate when inactive */
|
|
233
|
-
hibernate: true
|
|
349
|
+
hibernate: true // default to hibernate
|
|
234
350
|
};
|
|
235
351
|
|
|
352
|
+
/**
|
|
353
|
+
* The observability implementation to use for the Agent
|
|
354
|
+
*/
|
|
355
|
+
observability?: Observability = genericObservability;
|
|
356
|
+
|
|
236
357
|
/**
|
|
237
358
|
* Execute SQL queries against the Agent's database
|
|
238
359
|
* @template T Type of the returned rows
|
|
@@ -262,6 +383,9 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
262
383
|
constructor(ctx: AgentContext, env: Env) {
|
|
263
384
|
super(ctx, env);
|
|
264
385
|
|
|
386
|
+
// Auto-wrap custom methods with agent context
|
|
387
|
+
this._autoWrapCustomMethods();
|
|
388
|
+
|
|
265
389
|
this.sql`
|
|
266
390
|
CREATE TABLE IF NOT EXISTS cf_agents_state (
|
|
267
391
|
id TEXT PRIMARY KEY NOT NULL,
|
|
@@ -269,8 +393,17 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
269
393
|
)
|
|
270
394
|
`;
|
|
271
395
|
|
|
396
|
+
this.sql`
|
|
397
|
+
CREATE TABLE IF NOT EXISTS cf_agents_queues (
|
|
398
|
+
id TEXT PRIMARY KEY NOT NULL,
|
|
399
|
+
payload TEXT,
|
|
400
|
+
callback TEXT,
|
|
401
|
+
created_at INTEGER DEFAULT (unixepoch())
|
|
402
|
+
)
|
|
403
|
+
`;
|
|
404
|
+
|
|
272
405
|
void this.ctx.blockConcurrencyWhile(async () => {
|
|
273
|
-
return this
|
|
406
|
+
return this._tryCatch(async () => {
|
|
274
407
|
// Create alarms table if it doesn't exist
|
|
275
408
|
this.sql`
|
|
276
409
|
CREATE TABLE IF NOT EXISTS cf_agents_schedules (
|
|
@@ -290,96 +423,251 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
290
423
|
});
|
|
291
424
|
});
|
|
292
425
|
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
return this.#tryCatch(() => _onMessage(connection, message));
|
|
305
|
-
}
|
|
426
|
+
this.sql`
|
|
427
|
+
CREATE TABLE IF NOT EXISTS cf_agents_mcp_servers (
|
|
428
|
+
id TEXT PRIMARY KEY NOT NULL,
|
|
429
|
+
name TEXT NOT NULL,
|
|
430
|
+
server_url TEXT NOT NULL,
|
|
431
|
+
callback_url TEXT NOT NULL,
|
|
432
|
+
client_id TEXT,
|
|
433
|
+
auth_url TEXT,
|
|
434
|
+
server_options TEXT
|
|
435
|
+
)
|
|
436
|
+
`;
|
|
306
437
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
438
|
+
const _onRequest = this.onRequest.bind(this);
|
|
439
|
+
this.onRequest = (request: Request) => {
|
|
440
|
+
return agentContext.run(
|
|
441
|
+
{ agent: this, connection: undefined, request, email: undefined },
|
|
442
|
+
async () => {
|
|
443
|
+
if (this.mcp.isCallbackRequest(request)) {
|
|
444
|
+
await this.mcp.handleCallbackRequest(request);
|
|
445
|
+
|
|
446
|
+
// after the MCP connection handshake, we can send updated mcp state
|
|
447
|
+
this.broadcast(
|
|
448
|
+
JSON.stringify({
|
|
449
|
+
mcp: this.getMcpServers(),
|
|
450
|
+
type: "cf_agent_mcp_servers"
|
|
451
|
+
})
|
|
452
|
+
);
|
|
453
|
+
|
|
454
|
+
// We probably should let the user configure this response/redirect, but this is fine for now.
|
|
455
|
+
return new Response("<script>window.close();</script>", {
|
|
456
|
+
headers: { "content-type": "text/html" },
|
|
457
|
+
status: 200
|
|
458
|
+
});
|
|
459
|
+
}
|
|
311
460
|
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
461
|
+
return this._tryCatch(() => _onRequest(request));
|
|
462
|
+
}
|
|
463
|
+
);
|
|
464
|
+
};
|
|
315
465
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
466
|
+
const _onMessage = this.onMessage.bind(this);
|
|
467
|
+
this.onMessage = async (connection: Connection, message: WSMessage) => {
|
|
468
|
+
return agentContext.run(
|
|
469
|
+
{ agent: this, connection, request: undefined, email: undefined },
|
|
470
|
+
async () => {
|
|
471
|
+
if (typeof message !== "string") {
|
|
472
|
+
return this._tryCatch(() => _onMessage(connection, message));
|
|
320
473
|
}
|
|
321
474
|
|
|
322
|
-
|
|
323
|
-
|
|
475
|
+
let parsed: unknown;
|
|
476
|
+
try {
|
|
477
|
+
parsed = JSON.parse(message);
|
|
478
|
+
} catch (_e) {
|
|
479
|
+
// silently fail and let the onMessage handler handle it
|
|
480
|
+
return this._tryCatch(() => _onMessage(connection, message));
|
|
324
481
|
}
|
|
325
482
|
|
|
326
|
-
|
|
327
|
-
|
|
483
|
+
if (isStateUpdateMessage(parsed)) {
|
|
484
|
+
this._setStateInternal(parsed.state as State, connection);
|
|
485
|
+
return;
|
|
486
|
+
}
|
|
328
487
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
488
|
+
if (isRPCRequest(parsed)) {
|
|
489
|
+
try {
|
|
490
|
+
const { id, method, args } = parsed;
|
|
491
|
+
|
|
492
|
+
// Check if method exists and is callable
|
|
493
|
+
const methodFn = this[method as keyof this];
|
|
494
|
+
if (typeof methodFn !== "function") {
|
|
495
|
+
throw new Error(`Method ${method} does not exist`);
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
if (!this._isCallable(method)) {
|
|
499
|
+
throw new Error(`Method ${method} is not callable`);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
const metadata = callableMetadata.get(methodFn as Function);
|
|
503
|
+
|
|
504
|
+
// For streaming methods, pass a StreamingResponse object
|
|
505
|
+
if (metadata?.streaming) {
|
|
506
|
+
const stream = new StreamingResponse(connection, id);
|
|
507
|
+
await methodFn.apply(this, [stream, ...args]);
|
|
508
|
+
return;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
// For regular methods, execute and send response
|
|
512
|
+
const result = await methodFn.apply(this, args);
|
|
513
|
+
|
|
514
|
+
this.observability?.emit(
|
|
515
|
+
{
|
|
516
|
+
displayMessage: `RPC call to ${method}`,
|
|
517
|
+
id: nanoid(),
|
|
518
|
+
payload: {
|
|
519
|
+
method,
|
|
520
|
+
streaming: metadata?.streaming
|
|
521
|
+
},
|
|
522
|
+
timestamp: Date.now(),
|
|
523
|
+
type: "rpc"
|
|
524
|
+
},
|
|
525
|
+
this.ctx
|
|
526
|
+
);
|
|
527
|
+
|
|
528
|
+
const response: RPCResponse = {
|
|
529
|
+
done: true,
|
|
530
|
+
id,
|
|
531
|
+
result,
|
|
532
|
+
success: true,
|
|
533
|
+
type: "rpc"
|
|
534
|
+
};
|
|
535
|
+
connection.send(JSON.stringify(response));
|
|
536
|
+
} catch (e) {
|
|
537
|
+
// Send error response
|
|
538
|
+
const response: RPCResponse = {
|
|
539
|
+
error:
|
|
540
|
+
e instanceof Error ? e.message : "Unknown error occurred",
|
|
541
|
+
id: parsed.id,
|
|
542
|
+
success: false,
|
|
543
|
+
type: "rpc"
|
|
544
|
+
};
|
|
545
|
+
connection.send(JSON.stringify(response));
|
|
546
|
+
console.error("RPC error:", e);
|
|
547
|
+
}
|
|
333
548
|
return;
|
|
334
549
|
}
|
|
335
550
|
|
|
336
|
-
|
|
337
|
-
const result = await methodFn.apply(this, args);
|
|
338
|
-
const response: RPCResponse = {
|
|
339
|
-
type: "rpc",
|
|
340
|
-
id,
|
|
341
|
-
success: true,
|
|
342
|
-
result,
|
|
343
|
-
done: true,
|
|
344
|
-
};
|
|
345
|
-
connection.send(JSON.stringify(response));
|
|
346
|
-
} catch (e) {
|
|
347
|
-
// Send error response
|
|
348
|
-
const response: RPCResponse = {
|
|
349
|
-
type: "rpc",
|
|
350
|
-
id: parsed.id,
|
|
351
|
-
success: false,
|
|
352
|
-
error: e instanceof Error ? e.message : "Unknown error occurred",
|
|
353
|
-
};
|
|
354
|
-
connection.send(JSON.stringify(response));
|
|
355
|
-
console.error("RPC error:", e);
|
|
551
|
+
return this._tryCatch(() => _onMessage(connection, message));
|
|
356
552
|
}
|
|
357
|
-
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
return this.#tryCatch(() => _onMessage(connection, message));
|
|
553
|
+
);
|
|
361
554
|
};
|
|
362
555
|
|
|
363
556
|
const _onConnect = this.onConnect.bind(this);
|
|
364
557
|
this.onConnect = (connection: Connection, ctx: ConnectionContext) => {
|
|
365
558
|
// TODO: This is a hack to ensure the state is sent after the connection is established
|
|
366
559
|
// must fix this
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
560
|
+
return agentContext.run(
|
|
561
|
+
{ agent: this, connection, request: ctx.request, email: undefined },
|
|
562
|
+
async () => {
|
|
563
|
+
setTimeout(() => {
|
|
564
|
+
if (this.state) {
|
|
565
|
+
connection.send(
|
|
566
|
+
JSON.stringify({
|
|
567
|
+
state: this.state,
|
|
568
|
+
type: "cf_agent_state"
|
|
569
|
+
})
|
|
570
|
+
);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
connection.send(
|
|
574
|
+
JSON.stringify({
|
|
575
|
+
mcp: this.getMcpServers(),
|
|
576
|
+
type: "cf_agent_mcp_servers"
|
|
577
|
+
})
|
|
578
|
+
);
|
|
579
|
+
|
|
580
|
+
this.observability?.emit(
|
|
581
|
+
{
|
|
582
|
+
displayMessage: "Connection established",
|
|
583
|
+
id: nanoid(),
|
|
584
|
+
payload: {
|
|
585
|
+
connectionId: connection.id
|
|
586
|
+
},
|
|
587
|
+
timestamp: Date.now(),
|
|
588
|
+
type: "connect"
|
|
589
|
+
},
|
|
590
|
+
this.ctx
|
|
591
|
+
);
|
|
592
|
+
return this._tryCatch(() => _onConnect(connection, ctx));
|
|
593
|
+
}, 20);
|
|
594
|
+
}
|
|
595
|
+
);
|
|
596
|
+
};
|
|
597
|
+
|
|
598
|
+
const _onStart = this.onStart.bind(this);
|
|
599
|
+
this.onStart = async () => {
|
|
600
|
+
return agentContext.run(
|
|
601
|
+
{
|
|
602
|
+
agent: this,
|
|
603
|
+
connection: undefined,
|
|
604
|
+
request: undefined,
|
|
605
|
+
email: undefined
|
|
606
|
+
},
|
|
607
|
+
async () => {
|
|
608
|
+
await this._tryCatch(() => {
|
|
609
|
+
const servers = this.sql<MCPServerRow>`
|
|
610
|
+
SELECT id, name, server_url, client_id, auth_url, callback_url, server_options FROM cf_agents_mcp_servers;
|
|
611
|
+
`;
|
|
612
|
+
|
|
613
|
+
this.broadcast(
|
|
614
|
+
JSON.stringify({
|
|
615
|
+
mcp: this.getMcpServers(),
|
|
616
|
+
type: "cf_agent_mcp_servers"
|
|
617
|
+
})
|
|
618
|
+
);
|
|
619
|
+
|
|
620
|
+
// from DO storage, reconnect to all servers not currently in the oauth flow using our saved auth information
|
|
621
|
+
if (servers && Array.isArray(servers) && servers.length > 0) {
|
|
622
|
+
servers.forEach((server) => {
|
|
623
|
+
this._connectToMcpServerInternal(
|
|
624
|
+
server.name,
|
|
625
|
+
server.server_url,
|
|
626
|
+
server.callback_url,
|
|
627
|
+
server.server_options
|
|
628
|
+
? JSON.parse(server.server_options)
|
|
629
|
+
: undefined,
|
|
630
|
+
{
|
|
631
|
+
id: server.id,
|
|
632
|
+
oauthClientId: server.client_id ?? undefined
|
|
633
|
+
}
|
|
634
|
+
)
|
|
635
|
+
.then(() => {
|
|
636
|
+
// Broadcast updated MCP servers state after each server connects
|
|
637
|
+
this.broadcast(
|
|
638
|
+
JSON.stringify({
|
|
639
|
+
mcp: this.getMcpServers(),
|
|
640
|
+
type: "cf_agent_mcp_servers"
|
|
641
|
+
})
|
|
642
|
+
);
|
|
643
|
+
})
|
|
644
|
+
.catch((error) => {
|
|
645
|
+
console.error(
|
|
646
|
+
`Error connecting to MCP server: ${server.name} (${server.server_url})`,
|
|
647
|
+
error
|
|
648
|
+
);
|
|
649
|
+
// Still broadcast even if connection fails, so clients know about the failure
|
|
650
|
+
this.broadcast(
|
|
651
|
+
JSON.stringify({
|
|
652
|
+
mcp: this.getMcpServers(),
|
|
653
|
+
type: "cf_agent_mcp_servers"
|
|
654
|
+
})
|
|
655
|
+
);
|
|
656
|
+
});
|
|
657
|
+
});
|
|
658
|
+
}
|
|
659
|
+
return _onStart();
|
|
660
|
+
});
|
|
375
661
|
}
|
|
376
|
-
|
|
377
|
-
}, 20);
|
|
662
|
+
);
|
|
378
663
|
};
|
|
379
664
|
}
|
|
380
665
|
|
|
381
|
-
|
|
382
|
-
|
|
666
|
+
private _setStateInternal(
|
|
667
|
+
state: State,
|
|
668
|
+
source: Connection | "server" = "server"
|
|
669
|
+
) {
|
|
670
|
+
this._state = state;
|
|
383
671
|
this.sql`
|
|
384
672
|
INSERT OR REPLACE INTO cf_agents_state (id, state)
|
|
385
673
|
VALUES (${STATE_ROW_ID}, ${JSON.stringify(state)})
|
|
@@ -390,12 +678,30 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
390
678
|
`;
|
|
391
679
|
this.broadcast(
|
|
392
680
|
JSON.stringify({
|
|
393
|
-
type: "cf_agent_state",
|
|
394
681
|
state: state,
|
|
682
|
+
type: "cf_agent_state"
|
|
395
683
|
}),
|
|
396
684
|
source !== "server" ? [source.id] : []
|
|
397
685
|
);
|
|
398
|
-
return this
|
|
686
|
+
return this._tryCatch(() => {
|
|
687
|
+
const { connection, request, email } = agentContext.getStore() || {};
|
|
688
|
+
return agentContext.run(
|
|
689
|
+
{ agent: this, connection, request, email },
|
|
690
|
+
async () => {
|
|
691
|
+
this.observability?.emit(
|
|
692
|
+
{
|
|
693
|
+
displayMessage: "State updated",
|
|
694
|
+
id: nanoid(),
|
|
695
|
+
payload: {},
|
|
696
|
+
timestamp: Date.now(),
|
|
697
|
+
type: "state:update"
|
|
698
|
+
},
|
|
699
|
+
this.ctx
|
|
700
|
+
);
|
|
701
|
+
return this.onStateUpdate(state, source);
|
|
702
|
+
}
|
|
703
|
+
);
|
|
704
|
+
});
|
|
399
705
|
}
|
|
400
706
|
|
|
401
707
|
/**
|
|
@@ -403,7 +709,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
403
709
|
* @param state New state to set
|
|
404
710
|
*/
|
|
405
711
|
setState(state: State) {
|
|
406
|
-
this
|
|
712
|
+
this._setStateInternal(state, "server");
|
|
407
713
|
}
|
|
408
714
|
|
|
409
715
|
/**
|
|
@@ -411,19 +717,90 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
411
717
|
* @param state Updated state
|
|
412
718
|
* @param source Source of the state update ("server" or a client connection)
|
|
413
719
|
*/
|
|
720
|
+
// biome-ignore lint/correctness/noUnusedFunctionParameters: overridden later
|
|
414
721
|
onStateUpdate(state: State | undefined, source: Connection | "server") {
|
|
415
722
|
// override this to handle state updates
|
|
416
723
|
}
|
|
417
724
|
|
|
418
725
|
/**
|
|
419
|
-
* Called when the Agent receives an email
|
|
726
|
+
* Called when the Agent receives an email via routeAgentEmail()
|
|
727
|
+
* Override this method to handle incoming emails
|
|
420
728
|
* @param email Email message to process
|
|
421
729
|
*/
|
|
422
|
-
|
|
423
|
-
|
|
730
|
+
async _onEmail(email: AgentEmail) {
|
|
731
|
+
// nb: we use this roundabout way of getting to onEmail
|
|
732
|
+
// because of https://github.com/cloudflare/workerd/issues/4499
|
|
733
|
+
return agentContext.run(
|
|
734
|
+
{ agent: this, connection: undefined, request: undefined, email: email },
|
|
735
|
+
async () => {
|
|
736
|
+
if ("onEmail" in this && typeof this.onEmail === "function") {
|
|
737
|
+
return this._tryCatch(() =>
|
|
738
|
+
(this.onEmail as (email: AgentEmail) => Promise<void>)(email)
|
|
739
|
+
);
|
|
740
|
+
} else {
|
|
741
|
+
console.log("Received email from:", email.from, "to:", email.to);
|
|
742
|
+
console.log("Subject:", email.headers.get("subject"));
|
|
743
|
+
console.log(
|
|
744
|
+
"Implement onEmail(email: AgentEmail): Promise<void> in your agent to process emails"
|
|
745
|
+
);
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
/**
|
|
752
|
+
* Reply to an email
|
|
753
|
+
* @param email The email to reply to
|
|
754
|
+
* @param options Options for the reply
|
|
755
|
+
* @returns void
|
|
756
|
+
*/
|
|
757
|
+
async replyToEmail(
|
|
758
|
+
email: AgentEmail,
|
|
759
|
+
options: {
|
|
760
|
+
fromName: string;
|
|
761
|
+
subject?: string | undefined;
|
|
762
|
+
body: string;
|
|
763
|
+
contentType?: string;
|
|
764
|
+
headers?: Record<string, string>;
|
|
765
|
+
}
|
|
766
|
+
): Promise<void> {
|
|
767
|
+
return this._tryCatch(async () => {
|
|
768
|
+
const agentName = camelCaseToKebabCase(this._ParentClass.name);
|
|
769
|
+
const agentId = this.name;
|
|
770
|
+
|
|
771
|
+
const { createMimeMessage } = await import("mimetext");
|
|
772
|
+
const msg = createMimeMessage();
|
|
773
|
+
msg.setSender({ addr: email.to, name: options.fromName });
|
|
774
|
+
msg.setRecipient(email.from);
|
|
775
|
+
msg.setSubject(
|
|
776
|
+
options.subject || `Re: ${email.headers.get("subject")}` || "No subject"
|
|
777
|
+
);
|
|
778
|
+
msg.addMessage({
|
|
779
|
+
contentType: options.contentType || "text/plain",
|
|
780
|
+
data: options.body
|
|
781
|
+
});
|
|
782
|
+
|
|
783
|
+
const domain = email.from.split("@")[1];
|
|
784
|
+
const messageId = `<${agentId}@${domain}>`;
|
|
785
|
+
msg.setHeader("In-Reply-To", email.headers.get("Message-ID")!);
|
|
786
|
+
msg.setHeader("Message-ID", messageId);
|
|
787
|
+
msg.setHeader("X-Agent-Name", agentName);
|
|
788
|
+
msg.setHeader("X-Agent-ID", agentId);
|
|
789
|
+
|
|
790
|
+
if (options.headers) {
|
|
791
|
+
for (const [key, value] of Object.entries(options.headers)) {
|
|
792
|
+
msg.setHeader(key, value);
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
await email.reply({
|
|
796
|
+
from: email.to,
|
|
797
|
+
raw: msg.asRaw(),
|
|
798
|
+
to: email.from
|
|
799
|
+
});
|
|
800
|
+
});
|
|
424
801
|
}
|
|
425
802
|
|
|
426
|
-
async
|
|
803
|
+
private async _tryCatch<T>(fn: () => T | Promise<T>) {
|
|
427
804
|
try {
|
|
428
805
|
return await fn();
|
|
429
806
|
} catch (e) {
|
|
@@ -431,6 +808,72 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
431
808
|
}
|
|
432
809
|
}
|
|
433
810
|
|
|
811
|
+
/**
|
|
812
|
+
* Automatically wrap custom methods with agent context
|
|
813
|
+
* This ensures getCurrentAgent() works in all custom methods without decorators
|
|
814
|
+
*/
|
|
815
|
+
private _autoWrapCustomMethods() {
|
|
816
|
+
// Collect all methods from base prototypes (Agent and Server)
|
|
817
|
+
const basePrototypes = [Agent.prototype, Server.prototype];
|
|
818
|
+
const baseMethods = new Set<string>();
|
|
819
|
+
for (const baseProto of basePrototypes) {
|
|
820
|
+
let proto = baseProto;
|
|
821
|
+
while (proto && proto !== Object.prototype) {
|
|
822
|
+
const methodNames = Object.getOwnPropertyNames(proto);
|
|
823
|
+
for (const methodName of methodNames) {
|
|
824
|
+
baseMethods.add(methodName);
|
|
825
|
+
}
|
|
826
|
+
proto = Object.getPrototypeOf(proto);
|
|
827
|
+
}
|
|
828
|
+
}
|
|
829
|
+
// Get all methods from the current instance's prototype chain
|
|
830
|
+
let proto = Object.getPrototypeOf(this);
|
|
831
|
+
let depth = 0;
|
|
832
|
+
while (proto && proto !== Object.prototype && depth < 10) {
|
|
833
|
+
const methodNames = Object.getOwnPropertyNames(proto);
|
|
834
|
+
for (const methodName of methodNames) {
|
|
835
|
+
// Skip if it's a private method or not a function
|
|
836
|
+
if (
|
|
837
|
+
baseMethods.has(methodName) ||
|
|
838
|
+
methodName.startsWith("_") ||
|
|
839
|
+
typeof this[methodName as keyof this] !== "function"
|
|
840
|
+
) {
|
|
841
|
+
continue;
|
|
842
|
+
}
|
|
843
|
+
// If the method doesn't exist in base prototypes, it's a custom method
|
|
844
|
+
if (!baseMethods.has(methodName)) {
|
|
845
|
+
const descriptor = Object.getOwnPropertyDescriptor(proto, methodName);
|
|
846
|
+
if (descriptor && typeof descriptor.value === "function") {
|
|
847
|
+
// Wrap the custom method with context
|
|
848
|
+
|
|
849
|
+
const wrappedFunction = withAgentContext(
|
|
850
|
+
// biome-ignore lint/suspicious/noExplicitAny: I can't typescript
|
|
851
|
+
this[methodName as keyof this] as (...args: any[]) => any
|
|
852
|
+
// biome-ignore lint/suspicious/noExplicitAny: I can't typescript
|
|
853
|
+
) as any;
|
|
854
|
+
|
|
855
|
+
// if the method is callable, copy the metadata from the original method
|
|
856
|
+
if (this._isCallable(methodName)) {
|
|
857
|
+
callableMetadata.set(
|
|
858
|
+
wrappedFunction,
|
|
859
|
+
callableMetadata.get(
|
|
860
|
+
this[methodName as keyof this] as Function
|
|
861
|
+
)!
|
|
862
|
+
);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
// set the wrapped function on the prototype
|
|
866
|
+
this.constructor.prototype[methodName as keyof this] =
|
|
867
|
+
wrappedFunction;
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
proto = Object.getPrototypeOf(proto);
|
|
873
|
+
depth++;
|
|
874
|
+
}
|
|
875
|
+
}
|
|
876
|
+
|
|
434
877
|
override onError(
|
|
435
878
|
connection: Connection,
|
|
436
879
|
error: unknown
|
|
@@ -465,6 +908,131 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
465
908
|
throw new Error("Not implemented");
|
|
466
909
|
}
|
|
467
910
|
|
|
911
|
+
/**
|
|
912
|
+
* Queue a task to be executed in the future
|
|
913
|
+
* @param payload Payload to pass to the callback
|
|
914
|
+
* @param callback Name of the method to call
|
|
915
|
+
* @returns The ID of the queued task
|
|
916
|
+
*/
|
|
917
|
+
async queue<T = unknown>(callback: keyof this, payload: T): Promise<string> {
|
|
918
|
+
const id = nanoid(9);
|
|
919
|
+
if (typeof callback !== "string") {
|
|
920
|
+
throw new Error("Callback must be a string");
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
if (typeof this[callback] !== "function") {
|
|
924
|
+
throw new Error(`this.${callback} is not a function`);
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
this.sql`
|
|
928
|
+
INSERT OR REPLACE INTO cf_agents_queues (id, payload, callback)
|
|
929
|
+
VALUES (${id}, ${JSON.stringify(payload)}, ${callback})
|
|
930
|
+
`;
|
|
931
|
+
|
|
932
|
+
void this._flushQueue().catch((e) => {
|
|
933
|
+
console.error("Error flushing queue:", e);
|
|
934
|
+
});
|
|
935
|
+
|
|
936
|
+
return id;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
private _flushingQueue = false;
|
|
940
|
+
|
|
941
|
+
private async _flushQueue() {
|
|
942
|
+
if (this._flushingQueue) {
|
|
943
|
+
return;
|
|
944
|
+
}
|
|
945
|
+
this._flushingQueue = true;
|
|
946
|
+
while (true) {
|
|
947
|
+
const result = this.sql<QueueItem<string>>`
|
|
948
|
+
SELECT * FROM cf_agents_queues
|
|
949
|
+
ORDER BY created_at ASC
|
|
950
|
+
`;
|
|
951
|
+
|
|
952
|
+
if (!result || result.length === 0) {
|
|
953
|
+
break;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
for (const row of result || []) {
|
|
957
|
+
const callback = this[row.callback as keyof Agent<Env>];
|
|
958
|
+
if (!callback) {
|
|
959
|
+
console.error(`callback ${row.callback} not found`);
|
|
960
|
+
continue;
|
|
961
|
+
}
|
|
962
|
+
const { connection, request, email } = agentContext.getStore() || {};
|
|
963
|
+
await agentContext.run(
|
|
964
|
+
{
|
|
965
|
+
agent: this,
|
|
966
|
+
connection,
|
|
967
|
+
request,
|
|
968
|
+
email
|
|
969
|
+
},
|
|
970
|
+
async () => {
|
|
971
|
+
// TODO: add retries and backoff
|
|
972
|
+
await (
|
|
973
|
+
callback as (
|
|
974
|
+
payload: unknown,
|
|
975
|
+
queueItem: QueueItem<string>
|
|
976
|
+
) => Promise<void>
|
|
977
|
+
).bind(this)(JSON.parse(row.payload as string), row);
|
|
978
|
+
await this.dequeue(row.id);
|
|
979
|
+
}
|
|
980
|
+
);
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
this._flushingQueue = false;
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
/**
|
|
987
|
+
* Dequeue a task by ID
|
|
988
|
+
* @param id ID of the task to dequeue
|
|
989
|
+
*/
|
|
990
|
+
async dequeue(id: string) {
|
|
991
|
+
this.sql`DELETE FROM cf_agents_queues WHERE id = ${id}`;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
/**
|
|
995
|
+
* Dequeue all tasks
|
|
996
|
+
*/
|
|
997
|
+
async dequeueAll() {
|
|
998
|
+
this.sql`DELETE FROM cf_agents_queues`;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
/**
|
|
1002
|
+
* Dequeue all tasks by callback
|
|
1003
|
+
* @param callback Name of the callback to dequeue
|
|
1004
|
+
*/
|
|
1005
|
+
async dequeueAllByCallback(callback: string) {
|
|
1006
|
+
this.sql`DELETE FROM cf_agents_queues WHERE callback = ${callback}`;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
/**
|
|
1010
|
+
* Get a queued task by ID
|
|
1011
|
+
* @param id ID of the task to get
|
|
1012
|
+
* @returns The task or undefined if not found
|
|
1013
|
+
*/
|
|
1014
|
+
async getQueue(id: string): Promise<QueueItem<string> | undefined> {
|
|
1015
|
+
const result = this.sql<QueueItem<string>>`
|
|
1016
|
+
SELECT * FROM cf_agents_queues WHERE id = ${id}
|
|
1017
|
+
`;
|
|
1018
|
+
return result
|
|
1019
|
+
? { ...result[0], payload: JSON.parse(result[0].payload) }
|
|
1020
|
+
: undefined;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
/**
|
|
1024
|
+
* Get all queues by key and value
|
|
1025
|
+
* @param key Key to filter by
|
|
1026
|
+
* @param value Value to filter by
|
|
1027
|
+
* @returns Array of matching QueueItem objects
|
|
1028
|
+
*/
|
|
1029
|
+
async getQueues(key: string, value: string): Promise<QueueItem<string>[]> {
|
|
1030
|
+
const result = this.sql<QueueItem<string>>`
|
|
1031
|
+
SELECT * FROM cf_agents_queues
|
|
1032
|
+
`;
|
|
1033
|
+
return result.filter((row) => JSON.parse(row.payload)[key] === value);
|
|
1034
|
+
}
|
|
1035
|
+
|
|
468
1036
|
/**
|
|
469
1037
|
* Schedule a task to be executed in the future
|
|
470
1038
|
* @template T Type of the payload data
|
|
@@ -480,6 +1048,21 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
480
1048
|
): Promise<Schedule<T>> {
|
|
481
1049
|
const id = nanoid(9);
|
|
482
1050
|
|
|
1051
|
+
const emitScheduleCreate = (schedule: Schedule<T>) =>
|
|
1052
|
+
this.observability?.emit(
|
|
1053
|
+
{
|
|
1054
|
+
displayMessage: `Schedule ${schedule.id} created`,
|
|
1055
|
+
id: nanoid(),
|
|
1056
|
+
payload: {
|
|
1057
|
+
callback: callback as string,
|
|
1058
|
+
id: id
|
|
1059
|
+
},
|
|
1060
|
+
timestamp: Date.now(),
|
|
1061
|
+
type: "schedule:create"
|
|
1062
|
+
},
|
|
1063
|
+
this.ctx
|
|
1064
|
+
);
|
|
1065
|
+
|
|
483
1066
|
if (typeof callback !== "string") {
|
|
484
1067
|
throw new Error("Callback must be a string");
|
|
485
1068
|
}
|
|
@@ -497,15 +1080,19 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
497
1080
|
)}, 'scheduled', ${timestamp})
|
|
498
1081
|
`;
|
|
499
1082
|
|
|
500
|
-
await this
|
|
1083
|
+
await this._scheduleNextAlarm();
|
|
501
1084
|
|
|
502
|
-
|
|
503
|
-
id,
|
|
1085
|
+
const schedule: Schedule<T> = {
|
|
504
1086
|
callback: callback,
|
|
1087
|
+
id,
|
|
505
1088
|
payload: payload as T,
|
|
506
1089
|
time: timestamp,
|
|
507
|
-
type: "scheduled"
|
|
1090
|
+
type: "scheduled"
|
|
508
1091
|
};
|
|
1092
|
+
|
|
1093
|
+
emitScheduleCreate(schedule);
|
|
1094
|
+
|
|
1095
|
+
return schedule;
|
|
509
1096
|
}
|
|
510
1097
|
if (typeof when === "number") {
|
|
511
1098
|
const time = new Date(Date.now() + when * 1000);
|
|
@@ -518,16 +1105,20 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
518
1105
|
)}, 'delayed', ${when}, ${timestamp})
|
|
519
1106
|
`;
|
|
520
1107
|
|
|
521
|
-
await this
|
|
1108
|
+
await this._scheduleNextAlarm();
|
|
522
1109
|
|
|
523
|
-
|
|
524
|
-
id,
|
|
1110
|
+
const schedule: Schedule<T> = {
|
|
525
1111
|
callback: callback,
|
|
526
|
-
payload: payload as T,
|
|
527
1112
|
delayInSeconds: when,
|
|
1113
|
+
id,
|
|
1114
|
+
payload: payload as T,
|
|
528
1115
|
time: timestamp,
|
|
529
|
-
type: "delayed"
|
|
1116
|
+
type: "delayed"
|
|
530
1117
|
};
|
|
1118
|
+
|
|
1119
|
+
emitScheduleCreate(schedule);
|
|
1120
|
+
|
|
1121
|
+
return schedule;
|
|
531
1122
|
}
|
|
532
1123
|
if (typeof when === "string") {
|
|
533
1124
|
const nextExecutionTime = getNextCronTime(when);
|
|
@@ -540,16 +1131,20 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
540
1131
|
)}, 'cron', ${when}, ${timestamp})
|
|
541
1132
|
`;
|
|
542
1133
|
|
|
543
|
-
await this
|
|
1134
|
+
await this._scheduleNextAlarm();
|
|
544
1135
|
|
|
545
|
-
|
|
546
|
-
id,
|
|
1136
|
+
const schedule: Schedule<T> = {
|
|
547
1137
|
callback: callback,
|
|
548
|
-
payload: payload as T,
|
|
549
1138
|
cron: when,
|
|
1139
|
+
id,
|
|
1140
|
+
payload: payload as T,
|
|
550
1141
|
time: timestamp,
|
|
551
|
-
type: "cron"
|
|
1142
|
+
type: "cron"
|
|
552
1143
|
};
|
|
1144
|
+
|
|
1145
|
+
emitScheduleCreate(schedule);
|
|
1146
|
+
|
|
1147
|
+
return schedule;
|
|
553
1148
|
}
|
|
554
1149
|
throw new Error("Invalid schedule type");
|
|
555
1150
|
}
|
|
@@ -580,7 +1175,6 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
580
1175
|
*/
|
|
581
1176
|
getSchedules<T = string>(
|
|
582
1177
|
criteria: {
|
|
583
|
-
description?: string;
|
|
584
1178
|
id?: string;
|
|
585
1179
|
type?: "scheduled" | "delayed" | "cron";
|
|
586
1180
|
timeRange?: { start?: Date; end?: Date };
|
|
@@ -594,11 +1188,6 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
594
1188
|
params.push(criteria.id);
|
|
595
1189
|
}
|
|
596
1190
|
|
|
597
|
-
if (criteria.description) {
|
|
598
|
-
query += " AND description = ?";
|
|
599
|
-
params.push(criteria.description);
|
|
600
|
-
}
|
|
601
|
-
|
|
602
1191
|
if (criteria.type) {
|
|
603
1192
|
query += " AND type = ?";
|
|
604
1193
|
params.push(criteria.type);
|
|
@@ -619,7 +1208,7 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
619
1208
|
.toArray()
|
|
620
1209
|
.map((row) => ({
|
|
621
1210
|
...row,
|
|
622
|
-
payload: JSON.parse(row.payload as string) as T
|
|
1211
|
+
payload: JSON.parse(row.payload as string) as T
|
|
623
1212
|
})) as Schedule<T>[];
|
|
624
1213
|
|
|
625
1214
|
return result;
|
|
@@ -631,18 +1220,34 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
631
1220
|
* @returns true if the task was cancelled, false otherwise
|
|
632
1221
|
*/
|
|
633
1222
|
async cancelSchedule(id: string): Promise<boolean> {
|
|
1223
|
+
const schedule = await this.getSchedule(id);
|
|
1224
|
+
if (schedule) {
|
|
1225
|
+
this.observability?.emit(
|
|
1226
|
+
{
|
|
1227
|
+
displayMessage: `Schedule ${id} cancelled`,
|
|
1228
|
+
id: nanoid(),
|
|
1229
|
+
payload: {
|
|
1230
|
+
callback: schedule.callback,
|
|
1231
|
+
id: schedule.id
|
|
1232
|
+
},
|
|
1233
|
+
timestamp: Date.now(),
|
|
1234
|
+
type: "schedule:cancel"
|
|
1235
|
+
},
|
|
1236
|
+
this.ctx
|
|
1237
|
+
);
|
|
1238
|
+
}
|
|
634
1239
|
this.sql`DELETE FROM cf_agents_schedules WHERE id = ${id}`;
|
|
635
1240
|
|
|
636
|
-
await this
|
|
1241
|
+
await this._scheduleNextAlarm();
|
|
637
1242
|
return true;
|
|
638
1243
|
}
|
|
639
1244
|
|
|
640
|
-
async
|
|
1245
|
+
private async _scheduleNextAlarm() {
|
|
641
1246
|
// Find the next schedule that needs to be executed
|
|
642
1247
|
const result = this.sql`
|
|
643
|
-
SELECT time FROM cf_agents_schedules
|
|
1248
|
+
SELECT time FROM cf_agents_schedules
|
|
644
1249
|
WHERE time > ${Math.floor(Date.now() / 1000)}
|
|
645
|
-
ORDER BY time ASC
|
|
1250
|
+
ORDER BY time ASC
|
|
646
1251
|
LIMIT 1
|
|
647
1252
|
`;
|
|
648
1253
|
if (!result) return;
|
|
@@ -654,10 +1259,14 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
654
1259
|
}
|
|
655
1260
|
|
|
656
1261
|
/**
|
|
657
|
-
* Method called when an alarm fires
|
|
658
|
-
* Executes any scheduled tasks that are due
|
|
1262
|
+
* Method called when an alarm fires.
|
|
1263
|
+
* Executes any scheduled tasks that are due.
|
|
1264
|
+
*
|
|
1265
|
+
* @remarks
|
|
1266
|
+
* To schedule a task, please use the `this.schedule` method instead.
|
|
1267
|
+
* See {@link https://developers.cloudflare.com/agents/api-reference/schedule-tasks/}
|
|
659
1268
|
*/
|
|
660
|
-
async
|
|
1269
|
+
public readonly alarm = async () => {
|
|
661
1270
|
const now = Math.floor(Date.now() / 1000);
|
|
662
1271
|
|
|
663
1272
|
// Get all schedules that should be executed now
|
|
@@ -665,41 +1274,67 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
665
1274
|
SELECT * FROM cf_agents_schedules WHERE time <= ${now}
|
|
666
1275
|
`;
|
|
667
1276
|
|
|
668
|
-
|
|
669
|
-
const
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
await (
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
1277
|
+
if (result && Array.isArray(result)) {
|
|
1278
|
+
for (const row of result) {
|
|
1279
|
+
const callback = this[row.callback as keyof Agent<Env>];
|
|
1280
|
+
if (!callback) {
|
|
1281
|
+
console.error(`callback ${row.callback} not found`);
|
|
1282
|
+
continue;
|
|
1283
|
+
}
|
|
1284
|
+
await agentContext.run(
|
|
1285
|
+
{
|
|
1286
|
+
agent: this,
|
|
1287
|
+
connection: undefined,
|
|
1288
|
+
request: undefined,
|
|
1289
|
+
email: undefined
|
|
1290
|
+
},
|
|
1291
|
+
async () => {
|
|
1292
|
+
try {
|
|
1293
|
+
this.observability?.emit(
|
|
1294
|
+
{
|
|
1295
|
+
displayMessage: `Schedule ${row.id} executed`,
|
|
1296
|
+
id: nanoid(),
|
|
1297
|
+
payload: {
|
|
1298
|
+
callback: row.callback,
|
|
1299
|
+
id: row.id
|
|
1300
|
+
},
|
|
1301
|
+
timestamp: Date.now(),
|
|
1302
|
+
type: "schedule:execute"
|
|
1303
|
+
},
|
|
1304
|
+
this.ctx
|
|
1305
|
+
);
|
|
1306
|
+
|
|
1307
|
+
await (
|
|
1308
|
+
callback as (
|
|
1309
|
+
payload: unknown,
|
|
1310
|
+
schedule: Schedule<unknown>
|
|
1311
|
+
) => Promise<void>
|
|
1312
|
+
).bind(this)(JSON.parse(row.payload as string), row);
|
|
1313
|
+
} catch (e) {
|
|
1314
|
+
console.error(`error executing callback "${row.callback}"`, e);
|
|
1315
|
+
}
|
|
1316
|
+
}
|
|
1317
|
+
);
|
|
1318
|
+
if (row.type === "cron") {
|
|
1319
|
+
// Update next execution time for cron schedules
|
|
1320
|
+
const nextExecutionTime = getNextCronTime(row.cron);
|
|
1321
|
+
const nextTimestamp = Math.floor(nextExecutionTime.getTime() / 1000);
|
|
688
1322
|
|
|
689
|
-
|
|
1323
|
+
this.sql`
|
|
690
1324
|
UPDATE cf_agents_schedules SET time = ${nextTimestamp} WHERE id = ${row.id}
|
|
691
1325
|
`;
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
1326
|
+
} else {
|
|
1327
|
+
// Delete one-time schedules after execution
|
|
1328
|
+
this.sql`
|
|
695
1329
|
DELETE FROM cf_agents_schedules WHERE id = ${row.id}
|
|
696
1330
|
`;
|
|
1331
|
+
}
|
|
697
1332
|
}
|
|
698
1333
|
}
|
|
699
1334
|
|
|
700
1335
|
// Schedule the next alarm
|
|
701
|
-
await this
|
|
702
|
-
}
|
|
1336
|
+
await this._scheduleNextAlarm();
|
|
1337
|
+
};
|
|
703
1338
|
|
|
704
1339
|
/**
|
|
705
1340
|
* Destroy the Agent, removing all state and scheduled tasks
|
|
@@ -708,20 +1343,203 @@ export class Agent<Env, State = unknown> extends Server<Env> {
|
|
|
708
1343
|
// drop all tables
|
|
709
1344
|
this.sql`DROP TABLE IF EXISTS cf_agents_state`;
|
|
710
1345
|
this.sql`DROP TABLE IF EXISTS cf_agents_schedules`;
|
|
1346
|
+
this.sql`DROP TABLE IF EXISTS cf_agents_mcp_servers`;
|
|
1347
|
+
this.sql`DROP TABLE IF EXISTS cf_agents_queues`;
|
|
711
1348
|
|
|
712
1349
|
// delete all alarms
|
|
713
1350
|
await this.ctx.storage.deleteAlarm();
|
|
714
1351
|
await this.ctx.storage.deleteAll();
|
|
1352
|
+
this.ctx.abort("destroyed"); // enforce that the agent is evicted
|
|
1353
|
+
|
|
1354
|
+
this.observability?.emit(
|
|
1355
|
+
{
|
|
1356
|
+
displayMessage: "Agent destroyed",
|
|
1357
|
+
id: nanoid(),
|
|
1358
|
+
payload: {},
|
|
1359
|
+
timestamp: Date.now(),
|
|
1360
|
+
type: "destroy"
|
|
1361
|
+
},
|
|
1362
|
+
this.ctx
|
|
1363
|
+
);
|
|
715
1364
|
}
|
|
716
1365
|
|
|
717
1366
|
/**
|
|
718
1367
|
* Get all methods marked as callable on this Agent
|
|
719
1368
|
* @returns A map of method names to their metadata
|
|
720
1369
|
*/
|
|
721
|
-
|
|
722
|
-
// biome-ignore lint/complexity/noBannedTypes: <explanation>
|
|
1370
|
+
private _isCallable(method: string): boolean {
|
|
723
1371
|
return callableMetadata.has(this[method as keyof this] as Function);
|
|
724
1372
|
}
|
|
1373
|
+
|
|
1374
|
+
/**
|
|
1375
|
+
* Connect to a new MCP Server
|
|
1376
|
+
*
|
|
1377
|
+
* @param url MCP Server SSE URL
|
|
1378
|
+
* @param callbackHost Base host for the agent, used for the redirect URI.
|
|
1379
|
+
* @param agentsPrefix agents routing prefix if not using `agents`
|
|
1380
|
+
* @param options MCP client and transport (header) options
|
|
1381
|
+
* @returns authUrl
|
|
1382
|
+
*/
|
|
1383
|
+
async addMcpServer(
|
|
1384
|
+
serverName: string,
|
|
1385
|
+
url: string,
|
|
1386
|
+
callbackHost: string,
|
|
1387
|
+
agentsPrefix = "agents",
|
|
1388
|
+
options?: {
|
|
1389
|
+
client?: ConstructorParameters<typeof Client>[1];
|
|
1390
|
+
transport?: {
|
|
1391
|
+
headers: HeadersInit;
|
|
1392
|
+
};
|
|
1393
|
+
}
|
|
1394
|
+
): Promise<{ id: string; authUrl: string | undefined }> {
|
|
1395
|
+
const callbackUrl = `${callbackHost}/${agentsPrefix}/${camelCaseToKebabCase(this._ParentClass.name)}/${this.name}/callback`;
|
|
1396
|
+
|
|
1397
|
+
const result = await this._connectToMcpServerInternal(
|
|
1398
|
+
serverName,
|
|
1399
|
+
url,
|
|
1400
|
+
callbackUrl,
|
|
1401
|
+
options
|
|
1402
|
+
);
|
|
1403
|
+
this.sql`
|
|
1404
|
+
INSERT
|
|
1405
|
+
OR REPLACE INTO cf_agents_mcp_servers (id, name, server_url, client_id, auth_url, callback_url, server_options)
|
|
1406
|
+
VALUES (
|
|
1407
|
+
${result.id},
|
|
1408
|
+
${serverName},
|
|
1409
|
+
${url},
|
|
1410
|
+
${result.clientId ?? null},
|
|
1411
|
+
${result.authUrl ?? null},
|
|
1412
|
+
${callbackUrl},
|
|
1413
|
+
${options ? JSON.stringify(options) : null}
|
|
1414
|
+
);
|
|
1415
|
+
`;
|
|
1416
|
+
|
|
1417
|
+
this.broadcast(
|
|
1418
|
+
JSON.stringify({
|
|
1419
|
+
mcp: this.getMcpServers(),
|
|
1420
|
+
type: "cf_agent_mcp_servers"
|
|
1421
|
+
})
|
|
1422
|
+
);
|
|
1423
|
+
|
|
1424
|
+
return result;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
async _connectToMcpServerInternal(
|
|
1428
|
+
_serverName: string,
|
|
1429
|
+
url: string,
|
|
1430
|
+
callbackUrl: string,
|
|
1431
|
+
// it's important that any options here are serializable because we put them into our sqlite DB for reconnection purposes
|
|
1432
|
+
options?: {
|
|
1433
|
+
client?: ConstructorParameters<typeof Client>[1];
|
|
1434
|
+
/**
|
|
1435
|
+
* We don't expose the normal set of transport options because:
|
|
1436
|
+
* 1) we can't serialize things like the auth provider or a fetch function into the DB for reconnection purposes
|
|
1437
|
+
* 2) We probably want these options to be agnostic to the transport type (SSE vs Streamable)
|
|
1438
|
+
*
|
|
1439
|
+
* This has the limitation that you can't override fetch, but I think headers should handle nearly all cases needed (i.e. non-standard bearer auth).
|
|
1440
|
+
*/
|
|
1441
|
+
transport?: {
|
|
1442
|
+
headers?: HeadersInit;
|
|
1443
|
+
};
|
|
1444
|
+
},
|
|
1445
|
+
reconnect?: {
|
|
1446
|
+
id: string;
|
|
1447
|
+
oauthClientId?: string;
|
|
1448
|
+
}
|
|
1449
|
+
): Promise<{
|
|
1450
|
+
id: string;
|
|
1451
|
+
authUrl: string | undefined;
|
|
1452
|
+
clientId: string | undefined;
|
|
1453
|
+
}> {
|
|
1454
|
+
const authProvider = new DurableObjectOAuthClientProvider(
|
|
1455
|
+
this.ctx.storage,
|
|
1456
|
+
this.name,
|
|
1457
|
+
callbackUrl
|
|
1458
|
+
);
|
|
1459
|
+
|
|
1460
|
+
if (reconnect) {
|
|
1461
|
+
authProvider.serverId = reconnect.id;
|
|
1462
|
+
if (reconnect.oauthClientId) {
|
|
1463
|
+
authProvider.clientId = reconnect.oauthClientId;
|
|
1464
|
+
}
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
// allows passing through transport headers if necessary
|
|
1468
|
+
// this handles some non-standard bearer auth setups (i.e. MCP server behind CF access instead of OAuth)
|
|
1469
|
+
let headerTransportOpts: SSEClientTransportOptions = {};
|
|
1470
|
+
if (options?.transport?.headers) {
|
|
1471
|
+
headerTransportOpts = {
|
|
1472
|
+
eventSourceInit: {
|
|
1473
|
+
fetch: (url, init) =>
|
|
1474
|
+
fetch(url, {
|
|
1475
|
+
...init,
|
|
1476
|
+
headers: options?.transport?.headers
|
|
1477
|
+
})
|
|
1478
|
+
},
|
|
1479
|
+
requestInit: {
|
|
1480
|
+
headers: options?.transport?.headers
|
|
1481
|
+
}
|
|
1482
|
+
};
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
const { id, authUrl, clientId } = await this.mcp.connect(url, {
|
|
1486
|
+
client: options?.client,
|
|
1487
|
+
reconnect,
|
|
1488
|
+
transport: {
|
|
1489
|
+
...headerTransportOpts,
|
|
1490
|
+
authProvider
|
|
1491
|
+
}
|
|
1492
|
+
});
|
|
1493
|
+
|
|
1494
|
+
return {
|
|
1495
|
+
authUrl,
|
|
1496
|
+
clientId,
|
|
1497
|
+
id
|
|
1498
|
+
};
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
async removeMcpServer(id: string) {
|
|
1502
|
+
this.mcp.closeConnection(id);
|
|
1503
|
+
this.sql`
|
|
1504
|
+
DELETE FROM cf_agents_mcp_servers WHERE id = ${id};
|
|
1505
|
+
`;
|
|
1506
|
+
this.broadcast(
|
|
1507
|
+
JSON.stringify({
|
|
1508
|
+
mcp: this.getMcpServers(),
|
|
1509
|
+
type: "cf_agent_mcp_servers"
|
|
1510
|
+
})
|
|
1511
|
+
);
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
getMcpServers(): MCPServersState {
|
|
1515
|
+
const mcpState: MCPServersState = {
|
|
1516
|
+
prompts: this.mcp.listPrompts(),
|
|
1517
|
+
resources: this.mcp.listResources(),
|
|
1518
|
+
servers: {},
|
|
1519
|
+
tools: this.mcp.listTools()
|
|
1520
|
+
};
|
|
1521
|
+
|
|
1522
|
+
const servers = this.sql<MCPServerRow>`
|
|
1523
|
+
SELECT id, name, server_url, client_id, auth_url, callback_url, server_options FROM cf_agents_mcp_servers;
|
|
1524
|
+
`;
|
|
1525
|
+
|
|
1526
|
+
if (servers && Array.isArray(servers) && servers.length > 0) {
|
|
1527
|
+
for (const server of servers) {
|
|
1528
|
+
const serverConn = this.mcp.mcpConnections[server.id];
|
|
1529
|
+
mcpState.servers[server.id] = {
|
|
1530
|
+
auth_url: server.auth_url,
|
|
1531
|
+
capabilities: serverConn?.serverCapabilities ?? null,
|
|
1532
|
+
instructions: serverConn?.instructions ?? null,
|
|
1533
|
+
name: server.name,
|
|
1534
|
+
server_url: server.server_url,
|
|
1535
|
+
// mark as "authenticating" because the server isn't automatically connected, so it's pending authenticating
|
|
1536
|
+
state: serverConn?.connectionState ?? "authenticating"
|
|
1537
|
+
};
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
return mcpState;
|
|
1542
|
+
}
|
|
725
1543
|
}
|
|
726
1544
|
|
|
727
1545
|
/**
|
|
@@ -761,17 +1579,17 @@ export async function routeAgentRequest<Env>(
|
|
|
761
1579
|
const corsHeaders =
|
|
762
1580
|
options?.cors === true
|
|
763
1581
|
? {
|
|
764
|
-
"Access-Control-Allow-Origin": "*",
|
|
765
|
-
"Access-Control-Allow-Methods": "GET, POST, HEAD, OPTIONS",
|
|
766
1582
|
"Access-Control-Allow-Credentials": "true",
|
|
767
|
-
"Access-Control-
|
|
1583
|
+
"Access-Control-Allow-Methods": "GET, POST, HEAD, OPTIONS",
|
|
1584
|
+
"Access-Control-Allow-Origin": "*",
|
|
1585
|
+
"Access-Control-Max-Age": "86400"
|
|
768
1586
|
}
|
|
769
1587
|
: options?.cors;
|
|
770
1588
|
|
|
771
1589
|
if (request.method === "OPTIONS") {
|
|
772
1590
|
if (corsHeaders) {
|
|
773
1591
|
return new Response(null, {
|
|
774
|
-
headers: corsHeaders
|
|
1592
|
+
headers: corsHeaders
|
|
775
1593
|
});
|
|
776
1594
|
}
|
|
777
1595
|
console.warn(
|
|
@@ -784,7 +1602,7 @@ export async function routeAgentRequest<Env>(
|
|
|
784
1602
|
env as Record<string, unknown>,
|
|
785
1603
|
{
|
|
786
1604
|
prefix: "agents",
|
|
787
|
-
...(options as PartyServerOptions<Record<string, unknown>>)
|
|
1605
|
+
...(options as PartyServerOptions<Record<string, unknown>>)
|
|
788
1606
|
}
|
|
789
1607
|
);
|
|
790
1608
|
|
|
@@ -797,24 +1615,238 @@ export async function routeAgentRequest<Env>(
|
|
|
797
1615
|
response = new Response(response.body, {
|
|
798
1616
|
headers: {
|
|
799
1617
|
...response.headers,
|
|
800
|
-
...corsHeaders
|
|
801
|
-
}
|
|
1618
|
+
...corsHeaders
|
|
1619
|
+
}
|
|
802
1620
|
});
|
|
803
1621
|
}
|
|
804
1622
|
return response;
|
|
805
1623
|
}
|
|
806
1624
|
|
|
1625
|
+
export type EmailResolver<Env> = (
|
|
1626
|
+
email: ForwardableEmailMessage,
|
|
1627
|
+
env: Env
|
|
1628
|
+
) => Promise<{
|
|
1629
|
+
agentName: string;
|
|
1630
|
+
agentId: string;
|
|
1631
|
+
} | null>;
|
|
1632
|
+
|
|
1633
|
+
/**
|
|
1634
|
+
* Create a resolver that uses the message-id header to determine the agent to route the email to
|
|
1635
|
+
* @returns A function that resolves the agent to route the email to
|
|
1636
|
+
*/
|
|
1637
|
+
export function createHeaderBasedEmailResolver<Env>(): EmailResolver<Env> {
|
|
1638
|
+
return async (email: ForwardableEmailMessage, _env: Env) => {
|
|
1639
|
+
const messageId = email.headers.get("message-id");
|
|
1640
|
+
if (messageId) {
|
|
1641
|
+
const messageIdMatch = messageId.match(/<([^@]+)@([^>]+)>/);
|
|
1642
|
+
if (messageIdMatch) {
|
|
1643
|
+
const [, agentId, domain] = messageIdMatch;
|
|
1644
|
+
const agentName = domain.split(".")[0];
|
|
1645
|
+
return { agentName, agentId };
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
const references = email.headers.get("references");
|
|
1650
|
+
if (references) {
|
|
1651
|
+
const referencesMatch = references.match(
|
|
1652
|
+
/<([A-Za-z0-9+/]{43}=)@([^>]+)>/
|
|
1653
|
+
);
|
|
1654
|
+
if (referencesMatch) {
|
|
1655
|
+
const [, base64Id, domain] = referencesMatch;
|
|
1656
|
+
const agentId = Buffer.from(base64Id, "base64").toString("hex");
|
|
1657
|
+
const agentName = domain.split(".")[0];
|
|
1658
|
+
return { agentName, agentId };
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
const agentName = email.headers.get("x-agent-name");
|
|
1663
|
+
const agentId = email.headers.get("x-agent-id");
|
|
1664
|
+
if (agentName && agentId) {
|
|
1665
|
+
return { agentName, agentId };
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
return null;
|
|
1669
|
+
};
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
/**
|
|
1673
|
+
* Create a resolver that uses the email address to determine the agent to route the email to
|
|
1674
|
+
* @param defaultAgentName The default agent name to use if the email address does not contain a sub-address
|
|
1675
|
+
* @returns A function that resolves the agent to route the email to
|
|
1676
|
+
*/
|
|
1677
|
+
export function createAddressBasedEmailResolver<Env>(
|
|
1678
|
+
defaultAgentName: string
|
|
1679
|
+
): EmailResolver<Env> {
|
|
1680
|
+
return async (email: ForwardableEmailMessage, _env: Env) => {
|
|
1681
|
+
const emailMatch = email.to.match(/^([^+@]+)(?:\+([^@]+))?@(.+)$/);
|
|
1682
|
+
if (!emailMatch) {
|
|
1683
|
+
return null;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
const [, localPart, subAddress] = emailMatch;
|
|
1687
|
+
|
|
1688
|
+
if (subAddress) {
|
|
1689
|
+
return {
|
|
1690
|
+
agentName: localPart,
|
|
1691
|
+
agentId: subAddress
|
|
1692
|
+
};
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
// Option 2: Use defaultAgentName namespace, localPart as agentId
|
|
1696
|
+
// Common for catch-all email routing to a single EmailAgent namespace
|
|
1697
|
+
return {
|
|
1698
|
+
agentName: defaultAgentName,
|
|
1699
|
+
agentId: localPart
|
|
1700
|
+
};
|
|
1701
|
+
};
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1704
|
+
/**
|
|
1705
|
+
* Create a resolver that uses the agentName and agentId to determine the agent to route the email to
|
|
1706
|
+
* @param agentName The name of the agent to route the email to
|
|
1707
|
+
* @param agentId The id of the agent to route the email to
|
|
1708
|
+
* @returns A function that resolves the agent to route the email to
|
|
1709
|
+
*/
|
|
1710
|
+
export function createCatchAllEmailResolver<Env>(
|
|
1711
|
+
agentName: string,
|
|
1712
|
+
agentId: string
|
|
1713
|
+
): EmailResolver<Env> {
|
|
1714
|
+
return async () => ({ agentName, agentId });
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
export type EmailRoutingOptions<Env> = AgentOptions<Env> & {
|
|
1718
|
+
resolver: EmailResolver<Env>;
|
|
1719
|
+
};
|
|
1720
|
+
|
|
1721
|
+
// Cache the agent namespace map for email routing
|
|
1722
|
+
// This maps both kebab-case and original names to namespaces
|
|
1723
|
+
const agentMapCache = new WeakMap<
|
|
1724
|
+
Record<string, unknown>,
|
|
1725
|
+
Record<string, unknown>
|
|
1726
|
+
>();
|
|
1727
|
+
|
|
807
1728
|
/**
|
|
808
1729
|
* Route an email to the appropriate Agent
|
|
809
|
-
* @param email
|
|
810
|
-
* @param env
|
|
811
|
-
* @param options
|
|
1730
|
+
* @param email The email to route
|
|
1731
|
+
* @param env The environment containing the Agent bindings
|
|
1732
|
+
* @param options The options for routing the email
|
|
1733
|
+
* @returns A promise that resolves when the email has been routed
|
|
812
1734
|
*/
|
|
813
1735
|
export async function routeAgentEmail<Env>(
|
|
814
1736
|
email: ForwardableEmailMessage,
|
|
815
1737
|
env: Env,
|
|
816
|
-
options
|
|
817
|
-
): Promise<void> {
|
|
1738
|
+
options: EmailRoutingOptions<Env>
|
|
1739
|
+
): Promise<void> {
|
|
1740
|
+
const routingInfo = await options.resolver(email, env);
|
|
1741
|
+
|
|
1742
|
+
if (!routingInfo) {
|
|
1743
|
+
console.warn("No routing information found for email, dropping message");
|
|
1744
|
+
return;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
// Build a map that includes both original names and kebab-case versions
|
|
1748
|
+
if (!agentMapCache.has(env as Record<string, unknown>)) {
|
|
1749
|
+
const map: Record<string, unknown> = {};
|
|
1750
|
+
for (const [key, value] of Object.entries(env as Record<string, unknown>)) {
|
|
1751
|
+
if (
|
|
1752
|
+
value &&
|
|
1753
|
+
typeof value === "object" &&
|
|
1754
|
+
"idFromName" in value &&
|
|
1755
|
+
typeof value.idFromName === "function"
|
|
1756
|
+
) {
|
|
1757
|
+
// Add both the original name and kebab-case version
|
|
1758
|
+
map[key] = value;
|
|
1759
|
+
map[camelCaseToKebabCase(key)] = value;
|
|
1760
|
+
}
|
|
1761
|
+
}
|
|
1762
|
+
agentMapCache.set(env as Record<string, unknown>, map);
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
const agentMap = agentMapCache.get(env as Record<string, unknown>)!;
|
|
1766
|
+
const namespace = agentMap[routingInfo.agentName];
|
|
1767
|
+
|
|
1768
|
+
if (!namespace) {
|
|
1769
|
+
// Provide helpful error message listing available agents
|
|
1770
|
+
const availableAgents = Object.keys(agentMap)
|
|
1771
|
+
.filter((key) => !key.includes("-")) // Show only original names, not kebab-case duplicates
|
|
1772
|
+
.join(", ");
|
|
1773
|
+
throw new Error(
|
|
1774
|
+
`Agent namespace '${routingInfo.agentName}' not found in environment. Available agents: ${availableAgents}`
|
|
1775
|
+
);
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
const agent = await getAgentByName(
|
|
1779
|
+
namespace as unknown as AgentNamespace<Agent<Env>>,
|
|
1780
|
+
routingInfo.agentId
|
|
1781
|
+
);
|
|
1782
|
+
|
|
1783
|
+
// let's make a serialisable version of the email
|
|
1784
|
+
const serialisableEmail: AgentEmail = {
|
|
1785
|
+
getRaw: async () => {
|
|
1786
|
+
const reader = email.raw.getReader();
|
|
1787
|
+
const chunks: Uint8Array[] = [];
|
|
1788
|
+
|
|
1789
|
+
let done = false;
|
|
1790
|
+
while (!done) {
|
|
1791
|
+
const { value, done: readerDone } = await reader.read();
|
|
1792
|
+
done = readerDone;
|
|
1793
|
+
if (value) {
|
|
1794
|
+
chunks.push(value);
|
|
1795
|
+
}
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
const totalLength = chunks.reduce((sum, chunk) => sum + chunk.length, 0);
|
|
1799
|
+
const combined = new Uint8Array(totalLength);
|
|
1800
|
+
let offset = 0;
|
|
1801
|
+
for (const chunk of chunks) {
|
|
1802
|
+
combined.set(chunk, offset);
|
|
1803
|
+
offset += chunk.length;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
return combined;
|
|
1807
|
+
},
|
|
1808
|
+
headers: email.headers,
|
|
1809
|
+
rawSize: email.rawSize,
|
|
1810
|
+
setReject: (reason: string) => {
|
|
1811
|
+
email.setReject(reason);
|
|
1812
|
+
},
|
|
1813
|
+
forward: (rcptTo: string, headers?: Headers) => {
|
|
1814
|
+
return email.forward(rcptTo, headers);
|
|
1815
|
+
},
|
|
1816
|
+
reply: (options: { from: string; to: string; raw: string }) => {
|
|
1817
|
+
return email.reply(
|
|
1818
|
+
new EmailMessage(options.from, options.to, options.raw)
|
|
1819
|
+
);
|
|
1820
|
+
},
|
|
1821
|
+
from: email.from,
|
|
1822
|
+
to: email.to
|
|
1823
|
+
};
|
|
1824
|
+
|
|
1825
|
+
await agent._onEmail(serialisableEmail);
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
export type AgentEmail = {
|
|
1829
|
+
from: string;
|
|
1830
|
+
to: string;
|
|
1831
|
+
getRaw: () => Promise<Uint8Array>;
|
|
1832
|
+
headers: Headers;
|
|
1833
|
+
rawSize: number;
|
|
1834
|
+
setReject: (reason: string) => void;
|
|
1835
|
+
forward: (rcptTo: string, headers?: Headers) => Promise<void>;
|
|
1836
|
+
reply: (options: { from: string; to: string; raw: string }) => Promise<void>;
|
|
1837
|
+
};
|
|
1838
|
+
|
|
1839
|
+
export type EmailSendOptions = {
|
|
1840
|
+
to: string;
|
|
1841
|
+
subject: string;
|
|
1842
|
+
body: string;
|
|
1843
|
+
contentType?: string;
|
|
1844
|
+
headers?: Record<string, string>;
|
|
1845
|
+
includeRoutingHeaders?: boolean;
|
|
1846
|
+
agentName?: string;
|
|
1847
|
+
agentId?: string;
|
|
1848
|
+
domain?: string;
|
|
1849
|
+
};
|
|
818
1850
|
|
|
819
1851
|
/**
|
|
820
1852
|
* Get or create an Agent by name
|
|
@@ -825,7 +1857,7 @@ export async function routeAgentEmail<Env>(
|
|
|
825
1857
|
* @param options Options for Agent creation
|
|
826
1858
|
* @returns Promise resolving to an Agent instance stub
|
|
827
1859
|
*/
|
|
828
|
-
export function getAgentByName<Env, T extends Agent<Env>>(
|
|
1860
|
+
export async function getAgentByName<Env, T extends Agent<Env>>(
|
|
829
1861
|
namespace: AgentNamespace<T>,
|
|
830
1862
|
name: string,
|
|
831
1863
|
options?: {
|
|
@@ -840,13 +1872,13 @@ export function getAgentByName<Env, T extends Agent<Env>>(
|
|
|
840
1872
|
* A wrapper for streaming responses in callable methods
|
|
841
1873
|
*/
|
|
842
1874
|
export class StreamingResponse {
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
1875
|
+
private _connection: Connection;
|
|
1876
|
+
private _id: string;
|
|
1877
|
+
private _closed = false;
|
|
846
1878
|
|
|
847
1879
|
constructor(connection: Connection, id: string) {
|
|
848
|
-
this
|
|
849
|
-
this
|
|
1880
|
+
this._connection = connection;
|
|
1881
|
+
this._id = id;
|
|
850
1882
|
}
|
|
851
1883
|
|
|
852
1884
|
/**
|
|
@@ -854,17 +1886,17 @@ export class StreamingResponse {
|
|
|
854
1886
|
* @param chunk The data to send
|
|
855
1887
|
*/
|
|
856
1888
|
send(chunk: unknown) {
|
|
857
|
-
if (this
|
|
1889
|
+
if (this._closed) {
|
|
858
1890
|
throw new Error("StreamingResponse is already closed");
|
|
859
1891
|
}
|
|
860
1892
|
const response: RPCResponse = {
|
|
861
|
-
type: "rpc",
|
|
862
|
-
id: this.#id,
|
|
863
|
-
success: true,
|
|
864
|
-
result: chunk,
|
|
865
1893
|
done: false,
|
|
1894
|
+
id: this._id,
|
|
1895
|
+
result: chunk,
|
|
1896
|
+
success: true,
|
|
1897
|
+
type: "rpc"
|
|
866
1898
|
};
|
|
867
|
-
this
|
|
1899
|
+
this._connection.send(JSON.stringify(response));
|
|
868
1900
|
}
|
|
869
1901
|
|
|
870
1902
|
/**
|
|
@@ -872,17 +1904,17 @@ export class StreamingResponse {
|
|
|
872
1904
|
* @param finalChunk Optional final chunk of data to send
|
|
873
1905
|
*/
|
|
874
1906
|
end(finalChunk?: unknown) {
|
|
875
|
-
if (this
|
|
1907
|
+
if (this._closed) {
|
|
876
1908
|
throw new Error("StreamingResponse is already closed");
|
|
877
1909
|
}
|
|
878
|
-
this
|
|
1910
|
+
this._closed = true;
|
|
879
1911
|
const response: RPCResponse = {
|
|
880
|
-
type: "rpc",
|
|
881
|
-
id: this.#id,
|
|
882
|
-
success: true,
|
|
883
|
-
result: finalChunk,
|
|
884
1912
|
done: true,
|
|
1913
|
+
id: this._id,
|
|
1914
|
+
result: finalChunk,
|
|
1915
|
+
success: true,
|
|
1916
|
+
type: "rpc"
|
|
885
1917
|
};
|
|
886
|
-
this
|
|
1918
|
+
this._connection.send(JSON.stringify(response));
|
|
887
1919
|
}
|
|
888
1920
|
}
|