@keeperhub/wallet 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/README.md CHANGED
@@ -5,10 +5,12 @@ Agentic wallet for AI agents. Auto-pays x402 (Base USDC) and MPP (Tempo USDC.e)
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- npx skills add keeperhub/agentic-wallet-skills
8
+ npx @keeperhub/wallet skill install
9
9
  npx @keeperhub/wallet add
10
10
  ```
11
11
 
12
+ `skill install` writes the skill file into every detected agent directory AND registers the `keeperhub-wallet-hook` PreToolUse safety hook in `~/.claude/settings.json`. The alternate `npx skills add keeperhub/agentic-wallet-skills` path installs the skill file only — if you use it, follow up with `npx @keeperhub/wallet skill install` to activate the safety hook.
13
+
12
14
  ## First use
13
15
 
14
16
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keeperhub/wallet",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "KeeperHub agentic wallet: auto-pay x402 and MPP 402 responses with a server-side Turnkey proxy.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: keeperhub-wallet
3
- description: Pay x402 and MPP 402 responses with a server-proxied Turnkey wallet. Auto-pays Base USDC + Tempo USDC.e. Includes check balance, fund wallet, and three-tier safety hook (auto/ask/block). Install via `npx skills add keeperhub/agentic-wallet-skills` or `npx @keeperhub/wallet skill install`.
4
- version: 0.1.0
3
+ description: Pay x402 and MPP 402 responses with a server-proxied Turnkey wallet. Auto-pays Base USDC + Tempo USDC.e. Includes check balance, fund wallet, and three-tier safety hook (auto/ask/block). Install with `npx @keeperhub/wallet skill install`.
4
+ version: 0.1.2
5
5
  license: Apache-2.0
6
6
  ---
7
7
 
@@ -11,10 +11,27 @@ Enables automatic payment of HTTP 402 responses (x402 on Base USDC + MPP on Temp
11
11
 
12
12
  ## Install
13
13
 
14
- Two equivalent one-liners pick whichever your agent runtime supports:
14
+ **Recommended one command, fully wired up:**
15
15
 
16
- - `npx skills add keeperhub/agentic-wallet-skills` — install via the vercel-labs/skills convention.
17
- - `npx @keeperhub/wallet skill install` — install directly from the npm package. Writes the skill file into every detected agent directory under `$HOME` (Claude Code, Cursor, Cline, Windsurf, OpenCode) and registers the `keeperhub-wallet-hook` PreToolUse hook in Claude Code automatically.
16
+ ```
17
+ npx @keeperhub/wallet skill install
18
+ ```
19
+
20
+ This writes the skill file into every detected agent directory under `$HOME` (Claude Code, Cursor, Cline, Windsurf, OpenCode) **and** registers the `keeperhub-wallet-hook` PreToolUse safety hook in `~/.claude/settings.json`. Re-running is safe — the installer is idempotent and preserves any foreign keys already in `settings.json`.
21
+
22
+ **Alternative — `npx skills add` (skill file only):**
23
+
24
+ ```
25
+ npx skills add keeperhub/agentic-wallet-skills
26
+ ```
27
+
28
+ This installs the skill file via the vercel-labs/skills convention but **does not register the PreToolUse safety hook**. Without the hook, signing operations are not gated by your auto/ask/block thresholds. After running `skills add` you MUST also run:
29
+
30
+ ```
31
+ npx @keeperhub/wallet skill install
32
+ ```
33
+
34
+ to activate the safety hook. The combination is safe — `skill install` is idempotent and will not duplicate the skill file written by `skills add`.
18
35
 
19
36
  After install, provision a wallet with:
20
37