@gamalan/pi-gateway 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -15,10 +15,10 @@ Hermes-style messaging gateway for pi — a multi-platform agent with per-chat s
15
15
 
16
16
  ## Installation
17
17
 
18
- Pi supports installing extensions directly from GitHub:
18
+ Install from npm (recommended):
19
19
 
20
20
  ```bash
21
- pi install git:github.com/gamalan/pi-gateway
21
+ pi install npm:@gamalan/pi-gateway
22
22
  ```
23
23
 
24
24
  Or clone and build manually:
@@ -26,7 +26,7 @@ Or clone and build manually:
26
26
  ```bash
27
27
  git clone https://github.com/gamalan/pi-gateway.git
28
28
  cd pi-gateway
29
- bun install && bun run build
29
+ npm install && npm run build
30
30
  pi install .
31
31
  ```
32
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gamalan/pi-gateway",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Hermes-style messaging gateway for pi - multi-platform agent with sessions, security, and background tasks",
5
5
  "author": "0xKobold <original>; forked by gamalan",
6
6
  "license": "MIT",
@@ -52,6 +52,6 @@
52
52
  },
53
53
  "repository": {
54
54
  "type": "git",
55
- "url": "https://github.com/gamalan/pi-gateway.git"
55
+ "url": "git+https://github.com/gamalan/pi-gateway.git"
56
56
  }
57
57
  }