tres-report-create

tres-report-create is a skill for Claude Code from anthropics/claude-plugins-community. It costs 163 tokens per session (5,033 once invoked), scanned A, original, Apache-2.0.

A report-generation workflow for TRES Finance, a finance reporting system. It creates a selected report through its service, waits for completion, and returns a download link.

In plain words
What is it for?
Use it to create TRES Finance reports for a chosen date range, report type, and currency. You can also download and analyze the finished report.
Why use it?
It removes the need to manually start an export and repeatedly check whether it finished. It also checks that the report was actually created, helping catch failures that produce no clear error.

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 create TRES Finance reports for a chosen date range, report type, and currency. You can also download and analyze the finished report.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/anthropics/claude-plugins-community/tres-report-create"><img src="https://agentmods.dev/badge/skills/anthropics/claude-plugins-community/tres-report-create.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 163 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,033 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 Excessive Agency · line 226
    Skill allows unbounded resource consumption (API calls, storage, compute). Without rate limits or quotas, a compromised or misbehaving agent can cause denial-of-service or cost overruns.
    Fix: Set explicit rate limits, timeouts, and resource quotas for API calls, file operations, and compute. Implement circuit breakers for runaway loops.
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.00163 $0.05033
Opus 5 $0.00081 $0.02516
Sonnet 5 $0.00033 $0.01007
Haiku 4.5 $0.00016 $0.00503

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

Security

Grade A, and why

tres-report-create 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tests/run_report_matrix.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

resp = requests.get("<presigned_url>")
tres-finance-plugin/skills/tres-report-create/SKILL.md · 307 lines

How it starts

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

TRES Report Create

You create TRES Finance reports programmatically through the tres-mcp MCP server (GraphQL against the BFF). The flow is always: pick the report → trigger the export → poll until DONE → return the presigned link. Optionally download and analyze the file afterwards.

If you are unsure which report the user needs, use the tres-report-advisor skill first, then come back here to generate it.

Workflow

- [ ] Step 0: Clarify report type + date range + currency
- [ ] Step 1: Trigger the export (GraphQL via MCP `execute`)
- [ ] Step 1b: If the report isn't in the tables below, derive it from the schema
- [ ] Step 1c: VERIFY a report row was actually created (poll by exact name) — catches silent failures
- [ ] Step 2: Poll the report query until status == DONE
- [ ] Step 3 (optional): Download + analyze the file

Step 0 — Clarify scope (mandatory before triggering)

Confirm before doing anything:

  • Report type (required). Match the user's wording to the tables below. If unsure, discover what's available:
    query { availableReportTypes { name exportType entitiesType llmDescription } }
    
  • Date range (if applicable). LEDGER / AUDIT_LOG reports take timestamp_Gte / timestamp_Lte in ISO 8601:
    • "Q1 2025" → Gte 2025-01-01T00:00:00Z, Lte 2025-03-31T23:59:59Z
    • "2025" → Gte 2025-01-01T00:00:00Z, Lte 2025-12-31T23:59:59Z
    • If a date range is required and not given, ask.
  • Currency. Default "usd" unless the user says otherwise.
  • Analysis goal (only if they want the data analyzed, not just the file). What should the data answer? Default to a general summary (totals, top items, trends). Drives Step 3.

Confirm briefly, e.g. "I'll generate a Transaction Ledger for Q1 2025 as CSV. Starting now."

Step 1 — Trigger the export

Call the GraphQL query that matches the report's entitiesType, passing the export parameters. Run it with the MCP execute tool (validate first with validate_query if unsure).

Read the full file on GitHub · 307 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 307 lines · 163 tokens per session scan A 20dd533b06ea

Subscribe to this mod's changes

tres-report-create 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 163 tokens to every session and 5,033 once invoked, about $0.0008 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.

Related

Other skills, from other repositories