Install
$ agentstack add skill-parad0x-labs-openclaw-skills-payment-session ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Payment Session
x402 is discrete per-call. This adds the two billing shapes it lacks, settled in batches through x402 so you pay one transaction per settlement (not per tick — the only economical way to bill micro-usage given fees + ATA rent):
- metered (pay-as-you-go): accrue per-use charges, settle when they cross a
threshold.
- subscription (streaming): charge a fixed amount every period.
Pure accounting — it never moves money or holds a key. It tells the agent when and how much to settle; the agent pays via x402-pay's pay_x402. A hard maxTotalUsdc lifetime cap bounds every session, so a runaway stream can't drain past it.
Tools
| Tool | Does | |---|---| | open_payment_session | start a metered or subscription session with a maxTotalUsdc cap | | meter_usage | accrue pay-as-you-go usage (metered sessions) | | check_settlement_due | is a payment due, and for how much? (amount is capped at remaining budget) | | record_settled | record a paid settlement after pay_x402 succeeds | | close_payment_session | close; returns any final remainder to settle |
The loop
open_payment_session(payee, mode, cap)
metered: meter_usage(...) → check_settlement_due → if due: pay_x402(payee, amount) → record_settled
subscription: (time passes) → check_settlement_due → if due: pay_x402(payee, amount) → record_settled
close_payment_session → settle any remainder
Trust model
- Non-custodial. This plugin only does accounting; the actual USDC settlement
is pay_x402 (your own wallet signs). It never holds a key or moves funds.
- Capped. Every session carries a hard
maxTotalUsdc;check_settlement_due
never returns an amount above the remaining budget.
Pairs with [x402-pay](../../skills/x402-pay) (settlement) and [web0-onboard](../web0-onboard) (identity + endpoint).
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Parad0x-Labs
- Source: Parad0x-Labs/openclaw-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.