tres-wallets-upload

tres-wallets-upload is a skill for Claude Code from anthropics/claude-plugins-community. It costs 131 tokens per session (4,274 once invoked), scanned A, original, Apache-2.0.

A guided workflow for adding blockchain wallets or exchange accounts to Tres Finance from a file or by entering them manually. It validates the entries, shows a preview, and asks for confirmation before importing them.

In plain words
What is it for?
Use it to onboard multiple wallets or exchange accounts into Tres Finance. It guides the choice of account type and input method, checks existing wallets, and processes the approved batch.
Why use it?
It reduces mistakes when adding many wallet addresses or exchange connections. It also separates on-chain wallets, such as Ethereum or Bitcoin addresses, from exchange accounts such as Binance or Coinbase.

Skill for Claude Code ✓ vendor

Written for Claude Code: shipped in a Claude Code plugin.

Part of the tres-finance-plugin plugin — 22 skills shipped together

Good fit Use it to onboard multiple wallets or exchange accounts into Tres Finance. It guides the choice of account type and input method, checks existing wallets, and processes the approved batch.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anthropics/claude-plugins-community/tres-wallets-upload
About the project

claude-plugins-community is a read-only mirror of a marketplace listing community-contributed plugins for Claude Cowork and Claude Code. It is for discovering and installing plugins that extend those Claude products, while submissions are handled through Anthropic’s separate review process. Catalogue add-ons represent plugins, skills, and integrations associated with this marketplace.

anthropics/claude-plugins-community · 3,605 stars · on GitHub

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 anthropics/claude-plugins-community --skill tres-wallets-upload
Clone the repo
git clone --depth 1 https://github.com/anthropics/claude-plugins-community

Made for: Claude Code.

Or install tres-finance-plugin, the plugin that ships this one along with the rest of its 22 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 tres-wallets-upload

README.md
[![agentmods](https://agentmods.dev/badge/skills/anthropics/claude-plugins-community/tres-wallets-upload/github.svg)](https://agentmods.dev/skills/anthropics/claude-plugins-community/tres-wallets-upload)
Your own site
<a href="https://agentmods.dev/skills/anthropics/claude-plugins-community/tres-wallets-upload"><img src="https://agentmods.dev/badge/skills/anthropics/claude-plugins-community/tres-wallets-upload/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 tres-wallets-upload

Your own site · 80×15
<a href="https://agentmods.dev/skills/anthropics/claude-plugins-community/tres-wallets-upload"><img src="https://agentmods.dev/badge/skills/anthropics/claude-plugins-community/tres-wallets-upload.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 131 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,274 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00131 $0.04274
Opus 5 $0.00066 $0.02137
Sonnet 5 $0.00026 $0.00855
Haiku 4.5 $0.00013 $0.00427

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

Security

Grade A, and why

tres-wallets-upload 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 9d 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.

tres-finance-plugin/skills/tres-wallets-upload/SKILL.md · 464 lines

How it starts

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

TRES Wallet Upload Skill

Onboard on-chain wallets and exchange accounts into Tres Finance with validation, preview, and confirmation.


⚠️ EXECUTION RULE — READ BEFORE STARTING: This skill is a strict sequential checklist. You MUST follow every step in the exact order written — do not skip, merge, or reorder steps. Before moving to the next step, verify the current step is fully complete. Steps that involve API calls (schema fetch, existing-wallet check, batch mutation) are mandatory — never skip them to save time or because results seem obvious. If you catch yourself about to skip a step, stop and execute it first.


Step 0 — Ask Wallet Type

Before doing anything else, ask the user what kind of wallet they want to add using ask_user_input_v0:

question: "What would you like to add to Tres?"
options:
  - "On-Chain Wallets (Ethereum, Solana, Bitcoin, etc.)"
  - "Exchange Accounts (Binance, Coinbase, Kraken, etc.)"
type: single_select
  • If the user selects On-Chain Wallets → proceed to [ON-CHAIN FLOW] (Step OC-1)
  • If the user selects Exchange Accounts → proceed to [EXCHANGE FLOW] (Step EX-1)


ON-CHAIN FLOW


Step OC-1 — Ask for Input Method

Ask the user how they want to provide their on-chain wallets using ask_user_input_v0:

question: "How would you like to add your wallets?"
options:
  - "Upload a file (CSV or Excel)"
  - "Enter manually in a table"
type: single_select

Wait for the user's response, then proceed to the matching option in Step OC-2.


Step OC-2 — Collect Wallet Data

Option A: File Upload

If the user selects "Upload a file" (or uploads a CSV or Excel file directly):

  • Read the file with pandas / openpyxl from /mnt/user-data/uploads/
  • Expected columns (flexible): name, address (or identifier), network (or platform), tags (optional), description (optional)
  • Normalise header names (case-insensitive, strip spaces, accept aliases)
  • Parse into a list of wallet dicts, then proceed to Step OC-3

Read the full file on GitHub · 464 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. 9d ago First seen · 464 lines · 131 tokens per session scan A a64f3fb38be8

Subscribe to this mod's changes

tres-wallets-upload is a skill published in the GitHub repository anthropics/claude-plugins-community (3,605 stars, last pushed 14d ago), licensed Apache-2.0. It adds 131 tokens to every session and 4,274 once invoked, about $0.0007 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-30.