peer-deposits

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

An integration for creating and managing Peer escrow deposits. A maker places USDC in escrow, a holding arrangement, and sets who can be paid, which payment methods and currencies are accepted, and how fills and withdrawals work.

In plain words
What is it for?
Use it to prepare deposits, configure payees and payment options, set minimum rates and fill limits, and manage withdrawals. It does not register a payee or send funds in the described preparation flow.
Why use it?
It organizes crypto inventory and payment rules without presenting the deposit as an investment or guaranteed source of yield. It also keeps access, fill limits, rates, and disputes as explicit operating choices.

Skill for Claude CodeCodex

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

Good fit Use it to prepare deposits, configure payees and payment options, set minimum rates and fill limits, and manage withdrawals. It does not register a payee or send funds in the described preparation flow.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zkp2p/zkp2p-skills/peer-deposits
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-deposits
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-deposits

README.md
[![agentmods](https://agentmods.dev/badge/skills/zkp2p/zkp2p-skills/peer-deposits/github.svg)](https://agentmods.dev/skills/zkp2p/zkp2p-skills/peer-deposits)
Your own site
<a href="https://agentmods.dev/skills/zkp2p/zkp2p-skills/peer-deposits"><img src="https://agentmods.dev/badge/skills/zkp2p/zkp2p-skills/peer-deposits/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-deposits

Your own site · 80×15
<a href="https://agentmods.dev/skills/zkp2p/zkp2p-skills/peer-deposits"><img src="https://agentmods.dev/badge/skills/zkp2p/zkp2p-skills/peer-deposits.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,028 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.00034 $0.01028
Opus 5 $0.00017 $0.00514
Sonnet 5 $0.00007 $0.00206
Haiku 4.5 $0.00003 $0.00103

Measured 2d ago against content hash 7b4e56092ef4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

peer-deposits 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 2d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/deposit.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-deposits/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 escrow deposits

Use this for direct creation and management of protocol escrow deposits. A maker deposits USDC into escrow, configures fiat payment methods, and receives buyer payments. This is inventory and payment operations with fill, access, and dispute constraints. Do not describe it as guaranteed yield, an interest-bearing deposit, or idle USDC earning automatically.

Design a deposit the maker can operate

Resolve the maker wallet, environment, USDC inventory, verified payees, offered currencies/platforms, minimum/maximum fill, and minimum acceptable fiat per USDC. Specify who monitors payments, whether seller automation is available, and who manages rates. Do not add unsupported corridors just to advertise liquidity.

Read the configured deployment and payee requirements with @zkp2p/[email protected]; reuse public SDK defaults rather than old hardcoded escrow/curator URLs. Use the checked preparation example for a single supported method with a previously registered payee hash. It does not register a payee or send funds.

  1. Verify each payee through the current curator identity flow. Keep raw account/session data out of logs. When passing payeeData to SDK preparation, registration can write external state; reusing a verified payeeDetailsHashes entry avoids re-registration. Never fabricate a hash to bypass identity requirements.
  2. Inspect live token balance, chain, escrow, and allowance. Prepare an amount-scoped approval if needed, directed to the actual escrow in the prepared deposit plan. Have the existing authorized signer simulate and confirm it; an approval alone creates no deposit.
  3. Prepare client.prepareCreateDeposit with token amount and fill range in 6-decimal USDC units. Conversion rates are 18-decimal fiat per USDC integer strings. processorNames, payee hashes/data, and nested currency rates must line up by method index. A mismatch can attach the wrong payment destination.
  4. Review the resulting deposit plan, then send through the maker wallet under the existing bounded authorization. Persist environment, escrow, on-chain numeric ID, full indexer ID returned by the service, and create receipt. Do not identify a deposit by numeric ID alone across escrow generations.
  5. Configure the intended access/protection policy and confirm it before advertising protected/restricted liquidity. An enabled whitelist with no groups can still be restrictive. Read live state to prove settings; do not infer public access or stake protection from an omitted field.
  6. Read the indexed deposit and actual on-chain availability after confirmation. Show configured currencies/rates, unlocked/locked balances, fill bounds, access, and automation status. A new deposit may not be immediately quotable while indexing catches up.

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. 2d ago First seen · 39 lines · 34 tokens per session scan A 7b4e56092ef4

Subscribe to this mod's changes

peer-deposits is a skill published in the GitHub repository zkp2p/zkp2p-skills (2 stars, last pushed 3d ago), licensed MIT. It adds 34 tokens to every session and 1,028 once invoked, about $0.0002 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-09-10.