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.
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.
npx skills add anthropics/claude-plugins-community --skill tres-erp-rule-suggestionsgit clone --depth 1 https://github.com/anthropics/claude-plugins-communityWrote 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.
[](https://agentmods.dev/skills/anthropics/claude-plugins-community/tres-erp-rule-suggestions)<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.
<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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`. 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.
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.
- 11d ago First seen · 638 lines · 61 tokens per session scan A 0c49a684b55e
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.
Other skills, from other repositories
mpp-agent
Pay HTTP 402 APIs via Machine Payments Protocol (MPP).
bridge
Cross-chain token transfers using Wormhole and CCTP.
hyperliquid
Hyperliquid L1 perps DEX (69% market share).
marginfi
MarginFi — Solana lending and borrowing.
crypto-market-rank
Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings…
trading-signal
Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current price, max gain, and exit rate. Use this skill when users are looking for investment opportunities — smart money signals can serve as valuable references for…