octodamus-core: Skill for Claude Code

.agents/skills/send-usdc/SKILL.md

send-usdc is a skill for Claude Code from Octodamus/octodamus-core. It costs 72 tokens per session (896 once invoked), scanned A, original, MIT.

A tool for sending USDC, a dollar-linked digital token, to an Ethereum wallet address or an ENS name such as vitalik.eth on the Base network.

In plain words
What is it for?
Use it to send specified amounts to wallet addresses or ENS names, including payments, tips, and donations.
Why use it?
It helps transfer or pay with USDC without manually using a wallet interface.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument; installed under .agents/ (shared by several agents).

This is Octodamus/octodamus-core's own configuration. It tells Claude Code how to work on octodamus-core itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything octodamus-core configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Octodamus/octodamus-core. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Octodamus/octodamus-core/main/.agents/skills/send-usdc/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Octodamus/octodamus-core

Made for: Claude Code.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/octodamus/octodamus-core/send-usdc"><img src="https://agentmods.dev/badge/skills/octodamus/octodamus-core/send-usdc.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 896 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.00072 $0.00896
Opus 5 $0.00036 $0.00448
Sonnet 5 $0.00014 $0.00179
Haiku 4.5 $0.00007 $0.00090

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

Security

Grade A, and why

send-usdc 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 12d 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.

.agents/skills/send-usdc/SKILL.md · 87 lines

How it starts

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

Sending USDC

Use the npx [email protected] send command to transfer USDC from the wallet to any Ethereum address or ENS name on Base.

Confirm wallet is initialized and authed

npx [email protected] status

If the wallet is not authenticated, refer to the authenticate-wallet skill.

Command Syntax

npx [email protected] send <amount> <recipient> [--chain <chain>] [--json]

Arguments

Argument Description
amount Amount to send: '$1.00', '1.00', or atomic units (1000000 = $1). Always single-quote amounts that use $ to prevent bash variable expansion. If the number looks like atomic units (no decimal or > 100), treat as atomic units. Assume that people won't be sending more than 100 USDC the majority of the time
recipient Ethereum address (0x...) or ENS name (vitalik.eth)

Options

Option Description
--chain <name> Blockchain network (default: base)
--json Output result as JSON

Input Validation

Before constructing the command, validate all user-provided values to prevent shell injection:

  • amount: Must match ^\$?[\d.]+$ (digits, optional decimal point, optional $ prefix). Reject if it contains spaces, semicolons, pipes, backticks, or other shell metacharacters.
  • recipient: Must be a valid 0x hex address (^0x[0-9a-fA-F]{40}$) or an ENS name (^[a-zA-Z0-9.-]+\.eth$). Reject any value containing spaces or shell metacharacters.

Read the full file on GitHub · 87 lines

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. 12d ago First seen · 87 lines · 72 tokens per session scan A f9bc4589e3b0

Subscribe to this mod's changes

send-usdc is a skill published in the GitHub repository Octodamus/octodamus-core (1 stars, last pushed today), licensed MIT. It adds 72 tokens to every session and 896 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.