Where to Find Finance and Blockchain Related Claude Plugins
You can find finance and blockchain related Claude plugins in the tres-finance-plugin directory of the anthropics/claude-plugins-community repository, which hosts specialized skills for cryptocurrency transaction analysis, ledger management, and automated invoice reconciliation.
The anthropics/claude-plugins-community repository organizes community-contributed extensions for Claude Code. The finance and blockchain related Claude plugins reside in the top-level tres-finance-plugin folder, providing a suite of tools for interacting with blockchain explorers, managing crypto wallets, and reconciling on-chain payments against traditional financial records.
Location of the Finance and Blockchain Plugin
The primary entry point for finance and blockchain related Claude plugins is the tres-finance-plugin directory. This folder contains the complete plugin package with three critical configuration files in the .claude-plugin/ subdirectory:
tres-finance-plugin/.claude-plugin/plugin.json: The plugin manifest that registers the plugin with Claude Code and defines its capabilities.tres-finance-plugin/.claude-plugin/marketplace.json: Metadata used by the Claude Plugin Store for discovery and installation.tres-finance-plugin/README.md: High-level documentation explaining the plugin's purpose and setup instructions.
Core Blockchain Skills and Capabilities
The plugin implements five specialized skills, each defined in individual markdown files located within tres-finance-plugin/skills/*/SKILL.md. These files contain the concrete logic for blockchain-related actions.
Transaction Analysis with tres-tx-story
The tres-tx-story skill, defined in tres-finance-plugin/skills/tres-tx-story/SKILL.md, analyzes blockchain transaction hashes and produces animated SVG flow diagrams alongside plain-language explanations of on-chain activity. This skill helps visualize complex DeFi transactions or multi-step smart contract interactions.
Ledger Integration with tres-explorer-tx-to-ledger
Located at tres-finance-plugin/skills/tres-explorer-tx-to-ledger/SKILL.md, this skill adds blockchain explorer data from platforms like Etherscan or Polygonscan directly to the TRES Finance ledger. It parses explorer URLs and extracts transaction details for financial record-keeping.
Invoice Reconciliation with tres-invoice-bill-matching
The tres-invoice-bill-matching skill in tres-finance-plugin/skills/tres-invoice-bill-matching/SKILL.md reconciles ERP invoices or bills against blockchain transactions. Notably, this skill functions even when the transaction hash is not explicitly mentioned in the invoice, using matching algorithms to identify corresponding on-chain payments.
Wallet Management with tres-wallets-upload
Defined in tres-finance-plugin/skills/tres-wallets-upload/SKILL.md, this skill handles the bulk upload of on-chain wallet addresses and exchange account details. These addresses become available for subsequent ledger operations and transaction monitoring.
Configuration Management with tres-settings-management
The tres-settings-management skill at tres-finance-plugin/skills/tres-settings-management/SKILL.md manages plugin configuration including blockchain platform settings, sync boundaries, exchange connectors, and transaction filters.
How to Load and Invoke Finance Plugins
To use these finance and blockchain related Claude plugins, load the plugin by referencing its manifest URL in your Claude Code configuration, then invoke individual skills using structured JSON payloads.
Loading the Plugin
Add the following configuration to register the plugin:
{
"plugins": [
{
"url": "https://github.com/anthropics/claude-plugins-community/blob/main/tres-finance-plugin/.claude-plugin/plugin.json"
}
]
}
Invoking the Transaction Story Skill
To analyze a specific transaction hash:
{
"plugin": "tres-finance-plugin",
"skill": "tres-tx-story",
"input": {
"txHash": "0x1234abcd..."
}
}
Adding Explorer Transactions to Ledger
To import a transaction from a blockchain explorer:
{
"plugin": "tres-finance-plugin",
"skill": "tres-explorer-tx-to-ledger",
"input": {
"explorerUrl": "https://etherscan.io/tx/0x7a9b..."
}
}
Reconciling Invoices Against Blockchain Data
To match an invoice with a blockchain transaction:
{
"plugin": "tres-finance-plugin",
"skill": "tres-invoice-bill-matching",
"input": {
"invoiceId": "INV-2024-00123",
"txHash": "0x9f2c..."
}
}
Summary
- Finance and blockchain related Claude plugins are located in the
tres-finance-plugindirectory of the anthropics/claude-plugins-community repository. - The plugin manifest at
tres-finance-plugin/.claude-plugin/plugin.jsonregisters the plugin with Claude Code. - Five core skills provide blockchain transaction visualization, explorer-to-ledger importing, automated invoice matching, wallet address management, and platform configuration.
- Each skill is defined in its own
SKILL.mdfile withintres-finance-plugin/skills/. - Load the plugin by referencing the manifest URL in your configuration, then invoke skills using JSON payloads that specify the plugin name, skill name, and required input parameters.
Frequently Asked Questions
Where exactly are the finance and blockchain plugins stored in the repository?
The plugins are stored in the tres-finance-plugin top-level directory of the anthropics/claude-plugins-community repository. This folder contains the plugin manifest at .claude-plugin/plugin.json, marketplace metadata at .claude-plugin/marketplace.json, and individual skill definitions within the skills/ subdirectory.
What blockchain networks does the tres-finance-plugin support?
According to the source code in tres-explorer-tx-to-ledger/SKILL.md, the plugin supports multiple blockchain explorers including Etherscan and Polygonscan. The tres-settings-management skill allows you to configure various blockchain platforms, sync boundaries, and exchange connectors.
How do I install the finance and blockchain plugins in Claude Code?
You install the plugin by adding the manifest URL to your Claude Code configuration. Reference https://github.com/anthropics/claude-plugins-community/blob/main/tres-finance-plugin/.claude-plugin/plugin.json in your plugins array. Once loaded, Claude Code recognizes the plugin and makes all five skills available for invocation without additional installation steps.
Can the plugin reconcile invoices automatically without explicit transaction hashes?
Yes. The tres-invoice-bill-matching skill is specifically designed to reconcile ERP invoices or bills against blockchain transactions even when the transaction hash is not explicitly mentioned in the invoice data. The skill uses matching algorithms to identify the corresponding on-chain payment based on amount, timestamp, and other metadata.
Have a question about this repo?
These articles cover the highlights, but your codebase questions are specific. Give your agent direct access to the source. Share this with your agent to get started:
curl -s "https://instagit.com/install.md" Maintain an open-source project? Get it listed too →