hallpass-client 0.5.0 → 0.6.0

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 +6 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -11,8 +11,12 @@ It is on [npm](https://www.npmjs.com/package/hallpass-client). Its version match
11
11
  release, so in a project pin the one you run (`npm install hallpass-client@0.4.0`). From 0.4.1 on,
12
12
  the hallpass release workflow publishes it with npm provenance.
13
13
 
14
- It needs a running hallpass service. The client has no dependencies; it uses Node's built-in `fetch`
15
- (Node 18.17 or later). It ships as an ES module with type declarations.
14
+ It needs a running hallpass server: the `ghcr.io/roee-hersh/hallpass` image, the Helm chart, or
15
+ `pip install hallpass` and `hallpass serve -config hallpass.yaml` (hallpass itself is a Python
16
+ package; in Python you can also run its engine in-process, with no server). The client has no
17
+ dependencies; it uses Node's built-in `fetch` (Node 18.17 or later). It ships as an ES module with
18
+ type declarations. Its source is in
19
+ [`hallpass-ts`](https://github.com/roee-hersh/hallpass/tree/main/hallpass-ts).
16
20
 
17
21
  ```ts
18
22
  import { AsyncLocalStorage } from "node:async_hooks";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hallpass-client",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Check with hallpass whether a user may do something before your AI agent does it for them.",
5
5
  "keywords": [
6
6
  "ai-agents",
@@ -10,12 +10,12 @@
10
10
  "tools",
11
11
  "mcp"
12
12
  ],
13
- "homepage": "https://github.com/roee-hersh/hallpass/tree/main/sdk/node",
13
+ "homepage": "https://github.com/roee-hersh/hallpass/tree/main/hallpass-ts",
14
14
  "bugs": "https://github.com/roee-hersh/hallpass/issues",
15
15
  "repository": {
16
16
  "type": "git",
17
17
  "url": "git+https://github.com/roee-hersh/hallpass.git",
18
- "directory": "sdk/node"
18
+ "directory": "hallpass-ts"
19
19
  },
20
20
  "license": "Apache-2.0",
21
21
  "type": "module",