@poncho-ai/browser 0.6.11 → 0.6.12
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/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +9 -0
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/tools.ts +2 -1
- package/.turbo/turbo-test.log +0 -12
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/browser@0.6.
|
|
2
|
+
> @poncho-ai/browser@0.6.12 build /home/runner/work/poncho-ai/poncho-ai/packages/browser
|
|
3
3
|
> tsup src/index.ts --format esm --dts
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.5.1
|
|
8
|
+
[34mCLI[39m Target: es2022
|
|
9
|
+
[34mESM[39m Build start
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m46.07 KB[39m
|
|
11
|
+
[32mESM[39m ⚡️ Build success in 39ms
|
|
12
|
+
[34mDTS[39m Build start
|
|
13
|
+
[32mDTS[39m ⚡️ Build success in 5245ms
|
|
14
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m13.69 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1079,7 +1079,7 @@ function createBrowserTools(getSession) {
|
|
|
1079
1079
|
return [
|
|
1080
1080
|
{
|
|
1081
1081
|
name: "browser_open",
|
|
1082
|
-
description: "Open a URL in a headless browser. Returns the page title. Use this to navigate to websites and web applications.",
|
|
1082
|
+
description: "Open a URL in a headless browser. Returns the page title. Use this to navigate to websites and web applications. To open files from the virtual filesystem, use /api/vfs/{path} (e.g. /api/vfs/downloads/report.pdf).",
|
|
1083
1083
|
inputSchema: {
|
|
1084
1084
|
type: "object",
|
|
1085
1085
|
properties: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poncho-ai/browser",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.12",
|
|
4
4
|
"description": "Browser automation for Poncho agents, powered by agent-browser",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"agent-browser": "^0.15.1",
|
|
24
|
-
"@poncho-ai/sdk": "1.8.
|
|
24
|
+
"@poncho-ai/sdk": "1.8.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"tsup": "^8.0.0",
|
package/src/tools.ts
CHANGED
|
@@ -10,7 +10,8 @@ export function createBrowserTools(
|
|
|
10
10
|
{
|
|
11
11
|
name: "browser_open",
|
|
12
12
|
description:
|
|
13
|
-
"Open a URL in a headless browser. Returns the page title. Use this to navigate to websites and web applications."
|
|
13
|
+
"Open a URL in a headless browser. Returns the page title. Use this to navigate to websites and web applications. " +
|
|
14
|
+
"To open files from the virtual filesystem, use /api/vfs/{path} (e.g. /api/vfs/downloads/report.pdf).",
|
|
14
15
|
inputSchema: {
|
|
15
16
|
type: "object",
|
|
16
17
|
properties: {
|
package/.turbo/turbo-test.log
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
> @poncho-ai/browser@0.6.10 test /Users/cesar/Dev/latitude/poncho-ai/packages/browser
|
|
3
|
-
> vitest --passWithNoTests
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
DEV v1.6.1 /Users/cesar/Dev/latitude/poncho-ai/packages/browser
|
|
7
|
-
|
|
8
|
-
include: **/*.{test,spec}.?(c|m)[jt]s?(x)
|
|
9
|
-
exclude: **/node_modules/**, **/dist/**, **/cypress/**, **/.{idea,git,cache,output,temp}/**, **/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build,eslint,prettier}.config.*
|
|
10
|
-
watch exclude: **/node_modules/**, **/dist/**
|
|
11
|
-
No test files found, exiting with code 0
|
|
12
|
-
|