indian-tax-calc

indian-tax-calc is a skill for Claude Code, Codex from kumarrahul85/tax-sarathi. It costs 55 tokens per session (2,758 once invoked), scanned A, original, MIT.

A calculator and portal-checking guide for Indian income tax, capital-gains tax, advance tax, and tax deducted at source for financial year 2025–26.

In plain words
What is it for?
Calculating tax on income, shares, mutual funds, futures and options, advance-tax payments, or TDS, and verifying e-filing portal screens.
Why use it?
It helps estimate tax under India’s old and new systems and supports checking return-filing screens.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Calculating tax on income, shares, mutual funds, futures and options, advance-tax payments, or TDS, and verifying e-filing portal screens.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kumarrahul85/tax-sarathi/indian-tax-calc
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 kumarrahul85/tax-sarathi --skill indian-tax-calc
Clone the repo
git clone --depth 1 https://github.com/kumarrahul85/tax-sarathi

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 indian-tax-calc

README.md
[![agentmods](https://agentmods.dev/badge/skills/kumarrahul85/tax-sarathi/indian-tax-calc/github.svg)](https://agentmods.dev/skills/kumarrahul85/tax-sarathi/indian-tax-calc)
Your own site
<a href="https://agentmods.dev/skills/kumarrahul85/tax-sarathi/indian-tax-calc"><img src="https://agentmods.dev/badge/skills/kumarrahul85/tax-sarathi/indian-tax-calc/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 indian-tax-calc

Your own site · 80×15
<a href="https://agentmods.dev/skills/kumarrahul85/tax-sarathi/indian-tax-calc"><img src="https://agentmods.dev/badge/skills/kumarrahul85/tax-sarathi/indian-tax-calc.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,758 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.
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.00055 $0.02758
Opus 5 $0.00028 $0.01379
Sonnet 5 $0.00011 $0.00552
Haiku 4.5 $0.00006 $0.00276

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

Security

Grade A, and why

indian-tax-calc 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 12d ago.

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

- CSV/field validation rules live in lazy-loaded Angular JS chunks under `https://static.incometax.gov.in/iec/foreturnsay26/` — download the chunk with curl and grep for the field name (look for `Pattern` regexes and `En
skills/indian-tax-calc/SKILL.md · 207 lines

How it starts

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

Indian Tax Calculator

Calculate Indian income tax liability, STCG/LTCG on equity and F&O trades, advance tax installments, and TDS for FY 2025-26 — under both old and new tax regimes.

When to Use

  • User asks "how much tax do I owe on my salary / income?"
  • User wants to calculate STCG or LTCG on stock or mutual fund gains
  • User asks about tax on F&O profits
  • User wants to compare old regime vs new regime tax
  • User needs advance tax calculation or TDS estimation
  • User is filling a return on the e-filing portal and wants Claude to verify screens live

How to Use

New regime tax slab (FY 2025-26)

function Get-TaxNewRegime {
  param([double]$Income)
  # FY 2025-26 new regime slabs (post Budget 2025)
  $slabs = @(
    @{UpTo=400000;  Rate=0},
    @{UpTo=800000;  Rate=0.05},
    @{UpTo=1200000; Rate=0.10},
    @{UpTo=1600000; Rate=0.15},
    @{UpTo=2000000; Rate=0.20},
    @{UpTo=2400000; Rate=0.25},
    @{UpTo=[double]::MaxValue; Rate=0.30}
  )
  $tax = 0; $prev = 0
  foreach ($slab in $slabs) {
    if ($Income -le $prev) { break }
    $taxable = [math]::Min($Income, $slab.UpTo) - $prev
    $tax += $taxable * $slab.Rate
    $prev = $slab.UpTo
  }
  # Rebate u/s 87A: nil tax if income <= 12,00,000
  if ($Income -le 1200000) { $tax = 0 }
  $cess = $tax * 0.04
  return [PSCustomObject]@{ Tax=$tax; Cess=$cess; Total=[math]::Round($tax+$cess,2) }
}

Get-TaxNewRegime -Income 1500000

Old regime tax slab (FY 2025-26)

function Get-TaxOldRegime {
  param([double]$Income, [double]$Deductions = 0)
  $taxableIncome = $Income - $Deductions
  $slabs = @(
    @{UpTo=250000;  Rate=0},
    @{UpTo=500000;  Rate=0.05},
    @{UpTo=1000000; Rate=0.20},
    @{UpTo=[double]::MaxValue; Rate=0.30}
  )
  $tax = 0; $prev = 0
  foreach ($slab in $slabs) {
    if ($taxableIncome -le $prev) { break }
    $taxable = [math]::Min($taxableIncome, $slab.UpTo) - $prev
    $tax += $taxable * $slab.Rate
    $prev = $slab.UpTo
  }
  if ($taxableIncome -le 500000) { $tax = [math]::Min($tax, 12500) }
  $cess = $tax * 0.04
  return [PSCustomObject]@{ TaxableIncome=$taxableIncome; Tax=$tax; Cess=$cess; Total=[math]::Round($tax+$cess,2) }
}

Get-TaxOldRegime -Income 1500000 -Deductions 150000  # 80C deduction

Read the full file on GitHub · 207 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. 12d ago First seen · 207 lines · 55 tokens per session scan A 242b668003f9

Subscribe to this mod's changes

indian-tax-calc is a skill published in the GitHub repository kumarrahul85/tax-sarathi (2 stars, last pushed 1mo ago), licensed MIT. It adds 55 tokens to every session and 2,758 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-31.

Related

Other skills, from other repositories

itr-prep-skill

End-to-end assistant for filing Indian Income Tax Returns (ITR-1/2/3/4) for any assessment year. Takes a user from raw documents (Form 16, AIS, Form 26AS, broker tax P&L, payslips, bank statements) to a fully reconciled, schedule-by-schedule computation and a portal-ready data pack — including form selection…

NidheeshJain/itr-prep-skill · 308 tokens

fii-dii-flow-tracker

Track and analyze FII/DII daily buy/sell flows in Indian markets. Use when user asks about institutional flows, FII selling/buying trends, DII activity, or institutional impact on Nifty/market direction.

ajeeshworkspace/indian-trading-skills · 54 tokens

prepare-india-tax-return

Prepare and reconcile Indian individual income-tax returns from source documents through form selection, schedule mapping, tax-payment checks, final validation, and screen-by-screen filing. Use when Codex must analyze Form 16, AIS/TIS, 26AS, prefill or utility JSON, bank/broker/property/business records; choose among…

bagdeabhishek/prepare-india-tax-return · 129 tokens

tax-invoice-hometax

A workflow for issuing and checking electronic tax invoices through Korea’s Hometax online tax service. It covers new invoices, corrected invoices, searches, and checking unpaid amounts against incoming payments.

lbiz-partners/hometax-doum · 166 tokens

vat-hometax

A workflow for filing South Korean value-added tax (VAT) returns through Hometax, the national online tax service. It covers checking the business type, comparing sales and purchase records, reviewing deductible input tax, reconciling spreadsheet totals, and completing a final checklist.

lbiz-partners/hometax-doum · 127 tokens

income-tax-hometax

A Korean workflow for comprehensive income-tax filing through Hometax, South Korea's online tax service. It covers income checks, expense methods, deductions, spreadsheet reconciliation, and final review before submission.

lbiz-partners/hometax-doum · 127 tokens