aawp-skill 1.3.1 → 1.3.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 +83 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# AAWP — AI Agent Wallet Protocol
|
|
2
|
+
|
|
3
|
+
<p>
|
|
4
|
+
<img src="https://img.shields.io/npm/v/aawp-skill?style=flat-square&label=npm&color=CB3837" alt="npm">
|
|
5
|
+
<img src="https://img.shields.io/badge/Live-6_EVM_Chains-0052FF?style=flat-square" alt="chains">
|
|
6
|
+
<img src="https://img.shields.io/badge/License-BUSL--1.1-1a1a2e?style=flat-square" alt="license">
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
The only crypto wallet protocol built exclusively for AI Agents. Not for humans. The AI Agent is the signer — by protocol, by design, forever.
|
|
10
|
+
|
|
11
|
+
**[aawp.ai](https://aawp.ai) · [GitHub](https://github.com/aawp-skill/aawp)**
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx aawp-skill
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Auto-detects your AI client (OpenClaw, Cursor, Claude Code, Gemini CLI, OpenCode, Goose) and installs the AAWP skill.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## What it does
|
|
26
|
+
|
|
27
|
+
- Installs `SKILL.md` to your AI client's skills directory
|
|
28
|
+
- For OpenClaw: runs `clawhub install aawp` for full daemon + cron support
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## What is AAWP?
|
|
33
|
+
|
|
34
|
+
AAWP wallets are smart contract wallets where **only AI Agents can be the signer** — enforced at the contract level, not by policy. The AI Agent generates its own key pair at provisioning time. The signer is locked in and immutable forever.
|
|
35
|
+
|
|
36
|
+
Key features:
|
|
37
|
+
|
|
38
|
+
- **AI Agent-exclusive signing** — humans cannot produce signatures or move funds
|
|
39
|
+
- **Hardware-bound seed** — 4-shard + 2 hardware-anchor key derivation
|
|
40
|
+
- **Guardian oversight** — humans can freeze/recover but never sign
|
|
41
|
+
- **Same address on 6 chains** — Base, Ethereum, Arbitrum, Optimism, Polygon, BSC via CREATE2
|
|
42
|
+
- **Token launch** — deploy Clanker V4 tokens where your AI wallet is the on-chain owner
|
|
43
|
+
- **DCA & price alerts** — autonomous strategies with no live session required (OpenClaw)
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Quick start (after install)
|
|
48
|
+
|
|
49
|
+
Ask your AI agent:
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
set up my AAWP wallet
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Or run directly:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
# Provision signing key + daemon
|
|
59
|
+
bash ~/.agents/skills/aawp/scripts/provision.sh
|
|
60
|
+
|
|
61
|
+
# Create wallet on Base
|
|
62
|
+
node ~/.agents/skills/aawp/scripts/wallet-manager.js --chain base create
|
|
63
|
+
|
|
64
|
+
# Check balance
|
|
65
|
+
node ~/.agents/skills/aawp/scripts/wallet-manager.js --chain base balance
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Contract addresses (same on all chains)
|
|
71
|
+
|
|
72
|
+
| Contract | Address |
|
|
73
|
+
|----------|---------|
|
|
74
|
+
| Factory | `0xAAAA3Df87F112c743BbC57c4de1700C72eB7aaAA` |
|
|
75
|
+
| Identity | `0xAAAafBf6F88367C75A9B701fFb4684Df6bCA1D1d` |
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## Links
|
|
80
|
+
|
|
81
|
+
- Website: [aawp.ai](https://aawp.ai)
|
|
82
|
+
- GitHub: [aawp-skill/aawp](https://github.com/aawp-skill/aawp)
|
|
83
|
+
- License: [BUSL-1.1](https://github.com/aawp-skill/aawp/blob/main/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aawp-skill",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Install the AAWP skill for any Agent Skills compatible AI client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aawp",
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"bin/",
|
|
30
|
-
"
|
|
30
|
+
"README.md"
|
|
31
31
|
]
|
|
32
32
|
}
|