tres-asset-balance-validation

tres-asset-balance-validation is a skill for Claude Code from anthropics/claude-plugins-community. It costs 78 tokens per session (4,571 once invoked), scanned A, original, Apache-2.0.

A balance-checking procedure for TRES Finance that compares EVM wallet records with DeBank, a service that displays on-chain crypto assets and positions. It produces discrepancy reports in HTML and PDF.

In plain words
What is it for?
Use it to audit or verify TRES wallet balances against DeBank for supported EVM-compatible wallets.
Why use it?
It reveals differences such as missing assets, unmatched positions, or incorrect token amounts between the two sources.

Skill for Claude Code ✓ vendor

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

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

Good fit Use it to audit or verify TRES wallet balances against DeBank for supported EVM-compatible wallets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anthropics/claude-plugins-community/tres-asset-balance-validation
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,734 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-asset-balance-validation
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-asset-balance-validation

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/anthropics/claude-plugins-community/tres-asset-balance-validation"><img src="https://agentmods.dev/badge/skills/anthropics/claude-plugins-community/tres-asset-balance-validation.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,571 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Memory Poisoning · line 96
    Skill attempts to fill the context window with filler content, displacing legitimate instructions and safety constraints. This can degrade agent performance or bypass safety boundaries.
    Fix: Implement context-window management that detects and rejects padding or stuffing attempts. Prioritize system instructions over user-injected content.
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.00078 $0.04571
Opus 5 $0.00039 $0.02286
Sonnet 5 $0.00016 $0.00914
Haiku 4.5 $0.00008 $0.00457

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

Security

Grade A, and why

tres-asset-balance-validation 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 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.

Makes network callslowCapability

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

curl -s -G \
tres-finance-plugin/skills/tres-asset-balance-validation/SKILL.md · 442 lines

How it starts

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

Tres Finance — Asset Balance Validation

Overview

This skill validates wallet balances in Tres Finance against DeBank, providing a clear discrepancy report as both an interactive HTML file and a PDF. It compares per-asset token amounts (including DeFi position underlying tokens) for each EVM wallet and flags matches, minor differences, major discrepancies, missing assets, untracked tokens, and unmatched positions.

Scope: Only EVM-compatible wallets are supported (DeBank limitation). Exchange accounts, non-EVM chains, and empty wallets are skipped.


When to Use

Trigger this skill whenever a user asks to:

  • Validate or verify their TRES balances
  • Cross-check or audit wallets against external on-chain data
  • Compare TRES data to DeBank
  • Check if their balances are correct

Example phrases:

  • "Validate my balances"
  • "Check my wallets against DeBank"
  • "Are my TRES balances correct?"
  • "Show me any discrepancies between TRES and on-chain data"

Prerequisites

Requirement Details
TRES Finance access Must be authenticated via get_viewer
DeBank API key Free key available at cloud.debank.com
EVM wallets At least one 0x... wallet tracked in TRES

Process Overview

Step 1 — Authenticate with TRES

Call get_viewer to confirm the organization name.

Step 2 — Fetch wallets and balances from TRES

IMPORTANT — Timeout handling: The internalAccount query with both balances and positions will timeout for large orgs. Split into two separate queries:

Query 1: Wallets + Balances only (no positions)

query {
  internalAccount {
    results {
      id
      name
      identifier
      isExchange
      platforms
      balances {
        amount
        asset {
          symbol
          contract { identifier }
        }
        fiatValue { value unitPrice fiatCurrency }
      }
    }
  }
}

Note: The amount field is returned as a string, not a number. Always float() it before arithmetic.

Read the full file on GitHub · 442 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 · 442 lines · 78 tokens per session scan A 8507e78cdd6b

Subscribe to this mod's changes

tres-asset-balance-validation is a skill published in the GitHub repository anthropics/claude-plugins-community (3,734 stars, last pushed 16d ago), licensed Apache-2.0. It adds 78 tokens to every session and 4,571 once invoked, about $0.0004 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.