israeli-spreadsheets

israeli-spreadsheets is a skill for Claude Code, Codex from squadcodercom/squadcoder. It costs 97 tokens per session (3,251 once invoked), scanned A, original, MIT.

A spreadsheet guide for Israeli tax calculations, VAT, salaries, and other financial templates in Excel or Google Sheets.

In plain words
What is it for?
Use it for NIS-based tax models, VAT calculations, salary templates, and Hebrew-labelled financial spreadsheets.
Why use it?
It helps produce calculations and workbooks with Israeli amounts, tax rules, currency formatting, and right-to-left Hebrew layout.

Skill for Claude CodeCodex

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

Good fit Use it for NIS-based tax models, VAT calculations, salary templates, and Hebrew-labelled financial spreadsheets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/squadcodercom/squadcoder/israeli-spreadsheets
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 squadcodercom/squadcoder --skill israeli-spreadsheets
Clone the repo
git clone --depth 1 https://github.com/squadcodercom/squadcoder

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-spreadsheets

README.md
[![agentmods](https://agentmods.dev/badge/skills/squadcodercom/squadcoder/israeli-spreadsheets/github.svg)](https://agentmods.dev/skills/squadcodercom/squadcoder/israeli-spreadsheets)
Your own site
<a href="https://agentmods.dev/skills/squadcodercom/squadcoder/israeli-spreadsheets"><img src="https://agentmods.dev/badge/skills/squadcodercom/squadcoder/israeli-spreadsheets/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-spreadsheets

Your own site · 80×15
<a href="https://agentmods.dev/skills/squadcodercom/squadcoder/israeli-spreadsheets"><img src="https://agentmods.dev/badge/skills/squadcodercom/squadcoder/israeli-spreadsheets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,251 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.
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.00097 $0.03251
Opus 5 $0.00048 $0.01625
Sonnet 5 $0.00019 $0.00650
Haiku 4.5 $0.00010 $0.00325

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

Security

Grade A, and why

israeli-spreadsheets 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 8d ago.

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

.squadcoder/skills/israeli-spreadsheets/SKILL.md · 184 lines

How it starts

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

Israeli Spreadsheets

Instructions

Step 1: Set Up Python Environment

Install openpyxl:

pip install openpyxl

Step 2: Israeli Financial Constants

  • VAT rate: 18% (raised from 17% on 2025-01-01, held at 18% through the 2026 budget; the proposed 19% hike was dropped)
  • Tax brackets 2026 (post Amendment 288): 10% up to 84,120 NIS, 14% up to 120,720, 20% up to 228,000, 31% up to 301,200, 35% up to 560,280, 47% up to 721,560, 50% above. The 20% and 31% bands were widened on 1 January 2026; the other thresholds were carried over from 2025 (frozen through 2027).
  • Credit point value: 2,904 NIS/year (242 NIS/month), 2.25 points for residents
  • Bituach Leumi (employee): 0.40% up to 7,122 NIS/month, 7.00% from 7,123 up to the 49,030 NIS/month ceiling; income above the ceiling is not insurable
  • Health tax (employee): 3.10% up to 7,122 NIS/month, 5.00% above

Step 3: Tax Calculation Functions

Progressive (marginal) tax calculation with credit point deduction. Use Python Decimal for precision.

Step 4: Formatted Workbooks

Set ws.sheet_view.rightToLeft = True for RTL sheets. NIS format: '#,##0.00 "₪"'

Step 5: Templates

The bundled scripts/generate_spreadsheet.py produces three RTL Hebrew templates via --template {invoice,salary,arnona} --output FILE.xlsx:

  • Invoice (Heshbonit Mas): Business/customer details, item table, subtotal, 18% VAT, total
  • Salary slip (Tlush Maskoret): Earnings, deductions (income tax, Bituach Leumi, health tax, pension, keren hishtalmut), net pay. For the "income tax" line, subtract the Section 45a pension credit (35% of the employee-side pension deposit, subject to annual ceilings) from the progressive tax owed, otherwise the withheld amount will be overstated.
  • Arnona estimator: Rates by city (Tel Aviv 55.80, Jerusalem 40.50, Haifa 33.20, Beer Sheva 27.90, Netanya 43.10 per sqm/bi-monthly)

Step 6: Google Sheets (RTL and ILS)

Many users work in Google Sheets rather than Excel. For Hebrew worksheets:

Read the full file on GitHub · 184 lines

Files

What ships with it

5 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. 8d ago First seen · 184 lines · 97 tokens per session scan A 6865b757dca2

Subscribe to this mod's changes

israeli-spreadsheets is a skill published in the GitHub repository squadcodercom/squadcoder (11 stars, last pushed 2mo ago), licensed MIT. It adds 97 tokens to every session and 3,251 once invoked, about $0.0005 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-09-03.

Related

Other skills, from other repositories

officecli-financial-model

Use this skill when the user wants to build a financial model — 3-statement model, DCF valuation, LBO, SaaS unit economics, sensitivity / scenario analysis, debt schedule, or fundraising projections — in Excel. Trigger on: 'financial model', '3-statement model', 'P&L + BS + CF', 'DCF', 'WACC', 'NPV', 'terminal value'…

iOfficeAI/OfficeCLI · 222 tokens

recipe-create-expense-tracker

Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries.

googleworkspace/cli · 22 tokens

receipts-to-expenses

Read a batch of receipt images directly via vision, classify each into expense categories, optionally reconcile against a bank statement CSV, and produce a multi-sheet Excel workbook + a PDF summary. Use when given receipt photos and asked for an expense report.

skrun-dev/skrun · 54 tokens

issue-invoice

Fill a monthly hourly invoice on Google Sheets from GitHub PRs and Jira tickets, one tab per month per client. Use when the user mentions an invoice, timesheet, billable hours, logging monthly work, rolling over an invoice month, or reconciling PRs and tickets to hours.

vanducng/skills · 64 tokens

document-skills-xlsx

Process and generate Excel spreadsheets programmatically. Use when reading data from Excel files, creating formatted reports, or building data export pipelines.

ihatesea69/kiro-kit · 32 tokens

managing-google-sheets

Use when reading, writing, formatting, charting, or organizing data in Google Sheets via the sheets CLI (sheetcraft-mcp package). Triggers — the user mentions Google Sheets, a docs.google.com/spreadsheets URL, spreadsheet, sheet, tab, cells, rows, formulas, charts, formatting a sheet, pivot-style summaries, or asks to…

P4rthPat3l/sheetcraft-mcp · 87 tokens