@sleepinsummer/agent-browser-cli 0.2.3 → 0.2.4
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 +1 -1
- package/README_EN.md +2 -2
- package/npm/bin/agent-browser-cli.js +1 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<p>
|
|
10
10
|
<a href="https://github.com/sleepinginsummer/agent-browser-cli"><img src="https://img.shields.io/badge/CLI-agentbrowsercli-2ea44f" alt="CLI agentbrowsercli"></a>
|
|
11
11
|
<a href="https://github.com/sleepinginsummer/agent-browser-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green" alt="License MIT"></a>
|
|
12
|
-
<a href="https://github.com/sleepinginsummer/agent-browser-cli"><img src="https://img.shields.io/badge/
|
|
12
|
+
<a href="https://github.com/sleepinginsummer/agent-browser-cli"><img src="https://img.shields.io/badge/sys-win%2Fmac-0078D6?labelColor=0078D6&color=C0C0C0" alt="sys win/mac"></a>
|
|
13
13
|
<a href="https://github.com/sleepinginsummer/agent-browser-cli/releases"><img src="https://img.shields.io/badge/release-v0.2.3-blue" alt="release v0.2.3"></a>
|
|
14
14
|
<a href="https://github.com/sleepinginsummer/agent-browser-cli/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen" alt="PRs welcome"></a>
|
|
15
15
|
</p>
|
package/README_EN.md
CHANGED
|
@@ -9,7 +9,7 @@ Browser perception · Page control · Chrome session reuse · CDP · Conditional
|
|
|
9
9
|
<p>
|
|
10
10
|
<a href="https://github.com/sleepinginsummer/agent-browser-cli"><img src="https://img.shields.io/badge/CLI-agentbrowsercli-2ea44f" alt="CLI agentbrowsercli"></a>
|
|
11
11
|
<a href="https://github.com/sleepinginsummer/agent-browser-cli/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green" alt="License MIT"></a>
|
|
12
|
-
<a href="https://github.com/sleepinginsummer/agent-browser-cli"><img src="https://img.shields.io/badge/
|
|
12
|
+
<a href="https://github.com/sleepinginsummer/agent-browser-cli"><img src="https://img.shields.io/badge/sys-win%2Fmac-0078D6?labelColor=0078D6&color=C0C0C0" alt="sys win/mac"></a>
|
|
13
13
|
<a href="https://github.com/sleepinginsummer/agent-browser-cli/releases"><img src="https://img.shields.io/badge/release-v0.2.3-blue" alt="release v0.2.3"></a>
|
|
14
14
|
<a href="https://github.com/sleepinginsummer/agent-browser-cli/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen" alt="PRs welcome"></a>
|
|
15
15
|
</p>
|
|
@@ -27,7 +27,7 @@ This project is not Selenium or Playwright. It is better suited for helping agen
|
|
|
27
27
|
## Project Info
|
|
28
28
|
|
|
29
29
|
- Current version: `0.2.3`
|
|
30
|
-
- Supported platforms:
|
|
30
|
+
- Supported platforms: sys win/mac
|
|
31
31
|
- Browser: Chrome / Chromium, with `assets/tmwd_cdp_bridge` loaded
|
|
32
32
|
|
|
33
33
|
## Acknowledgements
|
|
@@ -9,6 +9,7 @@ function platformPackageName() {
|
|
|
9
9
|
const arch = process.arch;
|
|
10
10
|
if (platform === "darwin" && arch === "arm64") return "@sleepinsummer/agent-browser-cli-darwin-arm64";
|
|
11
11
|
if (platform === "darwin" && arch === "x64") return "@sleepinsummer/agent-browser-cli-darwin-x64";
|
|
12
|
+
if (platform === "linux" && arch === "x64") return "@sleepinsummer/agent-browser-cli-linux-x64";
|
|
12
13
|
if (platform === "win32" && arch === "x64") return "@sleepinsummer/agent-browser-cli-win32-x64";
|
|
13
14
|
throw new Error(`Unsupported platform: ${platform}-${arch}`);
|
|
14
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sleepinsummer/agent-browser-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Agent-oriented browser sensing and control CLI backed by a native Rust daemon.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -21,9 +21,10 @@
|
|
|
21
21
|
"postinstall": "node npm/postinstall.js"
|
|
22
22
|
},
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"@sleepinsummer/agent-browser-cli-darwin-arm64": "0.2.
|
|
25
|
-
"@sleepinsummer/agent-browser-cli-darwin-x64": "0.2.
|
|
26
|
-
"@sleepinsummer/agent-browser-cli-
|
|
24
|
+
"@sleepinsummer/agent-browser-cli-darwin-arm64": "0.2.4",
|
|
25
|
+
"@sleepinsummer/agent-browser-cli-darwin-x64": "0.2.4",
|
|
26
|
+
"@sleepinsummer/agent-browser-cli-linux-x64": "0.2.4",
|
|
27
|
+
"@sleepinsummer/agent-browser-cli-win32-x64": "0.2.4"
|
|
27
28
|
},
|
|
28
29
|
"engines": {
|
|
29
30
|
"node": ">=18"
|