israeli-bank-connector

israeli-bank-connector is a skill for Claude Code, Codex from skills-il/tax-and-finance. It costs 174 tokens per session (3,475 once invoked), scanned A, original, MIT.

A guide for analysing transactions and spending data from Israeli banks and credit-card companies.

In plain words
What is it for?
Checking connected accounts, reviewing spending, categorising transactions, and working from bank-exported CSV or Excel files when no connection is available.
Why use it?
It explains which bank connection is available and avoids setup instructions that would fail, such as using a package that is not published on npm.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit Checking connected accounts, reviewing spending, categorising transactions, and working from bank-exported CSV or Excel files when no connection is available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skills-il/tax-and-finance/israeli-bank-connector
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 skills-il/tax-and-finance --skill israeli-bank-connector
Clone the repo
git clone --depth 1 https://github.com/skills-il/tax-and-finance

Made for: Claude Code, Codex.

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 israeli-bank-connector

README.md
[![agentmods](https://agentmods.dev/badge/skills/skills-il/tax-and-finance/israeli-bank-connector/github.svg)](https://agentmods.dev/skills/skills-il/tax-and-finance/israeli-bank-connector)
Your own site
<a href="https://agentmods.dev/skills/skills-il/tax-and-finance/israeli-bank-connector"><img src="https://agentmods.dev/badge/skills/skills-il/tax-and-finance/israeli-bank-connector/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 israeli-bank-connector

Your own site · 80×15
<a href="https://agentmods.dev/skills/skills-il/tax-and-finance/israeli-bank-connector"><img src="https://agentmods.dev/badge/skills/skills-il/tax-and-finance/israeli-bank-connector.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 174 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,475 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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: 2 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 MCP Rug Pull · line 19
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium Excessive Agency · line 153
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00174 $0.03475
Opus 5 $0.00087 $0.01737
Sonnet 5 $0.00035 $0.00695
Haiku 4.5 $0.00017 $0.00347

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

Security

Grade A, and why

israeli-bank-connector scanned grade A with 0 findings 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/categorize_transactions.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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

israeli-bank-connector/SKILL.md · 186 lines

How it starts

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

Israeli Bank Connector

Instructions

Step 1: Identify Connected Banks

Check which MCP server is available and what accounts are connected:

  • israeli-bank-mcp: direct scraper integration
  • il-bank-mcp: Docker-based with persistent analysis
  • If no MCP: guide the user through a CSV or Excel export from the bank website

Neither MCP is installable with npx. israeli-bank-mcp is not published to npm and declares no bin, so any instruction to run npx israeli-bank-mcp is wrong and will fail. The real shapes, taken from each repository:

Server How it is actually installed and run
israeli-bank-mcp Clone the repo, npm install, npm run build, then point the MCP client at node /path/to/israeli-bank-mcp/build/server.js
il-bank-mcp Docker. docker compose up -d with the bank env vars set, and the client runs docker compose -f /path/to/il-bank-mcp/docker-compose.yml run --rm -i mcp-server

Node 22 or newer is required for the MCP servers, and Python 3.9 or newer for the bundled script. israeli-bank-scrapers declares engines.node >= 22.22.2. On an older Node the install or the run fails before any bank is ever contacted, and the error will not mention the bank. Check node --version first when a user reports that nothing works at all.

israeli-bank-mcp exposes two tools and one resource, and that is the whole surface: fetch-transactions, two-factor-auth, and the banks://list resource that reports which credential fields each bank needs. Everything in Steps 3 to 5 below is work the agent does on the returned data. Do not expect the server to categorize, total, or export anything.

Step 2: Retrieve Transactions

Fetch transaction data for the requested period:

  • Default: Current month
  • Supported: Up to 12 months history (bank-dependent)
  • Include: Bank accounts AND credit card transactions

Step 3: Categorize and Analyze

Apply Israeli-specific categorization:

Category Hebrew Examples
Housing דיור (diur) Rent, arnona, vaad bayit
Groceries מזון (mazon) Shufersal, Rami Levy, Victory
Transportation תחבורה (tahaburah) Rav-Kav, fuel, Gett
Utilities שירותים (shartuim) Electric Company, Mekorot, Bezeq
Healthcare בריאות (briut) Kupat Cholim, pharmacy
Education חינוך (chinuch) Gan, school, courses
Entertainment בילוי (bilui) Restaurants, cinema, streaming
Insurance ביטוח (bituach) Health, car, home insurance
Savings חיסכון (chisachon) Pension, keren hishtalmut

Read the full file on GitHub · 186 lines

Files

What ships with it

7 files 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. 12d ago First seen · 186 lines · 174 tokens per session scan A 02192953a10b

Subscribe to this mod's changes

israeli-bank-connector is a skill published in the GitHub repository skills-il/tax-and-finance (34 stars, last pushed 3d ago), licensed MIT. It adds 174 tokens to every session and 3,475 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. 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

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens

reading-receipt

An image-reading workflow for extracting structured information from receipts, invoices, and hometown-tax donation certificates. It can first extract text from PDFs and otherwise read their images.

kazukinagata/shinkoku · 64 tokens