agents 0.0.0-4605264 → 0.0.0-48849be
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 +257 -27
- package/dist/ai-chat-agent.d.ts +59 -11
- package/dist/ai-chat-agent.js +532 -160
- package/dist/ai-chat-agent.js.map +1 -1
- package/dist/ai-chat-v5-migration-BSiGZmYU.js +155 -0
- package/dist/ai-chat-v5-migration-BSiGZmYU.js.map +1 -0
- package/dist/ai-chat-v5-migration.d.ts +155 -0
- package/dist/ai-chat-v5-migration.js +3 -0
- package/dist/ai-react.d.ts +73 -72
- package/dist/ai-react.js +266 -192
- package/dist/ai-react.js.map +1 -1
- package/dist/ai-types-DKWQN9wb.js +20 -0
- package/dist/ai-types-DKWQN9wb.js.map +1 -0
- package/dist/ai-types-DLtxDE4L.d.ts +95 -0
- package/dist/ai-types.d.ts +6 -69
- package/dist/ai-types.js +3 -1
- package/dist/cli.d.ts +8 -0
- package/dist/cli.js +27 -0
- package/dist/cli.js.map +1 -0
- package/dist/client-BAQA84dr.d.ts +104 -0
- package/dist/client-BZ-xTxF5.js +901 -0
- package/dist/client-BZ-xTxF5.js.map +1 -0
- package/dist/client-Cg1aBNFS.js +117 -0
- package/dist/client-Cg1aBNFS.js.map +1 -0
- package/dist/client-ctTw3KHG.d.ts +1440 -0
- package/dist/client.d.ts +12 -79
- package/dist/client.js +3 -130
- package/dist/codemode/ai.d.ts +27 -0
- package/dist/codemode/ai.js +151 -0
- package/dist/codemode/ai.js.map +1 -0
- package/dist/do-oauth-client-provider-Cs9QpXYp.js +93 -0
- package/dist/do-oauth-client-provider-Cs9QpXYp.js.map +1 -0
- package/dist/do-oauth-client-provider-UhQDpDb8.d.ts +134 -0
- package/dist/index-BUle9RiP.d.ts +58 -0
- package/dist/index-BygUGrr9.d.ts +578 -0
- package/dist/index.d.ts +63 -301
- package/dist/index.js +7 -22
- package/dist/mcp/client.d.ts +4 -714
- package/dist/mcp/client.js +3 -470
- package/dist/mcp/do-oauth-client-provider.d.ts +2 -0
- package/dist/mcp/do-oauth-client-provider.js +3 -0
- package/dist/mcp/index.d.ts +191 -43
- package/dist/mcp/index.js +1434 -340
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/x402.d.ts +34 -0
- package/dist/mcp/x402.js +198 -0
- package/dist/mcp/x402.js.map +1 -0
- package/dist/mcp-BwPscEiF.d.ts +61 -0
- package/dist/observability/index.d.ts +3 -0
- package/dist/observability/index.js +7 -0
- package/dist/react-CMF2YDq6.d.ts +113 -0
- package/dist/react.d.ts +10 -39
- package/dist/react.js +183 -98
- package/dist/react.js.map +1 -1
- package/dist/schedule.d.ts +89 -12
- package/dist/schedule.js +46 -23
- package/dist/schedule.js.map +1 -1
- package/dist/serializable-faDkMCai.d.ts +39 -0
- package/dist/serializable.d.ts +7 -0
- package/dist/serializable.js +1 -0
- package/dist/src-BBJoK65j.js +1248 -0
- package/dist/src-BBJoK65j.js.map +1 -0
- package/package.json +127 -53
- package/dist/ai-types.js.map +0 -1
- package/dist/chunk-HMLY7DHA.js +0 -16
- package/dist/chunk-HMLY7DHA.js.map +0 -1
- package/dist/chunk-YMUU7QHV.js +0 -595
- package/dist/chunk-YMUU7QHV.js.map +0 -1
- package/dist/client.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/mcp/client.js.map +0 -1
- package/src/index.ts +0 -919
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { UIMessage } from "ai";
|
|
2
|
+
|
|
3
|
+
//#region src/ai-types.d.ts
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Enum for message types to improve type safety and maintainability
|
|
7
|
+
*/
|
|
8
|
+
declare enum MessageType {
|
|
9
|
+
CF_AGENT_CHAT_MESSAGES = "cf_agent_chat_messages",
|
|
10
|
+
CF_AGENT_USE_CHAT_REQUEST = "cf_agent_use_chat_request",
|
|
11
|
+
CF_AGENT_USE_CHAT_RESPONSE = "cf_agent_use_chat_response",
|
|
12
|
+
CF_AGENT_CHAT_CLEAR = "cf_agent_chat_clear",
|
|
13
|
+
CF_AGENT_CHAT_REQUEST_CANCEL = "cf_agent_chat_request_cancel",
|
|
14
|
+
CF_AGENT_MCP_SERVERS = "cf_agent_mcp_servers",
|
|
15
|
+
CF_MCP_AGENT_EVENT = "cf_mcp_agent_event",
|
|
16
|
+
CF_AGENT_STATE = "cf_agent_state",
|
|
17
|
+
RPC = "rpc"
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Types of messages sent from the Agent to clients
|
|
21
|
+
*/
|
|
22
|
+
type OutgoingMessage<ChatMessage extends UIMessage = UIMessage> =
|
|
23
|
+
| {
|
|
24
|
+
/** Indicates this message is a command to clear chat history */
|
|
25
|
+
type: MessageType.CF_AGENT_CHAT_CLEAR;
|
|
26
|
+
}
|
|
27
|
+
| {
|
|
28
|
+
/** Indicates this message contains updated chat messages */
|
|
29
|
+
type: MessageType.CF_AGENT_CHAT_MESSAGES;
|
|
30
|
+
/** Array of chat messages */
|
|
31
|
+
messages: ChatMessage[];
|
|
32
|
+
}
|
|
33
|
+
| {
|
|
34
|
+
/** Indicates this message is a response to a chat request */
|
|
35
|
+
type: MessageType.CF_AGENT_USE_CHAT_RESPONSE;
|
|
36
|
+
/** Unique ID of the request this response corresponds to */
|
|
37
|
+
id: string;
|
|
38
|
+
/** Content body of the response */
|
|
39
|
+
body: string;
|
|
40
|
+
/** Whether this is the final chunk of the response */
|
|
41
|
+
done: boolean;
|
|
42
|
+
/** Whether this response contains an error */
|
|
43
|
+
error?: boolean;
|
|
44
|
+
}
|
|
45
|
+
| {
|
|
46
|
+
/** Indicates this message is a command to clear chat history */
|
|
47
|
+
type: MessageType.CF_AGENT_CHAT_CLEAR;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Types of messages sent from clients to the Agent
|
|
51
|
+
*/
|
|
52
|
+
type IncomingMessage<ChatMessage extends UIMessage = UIMessage> =
|
|
53
|
+
| {
|
|
54
|
+
/** Indicates this message is a command to clear chat history */
|
|
55
|
+
type: MessageType.CF_AGENT_CHAT_CLEAR;
|
|
56
|
+
}
|
|
57
|
+
| {
|
|
58
|
+
/** Indicates this message is a request to the chat API */
|
|
59
|
+
type: MessageType.CF_AGENT_USE_CHAT_REQUEST;
|
|
60
|
+
/** Unique ID for this request */
|
|
61
|
+
id: string;
|
|
62
|
+
/** Request initialization options */
|
|
63
|
+
init: Pick<
|
|
64
|
+
RequestInit,
|
|
65
|
+
| "method"
|
|
66
|
+
| "keepalive"
|
|
67
|
+
| "headers"
|
|
68
|
+
| "body"
|
|
69
|
+
| "redirect"
|
|
70
|
+
| "integrity"
|
|
71
|
+
| "credentials"
|
|
72
|
+
| "mode"
|
|
73
|
+
| "referrer"
|
|
74
|
+
| "referrerPolicy"
|
|
75
|
+
| "window"
|
|
76
|
+
>;
|
|
77
|
+
}
|
|
78
|
+
| {
|
|
79
|
+
/** Indicates this message is a command to clear chat history */
|
|
80
|
+
type: MessageType.CF_AGENT_CHAT_CLEAR;
|
|
81
|
+
}
|
|
82
|
+
| {
|
|
83
|
+
/** Indicates this message contains updated chat messages */
|
|
84
|
+
type: MessageType.CF_AGENT_CHAT_MESSAGES;
|
|
85
|
+
/** Array of chat messages */
|
|
86
|
+
messages: ChatMessage[];
|
|
87
|
+
}
|
|
88
|
+
| {
|
|
89
|
+
/** Indicates the user wants to stop generation of this message */
|
|
90
|
+
type: MessageType.CF_AGENT_CHAT_REQUEST_CANCEL;
|
|
91
|
+
id: string;
|
|
92
|
+
};
|
|
93
|
+
//#endregion
|
|
94
|
+
export { MessageType as n, OutgoingMessage as r, IncomingMessage as t };
|
|
95
|
+
//# sourceMappingURL=ai-types-DLtxDE4L.d.ts.map
|
package/dist/ai-types.d.ts
CHANGED
|
@@ -1,69 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
| {
|
|
8
|
-
/** Indicates this message contains updated chat messages */
|
|
9
|
-
type: "cf_agent_chat_messages";
|
|
10
|
-
/** Array of chat messages */
|
|
11
|
-
messages: Message[];
|
|
12
|
-
}
|
|
13
|
-
| {
|
|
14
|
-
/** Indicates this message is a response to a chat request */
|
|
15
|
-
type: "cf_agent_use_chat_response";
|
|
16
|
-
/** Unique ID of the request this response corresponds to */
|
|
17
|
-
id: string;
|
|
18
|
-
/** Content body of the response */
|
|
19
|
-
body: string;
|
|
20
|
-
/** Whether this is the final chunk of the response */
|
|
21
|
-
done: boolean;
|
|
22
|
-
}
|
|
23
|
-
| {
|
|
24
|
-
/** Indicates this message contains updated chat messages */
|
|
25
|
-
type: "cf_agent_chat_messages";
|
|
26
|
-
/** Array of chat messages */
|
|
27
|
-
messages: Message[];
|
|
28
|
-
}
|
|
29
|
-
| {
|
|
30
|
-
/** Indicates this message is a command to clear chat history */
|
|
31
|
-
type: "cf_agent_chat_clear";
|
|
32
|
-
};
|
|
33
|
-
/**
|
|
34
|
-
* Types of messages sent from clients to the Agent
|
|
35
|
-
*/
|
|
36
|
-
type IncomingMessage =
|
|
37
|
-
| {
|
|
38
|
-
/** Indicates this message is a request to the chat API */
|
|
39
|
-
type: "cf_agent_use_chat_request";
|
|
40
|
-
/** Unique ID for this request */
|
|
41
|
-
id: string;
|
|
42
|
-
/** Request initialization options */
|
|
43
|
-
init: Pick<
|
|
44
|
-
RequestInit,
|
|
45
|
-
| "method"
|
|
46
|
-
| "keepalive"
|
|
47
|
-
| "headers"
|
|
48
|
-
| "body"
|
|
49
|
-
| "redirect"
|
|
50
|
-
| "integrity"
|
|
51
|
-
| "credentials"
|
|
52
|
-
| "mode"
|
|
53
|
-
| "referrer"
|
|
54
|
-
| "referrerPolicy"
|
|
55
|
-
| "window"
|
|
56
|
-
>;
|
|
57
|
-
}
|
|
58
|
-
| {
|
|
59
|
-
/** Indicates this message is a command to clear chat history */
|
|
60
|
-
type: "cf_agent_chat_clear";
|
|
61
|
-
}
|
|
62
|
-
| {
|
|
63
|
-
/** Indicates this message contains updated chat messages */
|
|
64
|
-
type: "cf_agent_chat_messages";
|
|
65
|
-
/** Array of chat messages */
|
|
66
|
-
messages: Message[];
|
|
67
|
-
};
|
|
68
|
-
|
|
69
|
-
export type { IncomingMessage, OutgoingMessage };
|
|
1
|
+
import {
|
|
2
|
+
n as MessageType,
|
|
3
|
+
r as OutgoingMessage,
|
|
4
|
+
t as IncomingMessage
|
|
5
|
+
} from "./ai-types-DLtxDE4L.js";
|
|
6
|
+
export { IncomingMessage, MessageType, OutgoingMessage };
|
package/dist/ai-types.js
CHANGED
package/dist/cli.d.ts
ADDED
package/dist/cli.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { fileURLToPath } from "node:url";
|
|
3
|
+
import yargs from "yargs";
|
|
4
|
+
import { hideBin } from "yargs/helpers";
|
|
5
|
+
|
|
6
|
+
//#region src/cli.ts
|
|
7
|
+
function createCli(argv = process.argv) {
|
|
8
|
+
return yargs(hideBin(argv)).scriptName("agents").usage("$0 <command> [options]").command(["init", "create"], "Initialize an agents project", (cmd) => cmd, async () => {
|
|
9
|
+
console.log("agents init: not implemented yet");
|
|
10
|
+
process.exit(0);
|
|
11
|
+
}).command("dev", "Start development server", (cmd) => cmd, async () => {
|
|
12
|
+
console.log("agents dev: not implemented yet");
|
|
13
|
+
process.exit(0);
|
|
14
|
+
}).command("deploy", "Deploy agents to Cloudflare", (cmd) => cmd, async () => {
|
|
15
|
+
console.log("agents deploy: not implemented yet");
|
|
16
|
+
process.exit(0);
|
|
17
|
+
}).command("mcp", "The agents mcp server", (cmd) => cmd, async () => {
|
|
18
|
+
console.log("agents mcp: not implemented yet");
|
|
19
|
+
process.exit(0);
|
|
20
|
+
}).demandCommand(1, "Please provide a command").strict().help();
|
|
21
|
+
}
|
|
22
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
23
|
+
if (process.argv[1] && fileURLToPath(new URL(process.argv[1], "file://")) === __filename) createCli().parse();
|
|
24
|
+
|
|
25
|
+
//#endregion
|
|
26
|
+
export { createCli };
|
|
27
|
+
//# sourceMappingURL=cli.js.map
|
package/dist/cli.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.js","names":[],"sources":["../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport { fileURLToPath } from \"node:url\";\nimport yargs from \"yargs\";\nimport { hideBin } from \"yargs/helpers\";\n\nexport function createCli(argv = process.argv) {\n return yargs(hideBin(argv))\n .scriptName(\"agents\")\n .usage(\"$0 <command> [options]\")\n .command(\n [\"init\", \"create\"],\n \"Initialize an agents project\",\n (cmd) => cmd,\n async () => {\n console.log(\"agents init: not implemented yet\");\n process.exit(0);\n }\n )\n .command(\n \"dev\",\n \"Start development server\",\n (cmd) => cmd,\n async () => {\n console.log(\"agents dev: not implemented yet\");\n process.exit(0);\n }\n )\n .command(\n \"deploy\",\n \"Deploy agents to Cloudflare\",\n (cmd) => cmd,\n async () => {\n console.log(\"agents deploy: not implemented yet\");\n process.exit(0);\n }\n )\n .command(\n \"mcp\",\n \"The agents mcp server\",\n (cmd) => cmd,\n async () => {\n console.log(\"agents mcp: not implemented yet\");\n process.exit(0);\n }\n )\n .demandCommand(1, \"Please provide a command\")\n .strict()\n .help();\n}\n\n// Run CLI if this is the main module\nconst __filename = fileURLToPath(import.meta.url);\n\n// Check if this file was run directly (not imported)\nif (\n process.argv[1] &&\n fileURLToPath(new URL(process.argv[1], \"file://\")) === __filename\n) {\n void createCli().parse();\n}\n"],"mappings":";;;;;;AAMA,SAAgB,UAAU,OAAO,QAAQ,MAAM;AAC7C,QAAO,MAAM,QAAQ,KAAK,CAAC,CACxB,WAAW,SAAS,CACpB,MAAM,yBAAyB,CAC/B,QACC,CAAC,QAAQ,SAAS,EAClB,iCACC,QAAQ,KACT,YAAY;AACV,UAAQ,IAAI,mCAAmC;AAC/C,UAAQ,KAAK,EAAE;GAElB,CACA,QACC,OACA,6BACC,QAAQ,KACT,YAAY;AACV,UAAQ,IAAI,kCAAkC;AAC9C,UAAQ,KAAK,EAAE;GAElB,CACA,QACC,UACA,gCACC,QAAQ,KACT,YAAY;AACV,UAAQ,IAAI,qCAAqC;AACjD,UAAQ,KAAK,EAAE;GAElB,CACA,QACC,OACA,0BACC,QAAQ,KACT,YAAY;AACV,UAAQ,IAAI,kCAAkC;AAC9C,UAAQ,KAAK,EAAE;GAElB,CACA,cAAc,GAAG,2BAA2B,CAC5C,QAAQ,CACR,MAAM;;AAIX,MAAM,aAAa,cAAc,OAAO,KAAK,IAAI;AAGjD,IACE,QAAQ,KAAK,MACb,cAAc,IAAI,IAAI,QAAQ,KAAK,IAAI,UAAU,CAAC,KAAK,WAEvD,CAAK,WAAW,CAAC,OAAO"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import {
|
|
2
|
+
i as SerializableValue,
|
|
3
|
+
r as SerializableReturnValue
|
|
4
|
+
} from "./serializable-faDkMCai.js";
|
|
5
|
+
import {
|
|
6
|
+
PartyFetchOptions,
|
|
7
|
+
PartySocket,
|
|
8
|
+
PartySocketOptions
|
|
9
|
+
} from "partysocket";
|
|
10
|
+
|
|
11
|
+
//#region src/client.d.ts
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Options for creating an AgentClient
|
|
15
|
+
*/
|
|
16
|
+
type AgentClientOptions<State = unknown> = Omit<
|
|
17
|
+
PartySocketOptions,
|
|
18
|
+
"party" | "room"
|
|
19
|
+
> & {
|
|
20
|
+
/** Name of the agent to connect to */
|
|
21
|
+
agent: string;
|
|
22
|
+
/** Name of the specific Agent instance */
|
|
23
|
+
name?: string;
|
|
24
|
+
/** Called when the Agent's state is updated */
|
|
25
|
+
onStateUpdate?: (state: State, source: "server" | "client") => void;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Options for streaming RPC calls
|
|
29
|
+
*/
|
|
30
|
+
type StreamOptions = {
|
|
31
|
+
/** Called when a chunk of data is received */
|
|
32
|
+
onChunk?: (chunk: unknown) => void;
|
|
33
|
+
/** Called when the stream ends */
|
|
34
|
+
onDone?: (finalChunk: unknown) => void;
|
|
35
|
+
/** Called when an error occurs */
|
|
36
|
+
onError?: (error: string) => void;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Options for the agentFetch function
|
|
40
|
+
*/
|
|
41
|
+
type AgentClientFetchOptions = Omit<PartyFetchOptions, "party" | "room"> & {
|
|
42
|
+
/** Name of the agent to connect to */
|
|
43
|
+
agent: string;
|
|
44
|
+
/** Name of the specific Agent instance */
|
|
45
|
+
name?: string;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Convert a camelCase string to a kebab-case string
|
|
49
|
+
* @param str The string to convert
|
|
50
|
+
* @returns The kebab-case string
|
|
51
|
+
*/
|
|
52
|
+
declare function camelCaseToKebabCase(str: string): string;
|
|
53
|
+
/**
|
|
54
|
+
* WebSocket client for connecting to an Agent
|
|
55
|
+
*/
|
|
56
|
+
declare class AgentClient<State = unknown> extends PartySocket {
|
|
57
|
+
/**
|
|
58
|
+
* @deprecated Use agentFetch instead
|
|
59
|
+
*/
|
|
60
|
+
static fetch(_opts: PartyFetchOptions): Promise<Response>;
|
|
61
|
+
agent: string;
|
|
62
|
+
name: string;
|
|
63
|
+
private options;
|
|
64
|
+
private _pendingCalls;
|
|
65
|
+
constructor(options: AgentClientOptions<State>);
|
|
66
|
+
setState(state: State): void;
|
|
67
|
+
/**
|
|
68
|
+
* Call a method on the Agent
|
|
69
|
+
* @param method Name of the method to call
|
|
70
|
+
* @param args Arguments to pass to the method
|
|
71
|
+
* @param streamOptions Options for handling streaming responses
|
|
72
|
+
* @returns Promise that resolves with the method's return value
|
|
73
|
+
*/
|
|
74
|
+
call<T extends SerializableReturnValue>(
|
|
75
|
+
method: string,
|
|
76
|
+
args?: SerializableValue[],
|
|
77
|
+
streamOptions?: StreamOptions
|
|
78
|
+
): Promise<T>;
|
|
79
|
+
call<T = unknown>(
|
|
80
|
+
method: string,
|
|
81
|
+
args?: unknown[],
|
|
82
|
+
streamOptions?: StreamOptions
|
|
83
|
+
): Promise<T>;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Make an HTTP request to an Agent
|
|
87
|
+
* @param opts Connection options
|
|
88
|
+
* @param init Request initialization options
|
|
89
|
+
* @returns Promise resolving to a Response
|
|
90
|
+
*/
|
|
91
|
+
declare function agentFetch(
|
|
92
|
+
opts: AgentClientFetchOptions,
|
|
93
|
+
init?: RequestInit
|
|
94
|
+
): Promise<Response>;
|
|
95
|
+
//#endregion
|
|
96
|
+
export {
|
|
97
|
+
agentFetch as a,
|
|
98
|
+
StreamOptions as i,
|
|
99
|
+
AgentClientFetchOptions as n,
|
|
100
|
+
camelCaseToKebabCase as o,
|
|
101
|
+
AgentClientOptions as r,
|
|
102
|
+
AgentClient as t
|
|
103
|
+
};
|
|
104
|
+
//# sourceMappingURL=client-BAQA84dr.d.ts.map
|