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.
npx skills add kumarrahul85/tax-sarathi --skill indian-tax-calcgit clone --depth 1 https://github.com/kumarrahul85/tax-sarathiWrote 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.
[](https://agentmods.dev/skills/kumarrahul85/tax-sarathi/indian-tax-calc)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 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
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.
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.
- 12d ago First seen · 207 lines · 55 tokens per session scan A 242b668003f9
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.
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…
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.
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…
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.
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.
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.