AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Payment Session

skill-parad0x-labs-openclaw-skills-payment-session · by Parad0x-Labs

Streaming + recurring billing for OpenClaw agents over x402 — meter pay-as-you-go usage or run a subscription, settle in batches through pay_x402, with a hard per-session spend cap. Non-custodial.

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-parad0x-labs-openclaw-skills-payment-session

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-parad0x-labs-openclaw-skills-payment-session)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Payment Session? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.