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.
npx agentmods add skills/p2pdotme/payment-integrators/whitelist-requestnpx skills add p2pdotme/payment-integrators --skill whitelist-requestgit clone --depth 1 https://github.com/p2pdotme/payment-integratorsWrote 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.
[](https://agentmods.dev/skills/p2pdotme/payment-integrators/whitelist-request)<a href="https://agentmods.dev/skills/p2pdotme/payment-integrators/whitelist-request"><img src="https://agentmods.dev/badge/skills/p2pdotme/payment-integrators/whitelist-request.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00081 | $0.02033 |
| Opus 5 | $0.00041 | $0.01017 |
| Sonnet 5 | $0.00016 | $0.00407 |
| Haiku 4.5 | $0.00008 | $0.00203 |
Grade A, and why
whitelist-request 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 4d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.
File a whitelist request
File a GitHub issue requesting whitelisting of the deployed integrator at $address on chain $chain. Follows the WHITELISTING.md flow and uses the whitelist-request.md issue template.
Step 0 — Preconditions
- Confirm CWD is the
payment-integratorsrepo (package.jsonname is@p2pdotme/payment-integrators). If not, abort. - Confirm
ghCLI is authed:gh auth status. If not, tell the user to rungh auth loginand stop. - Confirm the issue template exists at
.github/ISSUE_TEMPLATE/whitelist-request.md. If not, abort.
Step 1 — Resolve address + chain
If $address is empty, ask: "What's the deployed integrator address? (0x… checksum)."
Validate the address is 20 bytes hex. Soft-warn if not checksummed but accept it (we'll normalise via cast later).
If $chain is empty, ask: "Which chain? base (mainnet, 8453) or base-sepolia (84532)?" Default to base-sepolia for new deployments.
Step 2 — Verify bytecode parity
This is the most important step — the entire point of the whitelist preflight check.
-
Fetch the on-chain runtime bytecode. Prefer
cast; fall back to a Hardhat one-liner ifcastisn't installed:# Preferred: cast code <address> --rpc-url <rpc-for-chain> # Fallback (no cast): npx hardhat console --network <chain> --no-compile > await ethers.provider.getCode("<address>")Pick the RPC from
hardhat.config.tsfor the named chain. -
Compute the keccak256 hash of the on-chain bytecode:
cast code <address> --rpc-url <rpc> | cast keccak -
Find the matching compiled artifact. Grep
artifacts/contracts/integrators/**/*.jsonfor an artifact whosedeployedBytecodehash (keccak of the bytecode-without-metadata bytes) matches the on-chain hash. The artifact'scontractNametells you which integrator this is.Important caveat: Solidity embeds a metadata hash in the deployed bytecode (the trailing IPFS/swarm hash, typically the last ~53 bytes). For a faithful comparison, either:
- Compare the bytecode-without-the-metadata-suffix on both sides (strip the last 53 bytes), OR
- Accept that the hash will differ if anything in the compilation inputs (source paths, optimizer settings, compiler patch version) changed, and report this clearly.
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.
- 4d ago First seen · 133 lines · 0 tokens per session scan A 2bfe1428cfbd
whitelist-request is a skill published in the GitHub repository p2pdotme/payment-integrators (5 stars, last pushed 9d ago), licensed Apache-2.0. It adds 81 tokens to every session and 2,033 once invoked, about $0.0004 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.
Other skills, from other repositories
signature-replay
Signature replay attacks — missing nonces, missing chain ID, ecrecover zero address, signature malleability, cross-chain replay.
official-sui-skills
Pointer to the official Mysten Labs skills for building on Sui — language fundamentals, object model, PTBs, SDKs, publishing, upgrades, frontend integration, accessing on-chain data. Maintained upstream at github.com/MystenLabs/skills; pinned to the same ref the audit catalog derives from (see…
nip85-trusted-assertions
The NIP-85 trusted-assertions model in Quartz (nip85TrustedAssertions/) — kind 10040 trust-provider lists, kind 30382 contact cards / user assertions, 30383 event assertions, 30384 addressable assertions, 30385 external-id assertions. Use when building or parsing these events, working with the typed tags (RankTag…
bridge
Cross-chain token transfers using Wormhole and CCTP.
onchainkit
Build onchain apps with Coinbase's OnchainKit React components - wallets, swaps, NFTs, payments.
marginfi
MarginFi — Solana lending and borrowing.