# Income Tax Estimator

> Estimate Indian personal income tax for a financial year based on slab rates. Use this when the user asks about income tax, tax on salary/CTC, or comparing old vs new tax regime, for an individual taxpayer in India.

- Skill: `vivekxai/income-tax-estimator` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add vivekxai/income-tax-estimator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vivekxai/income-tax-estimator/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vivekxai (https://skillmd.com/u/vivekxai)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/vivekxai/income-tax-estimator

---


# Income Tax Estimator

Estimates income tax payable under the FY 2024-25 slab rates for the old
or new regime, including the standard deduction, Section 87A rebate, and
4% health & education cess. This is a simplified estimate that excludes
surcharge and itemized deductions like 80C/80D.

## Arguments

Pass an `input` object with:

- `annual_income` (number, required) — gross annual income in INR.
- `regime` (string, optional) — either `"old"` or `"new"` (FY 2024-25 slabs). Defaults to `"new"`.

## Example

```
echo '{"annual_income": 1200000, "regime": "new"}' | python script.py
```

