agentic-browser 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/index.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { r as createCliRuntime } from "../runtime-4pX1c4Cs.mjs";
|
|
2
3
|
import fs from "node:fs";
|
|
3
4
|
import path from "node:path";
|
|
4
5
|
import crypto from "node:crypto";
|
|
@@ -361,7 +362,7 @@ async function main() {
|
|
|
361
362
|
await startMcpServer();
|
|
362
363
|
});
|
|
363
364
|
program.command("setup").description("Configure agentic-browser as MCP server for your AI tool").action(async () => {
|
|
364
|
-
const { runSetup } = await import("../setup-
|
|
365
|
+
const { runSetup } = await import("../setup-COK-KCfv.mjs");
|
|
365
366
|
await runSetup();
|
|
366
367
|
});
|
|
367
368
|
await program.parseAsync(process.argv);
|
package/dist/index.mjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { i as createMockAgenticBrowserCore, n as createAgenticBrowserCore, t as AgenticBrowserCore } from "./runtime-4pX1c4Cs.mjs";
|
|
2
3
|
|
|
3
4
|
export { AgenticBrowserCore, createAgenticBrowserCore, createMockAgenticBrowserCore };
|
package/dist/mcp/index.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { n as createAgenticBrowserCore } from "../runtime-4pX1c4Cs.mjs";
|
|
2
3
|
import { z } from "zod";
|
|
3
4
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
4
5
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|