aether-browser 0.2.0__tar.gz → 0.2.2__tar.gz
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.
- {aether_browser-0.2.0 → aether_browser-0.2.2}/PKG-INFO +5 -3
- {aether_browser-0.2.0 → aether_browser-0.2.2}/README.md +4 -2
- {aether_browser-0.2.0 → aether_browser-0.2.2}/pyproject.toml +1 -1
- {aether_browser-0.2.0 → aether_browser-0.2.2}/src/aether_browser/__init__.py +1 -1
- {aether_browser-0.2.0 → aether_browser-0.2.2}/src/aether_browser/cli.py +1 -1
- {aether_browser-0.2.0 → aether_browser-0.2.2}/tests/test_mcp.py +1 -1
- {aether_browser-0.2.0 → aether_browser-0.2.2}/.gitignore +0 -0
- {aether_browser-0.2.0 → aether_browser-0.2.2}/LICENSE +0 -0
- {aether_browser-0.2.0 → aether_browser-0.2.2}/src/aether_browser/_client.py +0 -0
- {aether_browser-0.2.0 → aether_browser-0.2.2}/src/aether_browser/mcp.py +0 -0
- {aether_browser-0.2.0 → aether_browser-0.2.2}/src/aether_browser/py.typed +0 -0
- {aether_browser-0.2.0 → aether_browser-0.2.2}/tests/test_client.py +0 -0
- {aether_browser-0.2.0 → aether_browser-0.2.2}/tests/test_packaging.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aether-browser
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Client and CLI for Agent Browser by Aether AI: drive one self-hosted Chrome session over a closed HTTP API and watch or take over that same session through noVNC.
|
|
5
5
|
Project-URL: Homepage, https://github.com/AetherAI3/agent-browser
|
|
6
6
|
Project-URL: Repository, https://github.com/AetherAI3/agent-browser
|
|
@@ -25,6 +25,8 @@ Classifier: Typing :: Typed
|
|
|
25
25
|
Requires-Python: >=3.10
|
|
26
26
|
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
28
|
+
<!-- mcp-name: io.github.AetherAI3/agent-browser -->
|
|
29
|
+
|
|
28
30
|
# aether-browser
|
|
29
31
|
|
|
30
32
|
Client and CLI for **[Agent Browser](https://github.com/AetherAI3/agent-browser) by Aether AI** —
|
|
@@ -146,8 +148,8 @@ rejects unknown fields.
|
|
|
146
148
|
|
|
147
149
|
## Status
|
|
148
150
|
|
|
149
|
-
`0.2.
|
|
150
|
-
|
|
151
|
+
`0.2.2` tracks Agent Browser `v0.2.2` and its `api_version: "v1"` contract, and is versioned in
|
|
152
|
+
lockstep with the npm client. Issues and design discussion are welcome on
|
|
151
153
|
[the repository](https://github.com/AetherAI3/agent-browser/issues).
|
|
152
154
|
|
|
153
155
|
Apache-2.0 · [Aether AI](https://github.com/AetherAI3)
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
<!-- mcp-name: io.github.AetherAI3/agent-browser -->
|
|
2
|
+
|
|
1
3
|
# aether-browser
|
|
2
4
|
|
|
3
5
|
Client and CLI for **[Agent Browser](https://github.com/AetherAI3/agent-browser) by Aether AI** —
|
|
@@ -119,8 +121,8 @@ rejects unknown fields.
|
|
|
119
121
|
|
|
120
122
|
## Status
|
|
121
123
|
|
|
122
|
-
`0.2.
|
|
123
|
-
|
|
124
|
+
`0.2.2` tracks Agent Browser `v0.2.2` and its `api_version: "v1"` contract, and is versioned in
|
|
125
|
+
lockstep with the npm client. Issues and design discussion are welcome on
|
|
124
126
|
[the repository](https://github.com/AetherAI3/agent-browser/issues).
|
|
125
127
|
|
|
126
128
|
Apache-2.0 · [Aether AI](https://github.com/AetherAI3)
|
|
@@ -7,7 +7,7 @@ build-backend = "hatchling.build"
|
|
|
7
7
|
# tests/test_packaging.py fails the build if the two ever drift apart.
|
|
8
8
|
[project]
|
|
9
9
|
name = "aether-browser"
|
|
10
|
-
version = "0.2.
|
|
10
|
+
version = "0.2.2"
|
|
11
11
|
description = "Client and CLI for Agent Browser by Aether AI: drive one self-hosted Chrome session over a closed HTTP API and watch or take over that same session through noVNC."
|
|
12
12
|
readme = "README.md"
|
|
13
13
|
requires-python = ">=3.10"
|
|
@@ -25,7 +25,7 @@ REPO = "https://github.com/AetherAI3/agent-browser"
|
|
|
25
25
|
NOVNC_URL = "http://127.0.0.1:6080/vnc.html"
|
|
26
26
|
# The published source tag for this client. `up` builds this exact tree, so the container
|
|
27
27
|
# and the client always speak the same api_version.
|
|
28
|
-
SOURCE_TAG = "v0.2.
|
|
28
|
+
SOURCE_TAG = "v0.2.2"
|
|
29
29
|
|
|
30
30
|
_COLOR = sys.stdout.isatty() and not os.environ.get("NO_COLOR")
|
|
31
31
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|