@x402sentinel/openclaw-sentinel 0.1.0 → 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/LICENSE +21 -0
- package/README.md +26 -7
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Valeo
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://sentinel.valeocash.com/sentinel_logo.png" width="80" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<p align="center">
|
|
6
|
+
<strong>@x402sentinel/openclaw-sentinel</strong><br/>
|
|
7
|
+
Budget enforcement & audit trails for OpenClaw x402 payments.
|
|
8
|
+
</p>
|
|
9
|
+
|
|
10
|
+
<p align="center">
|
|
11
|
+
<a href="https://www.npmjs.com/package/@x402sentinel/openclaw-sentinel">
|
|
12
|
+
<img src="https://img.shields.io/npm/v/@x402sentinel/openclaw-sentinel?color=red" alt="npm" />
|
|
13
|
+
</a>
|
|
14
|
+
<a href="https://opensource.org/licenses/MIT">
|
|
15
|
+
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT" />
|
|
16
|
+
</a>
|
|
17
|
+
<img src="https://img.shields.io/badge/x402-compatible-blue" alt="x402 compatible" />
|
|
18
|
+
<img src="https://img.shields.io/badge/openclaw-extension-purple" alt="openclaw extension" />
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
---
|
|
4
22
|
|
|
5
23
|
Wraps every x402 HTTP payment your OpenClaw agent makes with Sentinel's
|
|
6
24
|
spend controls and audit logging. No code changes to your agent — just
|
|
@@ -16,7 +34,7 @@ openclaw plugin install @x402sentinel/openclaw-sentinel
|
|
|
16
34
|
|
|
17
35
|
Add the plugin to your OpenClaw config:
|
|
18
36
|
|
|
19
|
-
```
|
|
37
|
+
```jsonc
|
|
20
38
|
// ~/.openclaw/openclaw.json
|
|
21
39
|
{
|
|
22
40
|
"plugins": {
|
|
@@ -47,17 +65,18 @@ Add the plugin to your OpenClaw config:
|
|
|
47
65
|
| `maxPerHour` | number | `25.00` | Max USDC per hour |
|
|
48
66
|
| `maxPerDay` | number | `200.00` | Max USDC per day |
|
|
49
67
|
|
|
50
|
-
##
|
|
68
|
+
## Features
|
|
51
69
|
|
|
52
70
|
- **Budget enforcement** — blocks payments exceeding per-call, hourly, or daily USDC limits before they execute
|
|
53
71
|
- **Audit logging** — every x402 payment is logged to your Sentinel dashboard with agent ID, endpoint, amount, tx hash, and timing
|
|
54
72
|
- **`sentinel_status` tool** — your agent can check its own budget status and remaining spend at any time
|
|
73
|
+
- **Zero config** — sensible defaults out of the box, customize only what you need
|
|
55
74
|
|
|
56
75
|
## Dashboard
|
|
57
76
|
|
|
58
77
|
View all payments, filter by agent or endpoint, and export CSV reports:
|
|
59
78
|
|
|
60
|
-
https://sentinel.valeocash.com/dashboard
|
|
79
|
+
**[sentinel.valeocash.com/dashboard](https://sentinel.valeocash.com/dashboard)**
|
|
61
80
|
|
|
62
81
|
## Get API Key
|
|
63
82
|
|
|
@@ -67,4 +86,4 @@ https://sentinel.valeocash.com/dashboard
|
|
|
67
86
|
|
|
68
87
|
## License
|
|
69
88
|
|
|
70
|
-
MIT
|
|
89
|
+
MIT — see [LICENSE](./LICENSE)
|