tres-erp-rule-suggestions

tres-erp-rule-suggestions is a skill for Claude Code from anthropics/claude-plugins-community. It costs 61 tokens per session (5,902 once invoked), scanned A, original, Apache-2.0.

An assistant for mapping cryptocurrency transactions to accounting rules in Tres Finance, a platform for crypto organizations. It uses a chart of accounts, which is the list of accounting categories used to record transactions.

In plain words
What is it for?
Create, review, or correct ERP accounting rules and transaction-to-account mappings for an organization.
Why use it?
It helps turn transaction types into consistent accounting entries and identifies the organization’s settings before rules are created or changed.

Skill for Claude Code ✓ vendor

Written for Claude Code: user-invocable in frontmatter. Also seen: reads .claude/ paths; mentions Claude Code.

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

Good fit Create, review, or correct ERP accounting rules and transaction-to-account mappings for an organization.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anthropics/claude-plugins-community/tres-erp-rule-suggestions
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-erp-rule-suggestions
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-erp-rule-suggestions

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/anthropics/claude-plugins-community/tres-erp-rule-suggestions"><img src="https://agentmods.dev/badge/skills/anthropics/claude-plugins-community/tres-erp-rule-suggestions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,902 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: 3 findings, 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 Rogue Agent · line 625
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Agent Snooping · line 631
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
  • medium Agent Snooping · line 635
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00061 $0.05902
Opus 5 $0.00030 $0.02951
Sonnet 5 $0.00012 $0.01180
Haiku 4.5 $0.00006 $0.00590

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

Security

Grade A, and why

tres-erp-rule-suggestions 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 11d 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.

**3. Download** when `status` is `DONE` — use `curl` to download from the `link` URL to `data/<org_name>/presync.xlsx`.
tres-finance-plugin/skills/tres-erp-rule-suggestions/SKILL.md · 638 lines

How it starts

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

ERP Rule Suggestion Engine

You are an ERP rule mapping assistant for crypto organizations on the Tres Finance platform. Your job is to guide the user through creating ERP rules that map every transaction to the correct accounting entries.

All data fetching, validation, and rule application is done via the tres-finance MCP server. No scripts or database access required.


Process

Step 1 — Fetch Data via MCP

First, validate MCP connection and identify the org:

query { viewer { orgName displayName organizationSettings { calculateCostBasisByInternalAccount costBasisStrategy } } }

If the MCP is not connected or the org doesn't match, ask the user to reconnect. The org name comes from get_viewer — no CLI arg needed.

Then fetch all data and write to data/<org_name>/ in the working directory.

Files to create:

org_info.txt

Write org name, display name, cost basis mode from the viewer query above.

wallets.txt
query {
  internalAccount(limit: 500) {
    totalCount
    results { id parentPlatform identifier name tags }
  }
}

Paginate if totalCount > 500 using offset. Format: WALLETS (N total): then <parentPlatform>:<identifier> (<name>) [tags: ...]

chart_of_accounts.txt
query {
  integrationAccount(isDeleted: false, limit: 500) {
    totalCount
    results { name value type }
  }
}

Format: CHART OF ACCOUNTS (N accounts): grouped by type, then "<name>" (<value>).

existing_rules.txt
query {
  erp(limit: 1) {
    results { id customRules defaultRule }
  }
}

Format each rule with name, conditions summary, and account assignments. The customRules field returns full structured rule objects.

transaction_profile.txt (optional — skip if user says so)

Wallets with tx counts:

query {
  subTransaction(
    groupBy: ["belongsTo"]
    aggregations: [{field: id, function: COUNT, alias: "count"}]
    aggregationLimit: 500
  ) {
    groupedAggregations { groupKey results { alias value } }
  }
}

Cross-reference belongsTo IDs with wallet data to get identifiers/names.

Read the full file on GitHub · 638 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. 11d ago First seen · 638 lines · 61 tokens per session scan A 0c49a684b55e

Subscribe to this mod's changes

tres-erp-rule-suggestions 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 61 tokens to every session and 5,902 once invoked, about $0.0003 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.