peer-checkout

peer-checkout is a skill for Claude Code, Codex from zkp2p/zkp2p-skills. It costs 23 tokens per session (899 once invoked), scanned A, original, MIT.

A checkout system that gives a customer a payment link for paying in ordinary money while the merchant receives USDC on Base, a blockchain network.

In plain words
What is it for?
Accepting payments, creating checkout links, and receiving notifications when fiat payments are verified and converted to USDC.
Why use it?
It connects familiar payment services such as PayPal, Wise, or Revolut with a merchant's crypto wallet and reports payment progress through webhooks, which are automatic server notifications.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Accepting payments, creating checkout links, and receiving notifications when fiat payments are verified and converted to USDC.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zkp2p/zkp2p-skills/peer-checkout
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zkp2p/zkp2p-skills --skill peer-checkout
Clone the repo
git clone --depth 1 https://github.com/zkp2p/zkp2p-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for peer-checkout

README.md
[![agentmods](https://agentmods.dev/badge/skills/zkp2p/zkp2p-skills/peer-checkout/github.svg)](https://agentmods.dev/skills/zkp2p/zkp2p-skills/peer-checkout)
Your own site
<a href="https://agentmods.dev/skills/zkp2p/zkp2p-skills/peer-checkout"><img src="https://agentmods.dev/badge/skills/zkp2p/zkp2p-skills/peer-checkout/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for peer-checkout

Your own site · 80×15
<a href="https://agentmods.dev/skills/zkp2p/zkp2p-skills/peer-checkout"><img src="https://agentmods.dev/badge/skills/zkp2p/zkp2p-skills/peer-checkout.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 899 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00023 $0.00899
Opus 5 $0.00012 $0.00449
Sonnet 5 $0.00005 $0.00180
Haiku 4.5 $0.00002 $0.00090

Measured yesterday against content hash 787814096baa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

peer-checkout scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/checkout.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/peer-checkout/SKILL.md · 39 lines

How it starts

The opening of the file, as written. The whole thing — 39 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Peer Pay checkout orders

Use hosted checkout when a merchant wants customers to pay through supported rails and receive crypto settlement. An order, a payment attempt, and settlement are separate records. Use the merchant API; do not improvise a maker deposit as a merchant checkout.

Set the merchant contract

Resolve merchant environment, server-side API key, authorized recipient and destination chain/token, either exact USDC amount or exact fiat amount/currency, fee payer, permitted rails, and return URLs. Confirm only missing material choices; reuse the merchant's configured defaults when the request intends them. Never put a merchant key in browser code or model-visible logs.

Use @zkp2p/[email protected]. The checked server example creates a USDC-denominated order with exact decimal strings and a bounded request. It writes an order when called. Supply API and checkout origins from the merchant's live environment configuration; do not replace service URLs with peer.xyz based on branding.

  1. Optionally call checkQuoteAvailability with the same amount and enabledRails. This is advisory and reserves nothing. If only nearby amounts are available, obtain authorization for an amount change rather than silently resizing the purchase.
  2. Call createCheckout server-side. Use either requestedUsdcAmount or requestedFiatAmount plus requestedFiatCurrency, never both. The amount is a human decimal string here, unlike protocol quote base-unit amounts.
  3. Persist the returned order identity and its association with your internal purchase before delivering checkoutUrl. Treat order tokens/checkout links as sensitive capabilities; do not publish them in issue bodies or analytics.
  4. Send the hosted link through the existing authorized customer flow. A redirect URL, iframe checkout.success message, or customer assertion is a UI signal, not fulfillment authority.
  5. Verify signed server webhooks using the current documented signature scheme and raw-body handling. Read the webhook reference and the merchant environment's current integration docs before implementing verification. Do not invent a header, algorithm, replay window, or shared secret.
  6. Reconcile events idempotently with the owning order and internal purchase. Release goods/credit on verified ORDER_FULFILLED. Use PAYMENT_SETTLED to reconcile actual payout amounts; one settled payment need not fulfill an entire order. A bridged destination can settle a different amount from its quote.

Read the full file on GitHub · 39 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed · -321 lines · -36 tokens per session 787814096baa
  2. 11d ago First seen · 360 lines · 59 tokens per session scan A 65cfe4f8087d

Subscribe to this mod's changes

peer-checkout is a skill published in the GitHub repository zkp2p/zkp2p-skills (2 stars, last pushed 2d ago), licensed MIT. It adds 23 tokens to every session and 899 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

nft-standards

Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.

wshobson/agents · 48 tokens

nft-standards

Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.

rmyndharis/antigravity-skills · 48 tokens

agentic-commerce-forthecult

Agentic Commerce skills enables agents to autonomously browse and search for quality lifestyle, wellness, and tech products and gifts, view details, create orders with multi-chain payments (Solana, Ethereum, Base, Polygon, Arbitrum, Bitcoin, Dogecoin, Monero), apply CULT token-holder discounts, and track orders from…

LeoYeAI/openclaw-master-skills · 106 tokens

dutch-auction-patterns

Use when implementing Dutch auctions for token sales, NFT mints, fair launch mechanisms, or Gradual Dutch Auctions (GDAs). Covers linear/exponential price decay, batch auctions, and MEV-resistant patterns.

ccashwell/evm-cortex · 49 tokens

moonpay-commerce

Browse Shopify stores, search products, manage a cart, and checkout with crypto via Solana Pay. No login required.

moonpay/skills · 28 tokens

opensea

Query OpenSea marketplace data — listings, offers, sales / events, floor prices, collection stats, drops, traits — and execute Seaport trades via the official @opensea/cli and OpenSea REST API across Ethereum, Base, Arbitrum, Optimism, Polygon, and more. Includes search across collections / NFTs / tokens / accounts.…

alchemyplatform/skills · 175 tokens