indian-tax-calc

Solid

Calculate Indian income tax, capital gains tax (STCG/LTCG), advance tax, and TDS for FY 2025-26 under old and new regimes; includes live ITR e-filing portal verification via Playwright-over-CDP

AI & Automation 1 stars 1 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
10
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# 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) ```powershell 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) ```powershell function Get-Tax...

Details

Author
kumarrahul85
Repository
kumarrahul85/tax-sarathi
Created
1 weeks ago
Last Updated
1 weeks ago
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

itr-wala

File Indian income tax returns (ITR) for FY 2025-26 / AY 2026-27. Use when the user wants to file their ITR, compute or verify Indian income tax, compare the old vs new tax regime, read a Form 16, AIS, TIS or Form 26AS, reconcile TDS, handle capital gains from Zerodha/Groww/Upstox statements, check their tax refund, or asks about ITR-1/ITR-2/ITR-3/ITR-4, sections 80C/80D/87A/111A/112A, crypto tax, advance tax, or the income-tax e-filing portal - even if they just say "help me with my taxes" in an Indian context.

8 Updated yesterday
karanb192
AI & Automation Listed

itr2-filing

Guided ITR-2 / ITR-3 filing assistant for a resident Indian individual for AY 2026-27 (FY 2025-26). Selects the correct form (ITR-2 vs ITR-3) based on the presence of business/professional income, walks through every applicable schedule one at a time, flags missing inputs as NEEDS INPUT, computes tax under both Old and New regimes, and identifies legitimate tax-saving levers. Use whenever the user mentions ITR-2, ITR-3, income tax return, filing taxes in India, Form 16, Schedule 112A, Schedule FA, Schedule BP, foreign RSUs/ESOPs for tax, capital gains tax India, F&O / futures & options / intraday / speculative business income, freelance or professional income, Sec 44AD or 44ADA presumptive taxation, tax audit u/s 44AB, or asks to reconcile AIS/26AS. Handles salary + Form 16, bank interest, dividends, prior-year losses, capital gains (Indian + foreign shares/RSUs/ESOPs), foreign assets for a Resident and Ordinarily Resident, and (BETA — needs practitioner review) business/professional income including F&O, int

2 Updated 1 weeks ago
gargraman
Data & Documents Solid

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, old-vs-new regime comparison, multi-employer salary, capital gains (equity/debt/property/crypto), F&O and business income, audit applicability, loss set-off and carry-forward, foreign assets/income, advance-tax interest (234A/B/C), and verification of a drafted/uploaded ITR JSON. Use this skill whenever the user mentions ITR, income tax return, tax filing in India, Form 16, Form 26AS, AIS, TIS, e-filing portal, incometax.gov.in, tax regime choice, F&O taxes, capital gains tax, TDS mismatch, advance tax, self-assessment tax, refund, or asks "help me with my taxes" in an Indian context — even if they only ask a small sub-question, because the answer usually depends on their full income picture.

18 Updated 5 days ago
NidheeshJain