pinion-send

pinion-send is a skill for Claude Code, Codex from chu2bard/pinion-os. It costs 32 tokens per session (631 once invoked), scanned A, original, MIT.

A tool that prepares an ETH or USDC transfer on Base without signing or sending it. Base is a network built on Ethereum; the client must sign and broadcast the prepared transaction.

In plain words
What is it for?
Use it to prepare ETH or USDC payments to another wallet on Base.
Why use it?
It handles the transaction details and conversion into the format Base expects, while leaving control of the private key and final broadcast with the client.

Skill for Claude CodeCodex

Part of the pinion-os plugin — 10 skills shipped together

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.

agentmods
npx agentmods add skills/chu2bard/pinion-os/send
Any agent
npx skills add chu2bard/pinion-os --skill send
Clone the repo
git clone --depth 1 https://github.com/chu2bard/pinion-os

Made for: Claude Code, Codex.

Or install pinion-os, the plugin that ships this one along with the rest of its 10 skills.

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 pinion-send

README.md
[![agentmods](https://agentmods.dev/badge/skills/chu2bard/pinion-os/send.svg)](https://agentmods.dev/skills/chu2bard/pinion-os/send)
Your own site
<a href="https://agentmods.dev/skills/chu2bard/pinion-os/send"><img src="https://agentmods.dev/badge/skills/chu2bard/pinion-os/send.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 631 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00032 $0.00631
Opus 5 $0.00016 $0.00316
Sonnet 5 $0.00006 $0.00126
Haiku 4.5 $0.00003 $0.00063

Measured 4d ago against content hash 5236da772585, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pinion-send scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://pinionos.com/skill/send \
skills/send/SKILL.md · 85 lines

What it actually says

Send

Constructs an unsigned ETH or USDC transfer transaction on Base. Returns the raw transaction object for the client to sign and broadcast.

Endpoint

POST https://pinionos.com/skill/send

Price: $0.01 USDC per call (x402 on Base)

Request Body

{
  "to": "0x...",
  "amount": "0.1",
  "token": "ETH"
}
Field Type Required Description
to string yes Recipient address (0x, 40 hex chars)
amount string yes Amount to send (human-readable)
token string yes ETH or USDC

Example Request

curl -X POST https://pinionos.com/skill/send \
  -H "Content-Type: application/json" \
  -d '{"to":"0x7a21...","amount":"0.05","token":"ETH"}'

The first request returns HTTP 402 with payment requirements. Sign a USDC TransferWithAuthorization (EIP-3009) and retry with the X-PAYMENT header.

Example Response (ETH)

{
  "tx": {
    "to": "0x7a21...",
    "value": "0xb1a2bc2ec50000",
    "data": "0x",
    "chainId": 8453
  },
  "token": "ETH",
  "amount": "0.05",
  "network": "base",
  "note": "Sign this transaction with your private key and broadcast to Base.",
  "timestamp": "2026-02-16T12:00:00.000Z"
}

Example Response (USDC)

{
  "tx": {
    "to": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "value": "0x0",
    "data": "0xa9059cbb...",
    "chainId": 8453
  },
  "token": "USDC",
  "amount": "10",
  "network": "base",
  "note": "Sign this transaction with your private key and broadcast to Base.",
  "timestamp": "2026-02-16T12:00:00.000Z"
}

When to Use

  • Transfer ETH or USDC to another address on Base.
  • Build payment workflows where the agent constructs the tx and the user (or another agent) signs.
  • Fund a sub-wallet or pay for services.
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. 4d ago First seen · 85 lines · 32 tokens per session scan A 5236da772585

Subscribe to this mod's changes

pinion-send is a skill published in the GitHub repository chu2bard/pinion-os (96 stars, last pushed 6mo ago), licensed MIT. It adds 32 tokens to every session and 631 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

compare-crypto-payments

Comprehensive comparison of crypto payment gateways and protocols. Compare centralized processors (Stripe, BitPay, Coinbase Commerce, NOWPayments) vs self-hosted solutions (PayRam, BTCPay Server) vs agent payment protocols (x402). Analyze trade-offs between custody, KYC requirements, stablecoin support, privacy, and…

PayRam/payram-mcp · 116 tokens

payram-agent-onboarding

Deploy and automate PayRam for AI agents and CLI-only environments. No web UI required — pure API-driven payment infrastructure. Install via setuppayramagents.sh, configure through environment variables, and run non-interactive payment flows. Includes smart contract wallet deployment, BTC/ETH/Base payment setup, and…

PayRam/payram-mcp · 102 tokens

payram-analytics

Query PayRam dashboard data directly via REST APIs using JWT Bearer authentication. Search payments by tx hash or email, get daily volume breakdowns, check unswept balances, view sweep history, and pull on-ramp metrics. No MCP server needed — the agent calls PayRam APIs directly with a Bearer token. Use when querying…

PayRam/payram-mcp · 109 tokens

payram-checkout-integration

Integrate PayRam checkout flow into web applications. Generate payment links, embed payment pages, handle redirects, and process payment confirmations. Supports Express, Next.js, FastAPI, Laravel, Gin, Spring Boot. Use when adding crypto checkout to e-commerce, building payment forms, implementing deposit flows, or…

PayRam/payram-mcp · 75 tokens

payram-payouts

Send crypto payouts and manage referral programs with PayRam. Self-hosted payout infrastructure — no KYC, no intermediary, no fund holds. Create payouts to any wallet across Ethereum, Base, Polygon, Tron, Bitcoin. Built-in affiliate program with automated reward distribution. Use when sending crypto payouts to users…

PayRam/payram-mcp · 81 tokens

payram-setup

Deploy and configure your PayRam self-hosted crypto payment gateway server with web dashboard. Install on VPS via setuppayram.sh, set up PostgreSQL database, configure root account, node details, wallets, and hot wallets through the web UI. Complete deployment and onboarding in under 10 minutes. No signup required …

PayRam/payram-mcp · 117 tokens