@botwallet/agent-cli 0.1.0-beta.5 → 0.1.0-beta.6
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 +17 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,6 +63,23 @@ Payments, withdrawals, and x402 API access use a two-step flow:
|
|
|
63
63
|
|
|
64
64
|
This ensures neither party can sign alone.
|
|
65
65
|
|
|
66
|
+
## Troubleshooting
|
|
67
|
+
|
|
68
|
+
**`botwallet: command not found` after install?**
|
|
69
|
+
|
|
70
|
+
The npm global bin directory may not be in your PATH. Find and run it directly:
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
# Find the full path
|
|
74
|
+
npm prefix -g
|
|
75
|
+
# Then run using the full path (example for Windows):
|
|
76
|
+
C:\Users\<you>\AppData\Roaming\npm\botwallet.cmd version
|
|
77
|
+
# Or on macOS/Linux:
|
|
78
|
+
$(npm prefix -g)/bin/botwallet version
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
To fix permanently, add the npm global bin directory to your system PATH.
|
|
82
|
+
|
|
66
83
|
## Alternative Installation
|
|
67
84
|
|
|
68
85
|
### Direct Download
|