pi-agent-browser-native 0.1.1 → 0.1.2
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/CHANGELOG.md +7 -0
- package/README.md +5 -5
- package/docs/ARCHITECTURE.md +1 -1
- package/docs/RELEASE.md +1 -1
- package/docs/REQUIREMENTS.md +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2 - 2026-04-11
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- renamed the public GitHub repository to `pi-agent-browser-native` so the repo name, npm package name, install docs, and package metadata all align
|
|
7
|
+
- updated package metadata and install guidance to use the new GitHub source path `https://github.com/fitchmultz/pi-agent-browser-native`
|
|
8
|
+
- switched the local global pi install from the repo checkout path to the published npm package `pi-agent-browser-native`
|
|
9
|
+
|
|
3
10
|
## 0.1.1 - 2026-04-11
|
|
4
11
|
|
|
5
12
|
### Changed
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# pi-agent-browser
|
|
1
|
+
# pi-agent-browser-native
|
|
2
2
|
|
|
3
3
|
Native `pi` integration for [`agent-browser`](https://agent-browser.dev/).
|
|
4
4
|
|
|
@@ -66,13 +66,13 @@ pi -e npm:pi-agent-browser-native
|
|
|
66
66
|
For the source install path, prefer the repository URL:
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
|
-
pi install https://github.com/fitchmultz/pi-agent-browser
|
|
69
|
+
pi install https://github.com/fitchmultz/pi-agent-browser-native
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
To try the GitHub source without installing it permanently:
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
pi -e https://github.com/fitchmultz/pi-agent-browser
|
|
75
|
+
pi -e https://github.com/fitchmultz/pi-agent-browser-native
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
### Current practical local-checkout flow
|
|
@@ -80,13 +80,13 @@ pi -e https://github.com/fitchmultz/pi-agent-browser
|
|
|
80
80
|
Until you are using a published package release, install from a checkout:
|
|
81
81
|
|
|
82
82
|
```bash
|
|
83
|
-
pi install /absolute/path/to/pi-agent-browser
|
|
83
|
+
pi install /absolute/path/to/pi-agent-browser-native
|
|
84
84
|
```
|
|
85
85
|
|
|
86
86
|
Or try it for one session only:
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
|
-
pi -e /absolute/path/to/pi-agent-browser
|
|
89
|
+
pi -e /absolute/path/to/pi-agent-browser-native
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
The native tool exposed to the agent is named `agent_browser`.
|
package/docs/ARCHITECTURE.md
CHANGED
|
@@ -104,7 +104,7 @@ This keeps the product centered on native tool usage instead of auxiliary skill
|
|
|
104
104
|
|
|
105
105
|
## Responsibility split
|
|
106
106
|
|
|
107
|
-
### `pi-agent-browser` owns
|
|
107
|
+
### `pi-agent-browser-native` owns
|
|
108
108
|
|
|
109
109
|
- tool registration and schema
|
|
110
110
|
- subprocess execution and JSON parsing
|
package/docs/RELEASE.md
CHANGED
|
@@ -8,7 +8,7 @@ Related docs:
|
|
|
8
8
|
|
|
9
9
|
## Purpose
|
|
10
10
|
|
|
11
|
-
Provide one concrete maintainer workflow for validating repo state, package contents, and install guidance before publishing `pi-agent-browser`.
|
|
11
|
+
Provide one concrete maintainer workflow for validating repo state, package contents, and install guidance before publishing `pi-agent-browser-native`.
|
|
12
12
|
|
|
13
13
|
## Pre-release checks
|
|
14
14
|
|
package/docs/REQUIREMENTS.md
CHANGED
|
@@ -8,7 +8,7 @@ Related docs:
|
|
|
8
8
|
|
|
9
9
|
## Purpose
|
|
10
10
|
|
|
11
|
-
Define the product requirements and constraints for `pi-agent-browser`.
|
|
11
|
+
Define the product requirements and constraints for `pi-agent-browser-native`.
|
|
12
12
|
|
|
13
13
|
## Product requirements
|
|
14
14
|
|
|
@@ -45,7 +45,7 @@ Define the product requirements and constraints for `pi-agent-browser`.
|
|
|
45
45
|
|
|
46
46
|
- Prioritize the package install path first.
|
|
47
47
|
- User-facing install docs should lead with `pi install npm:pi-agent-browser-native` and `pi -e npm:pi-agent-browser-native` once releases exist.
|
|
48
|
-
- User-facing install docs should also include the GitHub source path `pi install https://github.com/fitchmultz/pi-agent-browser`.
|
|
48
|
+
- User-facing install docs should also include the GitHub source path `pi install https://github.com/fitchmultz/pi-agent-browser-native`.
|
|
49
49
|
- Keep the current local-checkout path documented as the practical pre-release and development flow.
|
|
50
50
|
- Most users will install this extension globally rather than as a project-local extension.
|
|
51
51
|
- Repo-local `.pi/` wiring is for development convenience only and should not drive the product design.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-agent-browser-native",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Native pi integration for agent-browser",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Mitch Fultz (https://github.com/fitchmultz)",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/fitchmultz/pi-agent-browser.git"
|
|
18
|
+
"url": "git+https://github.com/fitchmultz/pi-agent-browser-native.git"
|
|
19
19
|
},
|
|
20
|
-
"homepage": "https://github.com/fitchmultz/pi-agent-browser#readme",
|
|
20
|
+
"homepage": "https://github.com/fitchmultz/pi-agent-browser-native#readme",
|
|
21
21
|
"bugs": {
|
|
22
|
-
"url": "https://github.com/fitchmultz/pi-agent-browser/issues"
|
|
22
|
+
"url": "https://github.com/fitchmultz/pi-agent-browser-native/issues"
|
|
23
23
|
},
|
|
24
24
|
"engines": {
|
|
25
25
|
"node": ">=20.6.0"
|