agent-browser-stealth 0.15.1-fork.8 → 0.15.1-fork.9
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/bin/agent-browser-darwin-arm64 +0 -0
- package/bin/agent-browser-local +0 -0
- package/package.json +29 -30
- package/scripts/build-all-platforms.sh +0 -0
- package/scripts/check-sannysoft-webdriver.js +0 -0
- package/scripts/sync-upstream.sh +0 -0
- package/skills/agent-browser/templates/authenticated-session.sh +0 -0
- package/skills/agent-browser/templates/capture-workflow.sh +0 -0
- package/skills/agent-browser/templates/form-automation.sh +0 -0
|
Binary file
|
package/bin/agent-browser-local
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-browser-stealth",
|
|
3
|
-
"version": "0.15.1-fork.
|
|
3
|
+
"version": "0.15.1-fork.9",
|
|
4
4
|
"description": "Stealth browser automation CLI for AI agents with anti-bot evasions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/daemon.js",
|
|
@@ -14,34 +14,6 @@
|
|
|
14
14
|
"agent-browser-stealth": "./bin/agent-browser.js",
|
|
15
15
|
"agent-browser": "./bin/agent-browser.js"
|
|
16
16
|
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"prepare": "husky",
|
|
19
|
-
"version:sync": "node scripts/sync-version.js",
|
|
20
|
-
"version": "npm run version:sync && git add cli/Cargo.toml",
|
|
21
|
-
"build": "tsc",
|
|
22
|
-
"build:native": "npm run version:sync && cargo build --release --manifest-path cli/Cargo.toml && node scripts/copy-native.js",
|
|
23
|
-
"build:linux": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-linux",
|
|
24
|
-
"build:macos": "npm run version:sync && (cargo build --release --manifest-path cli/Cargo.toml --target aarch64-apple-darwin & cargo build --release --manifest-path cli/Cargo.toml --target x86_64-apple-darwin & wait) && cp cli/target/aarch64-apple-darwin/release/agent-browser bin/agent-browser-darwin-arm64 && cp cli/target/x86_64-apple-darwin/release/agent-browser bin/agent-browser-darwin-x64",
|
|
25
|
-
"build:windows": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-windows",
|
|
26
|
-
"build:all-platforms": "npm run version:sync && (npm run build:linux & npm run build:windows & wait) && npm run build:macos",
|
|
27
|
-
"build:docker": "docker build -t agent-browser-builder -f docker/Dockerfile.build .",
|
|
28
|
-
"release": "npm run version:sync && npm run build && npm run build:all-platforms && npm publish",
|
|
29
|
-
"start": "node dist/daemon.js",
|
|
30
|
-
"dev": "tsx src/daemon.ts",
|
|
31
|
-
"typecheck": "tsc --noEmit",
|
|
32
|
-
"format": "prettier --write 'src/**/*.ts'",
|
|
33
|
-
"format:check": "prettier --check 'src/**/*.ts'",
|
|
34
|
-
"test": "vitest run",
|
|
35
|
-
"test:watch": "vitest",
|
|
36
|
-
"test:e2e:dogfood": "vitest run test/e2e/dogfood.eval.ts",
|
|
37
|
-
"postinstall": "node scripts/postinstall.js",
|
|
38
|
-
"clawhub:sync": "bash scripts/clawhub-sync.sh",
|
|
39
|
-
"sync:upstream": "bash scripts/sync-upstream.sh",
|
|
40
|
-
"sync:upstream:push": "bash scripts/sync-upstream.sh --push",
|
|
41
|
-
"changeset": "changeset",
|
|
42
|
-
"ci:version": "changeset version && pnpm run version:sync && pnpm install --no-frozen-lockfile",
|
|
43
|
-
"ci:publish": "pnpm run version:sync && pnpm run build && changeset publish"
|
|
44
|
-
},
|
|
45
17
|
"keywords": [
|
|
46
18
|
"browser",
|
|
47
19
|
"automation",
|
|
@@ -84,5 +56,32 @@
|
|
|
84
56
|
},
|
|
85
57
|
"lint-staged": {
|
|
86
58
|
"src/**/*.ts": "prettier --write"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"version:sync": "node scripts/sync-version.js",
|
|
62
|
+
"version": "npm run version:sync && git add cli/Cargo.toml",
|
|
63
|
+
"build": "tsc",
|
|
64
|
+
"build:native": "npm run version:sync && cargo build --release --manifest-path cli/Cargo.toml && node scripts/copy-native.js",
|
|
65
|
+
"build:linux": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-linux",
|
|
66
|
+
"build:macos": "npm run version:sync && (cargo build --release --manifest-path cli/Cargo.toml --target aarch64-apple-darwin & cargo build --release --manifest-path cli/Cargo.toml --target x86_64-apple-darwin & wait) && cp cli/target/aarch64-apple-darwin/release/agent-browser bin/agent-browser-darwin-arm64 && cp cli/target/x86_64-apple-darwin/release/agent-browser bin/agent-browser-darwin-x64",
|
|
67
|
+
"build:windows": "npm run version:sync && docker compose -f docker/docker-compose.yml run --rm build-windows",
|
|
68
|
+
"build:all-platforms": "npm run version:sync && (npm run build:linux & npm run build:windows & wait) && npm run build:macos",
|
|
69
|
+
"build:docker": "docker build -t agent-browser-builder -f docker/Dockerfile.build .",
|
|
70
|
+
"release": "npm run version:sync && npm run build && npm run build:all-platforms && npm publish",
|
|
71
|
+
"start": "node dist/daemon.js",
|
|
72
|
+
"dev": "tsx src/daemon.ts",
|
|
73
|
+
"typecheck": "tsc --noEmit",
|
|
74
|
+
"format": "prettier --write 'src/**/*.ts'",
|
|
75
|
+
"format:check": "prettier --check 'src/**/*.ts'",
|
|
76
|
+
"test": "vitest run",
|
|
77
|
+
"test:watch": "vitest",
|
|
78
|
+
"test:e2e:dogfood": "vitest run test/e2e/dogfood.eval.ts",
|
|
79
|
+
"postinstall": "node scripts/postinstall.js",
|
|
80
|
+
"clawhub:sync": "bash scripts/clawhub-sync.sh",
|
|
81
|
+
"sync:upstream": "bash scripts/sync-upstream.sh",
|
|
82
|
+
"sync:upstream:push": "bash scripts/sync-upstream.sh --push",
|
|
83
|
+
"changeset": "changeset",
|
|
84
|
+
"ci:version": "changeset version && pnpm run version:sync && pnpm install --no-frozen-lockfile",
|
|
85
|
+
"ci:publish": "pnpm run version:sync && pnpm run build && changeset publish"
|
|
87
86
|
}
|
|
88
|
-
}
|
|
87
|
+
}
|
|
File without changes
|
|
File without changes
|
package/scripts/sync-upstream.sh
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|