@haven_ai/connect 0.1.1-alpha → 0.1.3-alpha
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/README.md +4 -4
- package/dist/cli.cjs +724 -106
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +726 -108
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +724 -106
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +43 -2
- package/dist/index.d.ts +43 -2
- package/dist/index.js +726 -108
- package/dist/index.js.map +1 -1
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ public signing address, proof signature, and API-key hash. Haven never receives
|
|
|
8
8
|
the private key or plaintext API key.
|
|
9
9
|
|
|
10
10
|
```sh
|
|
11
|
-
npx -y @haven_ai/connect@0.1.
|
|
11
|
+
npx -y @haven_ai/connect@0.1.3-alpha --setup hv_setup_... --api https://api.haven.example --ack-local-tools --runtime claude-code
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
The connector writes owner-only credential files outside the project by default:
|
|
@@ -22,6 +22,6 @@ the locally held signer key and the user-approved on-chain Haven wallet rules.
|
|
|
22
22
|
Use `--credentials-dir <path>` to choose a different local credential directory.
|
|
23
23
|
Do not point it at a project repository, shared folder, or cloud-synced folder.
|
|
24
24
|
|
|
25
|
-
Use `--ack-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
Use `--ack-local-tools` with Haven-generated setup prompts. It prepares the
|
|
26
|
+
local Haven tools acknowledgement during setup so Codex and Claude Code can load
|
|
27
|
+
Haven after a normal restart.
|