agents 0.0.0-e03246e → 0.0.0-e1af284

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/README.md +255 -27
  2. package/dist/ai-chat-agent.d.ts +59 -11
  3. package/dist/ai-chat-agent.js +532 -160
  4. package/dist/ai-chat-agent.js.map +1 -1
  5. package/dist/ai-chat-v5-migration-DBHGW4Hv.js +155 -0
  6. package/dist/ai-chat-v5-migration-DBHGW4Hv.js.map +1 -0
  7. package/dist/ai-chat-v5-migration.d.ts +155 -0
  8. package/dist/ai-chat-v5-migration.js +3 -0
  9. package/dist/ai-react.d.ts +73 -72
  10. package/dist/ai-react.js +261 -192
  11. package/dist/ai-react.js.map +1 -1
  12. package/dist/ai-types-B3aQaFv3.js +20 -0
  13. package/dist/ai-types-B3aQaFv3.js.map +1 -0
  14. package/dist/ai-types-D5YoPrBZ.d.ts +95 -0
  15. package/dist/ai-types.d.ts +6 -69
  16. package/dist/ai-types.js +3 -1
  17. package/dist/cli.d.ts +8 -0
  18. package/dist/cli.js +27 -0
  19. package/dist/cli.js.map +1 -0
  20. package/dist/client-9Ld2_lnt.js +786 -0
  21. package/dist/client-9Ld2_lnt.js.map +1 -0
  22. package/dist/client-BIwY43Ed.d.ts +5315 -0
  23. package/dist/client-BfiZ3HQd.js +117 -0
  24. package/dist/client-BfiZ3HQd.js.map +1 -0
  25. package/dist/client-CbWe9FBd.d.ts +104 -0
  26. package/dist/client.d.ts +12 -79
  27. package/dist/client.js +3 -130
  28. package/dist/codemode/ai.d.ts +27 -0
  29. package/dist/codemode/ai.js +151 -0
  30. package/dist/codemode/ai.js.map +1 -0
  31. package/dist/do-oauth-client-provider-CswoD5Lu.js +93 -0
  32. package/dist/do-oauth-client-provider-CswoD5Lu.js.map +1 -0
  33. package/dist/do-oauth-client-provider-DGc5pP0l.d.ts +55 -0
  34. package/dist/index-Bp6UrXKf.d.ts +560 -0
  35. package/dist/index-DhJCaDWd.d.ts +58 -0
  36. package/dist/index.d.ts +63 -301
  37. package/dist/index.js +7 -22
  38. package/dist/mcp/client.d.ts +4 -675
  39. package/dist/mcp/client.js +2 -267
  40. package/dist/mcp/do-oauth-client-provider.d.ts +2 -0
  41. package/dist/mcp/do-oauth-client-provider.js +3 -0
  42. package/dist/mcp/index.d.ts +151 -42
  43. package/dist/mcp/index.js +1362 -335
  44. package/dist/mcp/index.js.map +1 -1
  45. package/dist/mcp/x402.d.ts +34 -0
  46. package/dist/mcp/x402.js +194 -0
  47. package/dist/mcp/x402.js.map +1 -0
  48. package/dist/mcp-Dw5vDrY8.d.ts +61 -0
  49. package/dist/observability/index.d.ts +3 -0
  50. package/dist/observability/index.js +7 -0
  51. package/dist/react-BRVSan-t.d.ts +115 -0
  52. package/dist/react.d.ts +10 -39
  53. package/dist/react.js +183 -98
  54. package/dist/react.js.map +1 -1
  55. package/dist/schedule.d.ts +89 -12
  56. package/dist/schedule.js +46 -23
  57. package/dist/schedule.js.map +1 -1
  58. package/dist/serializable-CymX8ovI.d.ts +39 -0
  59. package/dist/serializable.d.ts +7 -0
  60. package/dist/serializable.js +1 -0
  61. package/dist/src-Dz0H9hSU.js +1200 -0
  62. package/dist/src-Dz0H9hSU.js.map +1 -0
  63. package/package.json +121 -50
  64. package/dist/ai-types.js.map +0 -1
  65. package/dist/chunk-HMLY7DHA.js +0 -16
  66. package/dist/chunk-HMLY7DHA.js.map +0 -1
  67. package/dist/chunk-YMUU7QHV.js +0 -595
  68. package/dist/chunk-YMUU7QHV.js.map +0 -1
  69. package/dist/client.js.map +0 -1
  70. package/dist/index.js.map +0 -1
  71. package/dist/mcp/client.js.map +0 -1
  72. 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-D5YoPrBZ.d.ts.map
@@ -1,69 +1,6 @@
1
- import { Message } from "ai";
2
-
3
- /**
4
- * Types of messages sent from the Agent to clients
5
- */
6
- type OutgoingMessage =
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-D5YoPrBZ.js";
6
+ export { IncomingMessage, MessageType, OutgoingMessage };
package/dist/ai-types.js CHANGED
@@ -1 +1,3 @@
1
- //# sourceMappingURL=ai-types.js.map
1
+ import { t as MessageType } from "./ai-types-B3aQaFv3.js";
2
+
3
+ export { MessageType };
package/dist/cli.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ import * as yargs0 from "yargs";
3
+
4
+ //#region src/cli.d.ts
5
+ declare function createCli(argv?: string[]): yargs0.Argv<{}>;
6
+ //#endregion
7
+ export { createCli };
8
+ //# sourceMappingURL=cli.d.ts.map
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
@@ -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"}