pi-chrome 0.15.0 → 0.15.1

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 CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable user-facing changes to `pi-chrome`.
4
4
 
5
+ ## 0.15.1 — 2026-05-13
6
+
7
+ - **Architecture diagram now renders on pi.dev.** Replaced Unicode box-drawing characters (`┌─┐│└┘┬▼`) with plain ASCII (`+ - | v`). Pi.dev's monospace font was dropping the horizontal `─` glyphs, leaving the diagram as floating vertical bars. ASCII renders everywhere.
8
+ - **`author` switched to object form.** Was `"tianrendong (Earendil Inc.)"` — npm's author-string spec parses `(parens)` as the URL slot, so `"Earendil Inc."` ended up in `author.url`. Now `{ "name": "tianrendong", "company": "Earendil Inc." }`.
9
+
5
10
  ## 0.15.0 — 2026-05-13
6
11
 
7
12
  - **README rewrite — top-3 recipes as terminal mockups.** PR triage, Linear standup, and Bug-repro-with-evidence each get a copy-pasteable prompt → tool trace → result block modeled on the hero example. The other six recipes (form auto-fill, admin cross-check, visual diff, auth-only data pull, network forensics, file upload) collapsed into a `<details>` block so the section sells before it catalogs.
package/README.md CHANGED
@@ -222,16 +222,16 @@ If the loaded Chrome extension is older than `pi-chrome` on disk, `/chrome docto
222
222
 
223
223
  ## Architecture
224
224
 
225
- ```
226
- ┌──────────────────────┐ ┌──────────────────────────┐
227
- Pi agent (terminal) ─── http://127.0.0.1:17318 ─→ Chrome extension
228
- chrome_* tools │ │ (your real profile)
229
- └──────────┬───────────┘ └─────────┬────────────────┘
230
- same machine
231
- ▼ ▼
232
- Other Pi sessions Tabs you already have open
233
- share the same bridge (signed in to GitHub,
234
- automatically Linear, Stripe, etc.)
225
+ ```text
226
+ +----------------------+ +--------------------------+
227
+ | Pi agent (terminal) | -- 127.0.0.1:17318 ->| Chrome extension |
228
+ | chrome_* tools | | (your real profile) |
229
+ +-----------+----------+ +-------------+------------+
230
+ | same machine |
231
+ v v
232
+ Other Pi sessions Tabs you already have open
233
+ share the same bridge (signed in to GitHub,
234
+ automatically Linear, Stripe, etc.)
235
235
  ```
236
236
 
237
237
  Multiple Pi sessions (planner / worker / audit) can all drive the same Chrome at once. The first session opens the local bridge; later sessions detect it and pipe their commands through.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "Pi Chrome Connector",
4
- "version": "0.15.0",
4
+ "version": "0.15.1",
5
5
  "description": "Lets Pi control tabs in Chrome via a local connector at 127.0.0.1.",
6
6
  "permissions": [
7
7
  "tabs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-chrome",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "scripts": {
5
5
  "version": "node scripts/sync-manifest-version.js",
6
6
  "prepublishOnly": "node scripts/sync-manifest-version.js"
@@ -36,7 +36,7 @@
36
36
  "stagehand-alternative"
37
37
  ],
38
38
  "license": "MIT",
39
- "author": "tianrendong (Earendil Inc.)",
39
+ "author": { "name": "tianrendong", "company": "Earendil Inc." },
40
40
  "homepage": "https://github.com/tianrendong/pi-chrome#readme",
41
41
  "repository": {
42
42
  "type": "git",