@agentlayer.tech/wallet 0.1.7 → 0.1.9
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 +5 -5
- package/agent-wallet/pyproject.toml +1 -1
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@ Or install the CLI globally first:
|
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
51
|
npm install -g @agentlayer.tech/wallet
|
|
52
|
-
|
|
52
|
+
wallet install --yes
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
The npm CLI runs the same bundled installer, but uses a versioned runtime layout:
|
|
@@ -64,10 +64,10 @@ The npm CLI runs the same bundled installer, but uses a versioned runtime layout
|
|
|
64
64
|
Useful npm CLI commands:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
67
|
+
wallet status
|
|
68
|
+
wallet doctor
|
|
69
|
+
wallet update --yes
|
|
70
|
+
wallet rollback
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
Install from a local clone:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentlayer.tech/wallet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "NPM installer for the OpenClaw Agent Wallet local runtime.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -11,9 +11,7 @@
|
|
|
11
11
|
"url": "https://github.com/lopushok9/Agent-Layer/issues"
|
|
12
12
|
},
|
|
13
13
|
"homepage": "https://github.com/lopushok9/Agent-Layer#readme",
|
|
14
|
-
"bin":
|
|
15
|
-
"openclaw-agent-wallet": "./bin/openclaw-agent-wallet.mjs"
|
|
16
|
-
},
|
|
14
|
+
"bin": "./bin/openclaw-agent-wallet.mjs",
|
|
17
15
|
"scripts": {
|
|
18
16
|
"check": "node --check bin/openclaw-agent-wallet.mjs",
|
|
19
17
|
"check:release-version": "node scripts/check_release_version.mjs",
|