nodpay 0.2.19 → 0.2.21
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/SKILL.md +13 -11
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -5,7 +5,7 @@ metadata:
|
|
|
5
5
|
{
|
|
6
6
|
"openclaw":
|
|
7
7
|
{
|
|
8
|
-
"requires": { "bins": ["npx", "curl"] },
|
|
8
|
+
"requires": { "bins": ["npx", "curl"], "config": ["~/.nodpay/.env", "~/.nodpay/wallets/"] },
|
|
9
9
|
"homepage": "https://nodpay.ai",
|
|
10
10
|
"install": [{ "id": "node", "kind": "node", "package": "nodpay", "label": "Install NodPay CLI (npm)" }]
|
|
11
11
|
},
|
|
@@ -15,23 +15,25 @@ metadata:
|
|
|
15
15
|
}
|
|
16
16
|
---
|
|
17
17
|
|
|
18
|
-
# NodPay — Agent Wallet
|
|
18
|
+
# NodPay — Trusted Agent Wallet
|
|
19
19
|
|
|
20
|
-
> Two minds, one wallet.
|
|
20
|
+
> "Two minds, one wallet."
|
|
21
21
|
|
|
22
|
-
A
|
|
22
|
+
A multisig crypto wallet shared between humans and AI agents. Built on [Safe](https://safe.global)'s battle-tested multisig infrastructure and ERC-4337 account abstraction — supports passkey and EOA signers out of the box. Friendly to both first-time and crypto-native users.
|
|
23
23
|
|
|
24
24
|
You propose payments, your human approves with one tap. 2-of-3 multisig — you cannot spend alone.
|
|
25
25
|
|
|
26
26
|
## Trust Model
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
28
|
+
| Guarantee | How |
|
|
29
|
+
|-----------|-----|
|
|
30
|
+
| Agent key never in stdout | `keygen` writes to `~/.nodpay/.env` (chmod 600); CLI reads internally at runtime |
|
|
31
|
+
| Agent can only propose | Execution requires human co-sign (passkey); no single party can move funds |
|
|
32
|
+
| Wallet info is public key material | Safe address, passkey X/Y, recovery signer are public keys — safe to store and pass in URLs |
|
|
33
|
+
| Recovery is user-held | 12-word phrase generates a third signer; user can recover funds if agent key or passkey is lost |
|
|
34
|
+
| Server is a stateless relay | Forwards signed operations — no keys, no custody, no accounts; funds safe if server goes offline |
|
|
35
|
+
| Web app is a convenience layer | Wallet creation and approval UI; all crypto operations happen client-side |
|
|
36
|
+
| Verify agent address | Always confirm the agent address in wallet info matches yours before storing |
|
|
35
37
|
|
|
36
38
|
## Why NodPay
|
|
37
39
|
|