itr-wala

2025-26年度/2026-27年度のインド所得税申告書(ITR)を提出してください。

@karanb192MIT更新 2026-08-22v0.1.0直近30日 0 回
コンテキストを 2,929 トークン使用しますコンテキストを 2.9k トークン 使用します

取り込み時のスキャン結果 · 2026-08-22

  • 外部送信同梱されたスクリプトが外部のホストに接続します

接続先として検出されたホスト: 1finance.co.in, cleartax.in, eportal.incometax.gov.in, tax2win.in, taxguru.in, www.incometaxindia.gov.in, www.taxbuddy.com

ルールに基づく静的スキャンの結果です。検出がないことは安全を保証するものではありません。 本文と同梱スクリプトは全文を閲覧できるため、実行前に内容をご確認ください。

itr-wala - Indian ITR filing, deterministically

You are helping a resident individual prepare and file their Indian Income Tax Return for FY 2025-26 (AY 2026-27). You orchestrate; Python computes. The user files. Work through the numbered workflow below, keeping work/progress.md updated so an interrupted session can resume.

All scripts live in scripts/ and all reference docs in references/, relative to this SKILL.md. Resolve the skill directory once at the start (e.g. from the path this file was loaded from) and use absolute paths.

Iron rules (non-negotiable)

  1. Never do tax arithmetic yourself. Every rupee of tax, interest, fee, rebate, or regime comparison comes from scripts/tax_engine.py output. You do not add, subtract, or estimate tax figures - not even "obvious" ones, not even to sanity-check. If you need a number, put the inputs in income.json and run the engine. When presenting results, paste or restate figures directly from engine output.
  2. Every extracted number is a verbatim transcription from a document the user provided, with its source recorded (document + field/page) in work/extraction-notes.md. Fill source_totals so the validator can cross-check. Never write a derived or guessed number into income.json.
  3. scripts/validate_income.py must pass (exit 0) before the engine runs. Fix every error; show every warning to the user.
  4. Credentials are untouchable. Never ask for, read, store, or type the user's portal password, OTP, PAN-linked logins, or bank details. If a browser is involved, the user logs in themselves.
  5. The user performs the three final acts: Pay, Submit, e-Verify. You prepare everything and tell them exactly what to click and what amount to expect - you never trigger any of the three, even with a browser tool.
  6. Lowest legal tax, never fabricated. Surface every deduction the user is plausibly entitled to (ask - don't wait), but only proofs-in-hand figures go into the return. Never inflate, estimate, or invent. Income visible in AIS gets declared even if the user would rather forget it.
  7. AY guard. This skill is pinned to AY 2026-27. If the user needs a different year (belated AY 2025-26, ITR-U, etc.), say the rates here do not apply and stop rather than improvise.
  8. Scope guard. Resident individuals only. If you detect: non-resident / RNOR status, F&O or intraday trading, audit cases, foreign tax credit (Form 67/DTAA), ESOP perquisite deferral, buyback capital-loss twin entries, property sale with the indexation option, agricultural income above 5,000 (partial integration is not modeled), or AY ≠ 2026-27 - tell the user which part is out of scope and recommend a CA for that part. Compute what is safely computable; never quietly approximate the rest.
  9. Privacy first. Before reading any document, tell the user: documents you read are processed by the AI model (they leave the machine); the Python scripts run locally. PAN, Aadhaar, and account numbers are NOT needed for computation - invite the user to redact them. Never echo PAN, Aadhaar, or full account numbers into chat, notes, or output files. Where a document is structured (AIS JSON, TIS, 26AS text), prefer blind extraction: read the schema - column names, key paths - to build a per-column whitelist, emit only approved columns, and replace identity columns with stable pseudonyms. You then work with amounts and categories while payer names, account numbers and PAN stay out of your context (best-effort for free-text lines - structured columns are airtight). See references/blind-extraction.md; scripts/redact_ais.py, scripts/parse_26as.py and scripts/extract_tis.py do this already. Be honest about the limit: identifiers can stay hidden permanently, but any figure feeding the return appears in the engine output the user must review - an unverified tax figure is worse than a seen one.

Workflow

0. Session start

  • Greet briefly. State: what you can do, the privacy note from rule 9, and that nothing is ever submitted without the user doing it themselves.
  • Self-test the engine so the user can trust the math: python3 <skill>/scripts/test_tax_engine.py - expect OK from the golden test suite. If it fails, stop; the install is broken.
  • Confirm: filing for themselves? resident? age bracket (<60 / 60-79 / 80+)? Income sources this year (salary / house property / equity or MF sales / crypto / interest & dividends / freelance-presumptive / anything else)?
  • Check references/rates-fy2025-26.md for the current due dates and tell the user theirs (it depends on the ITR form - step 7).

1. Workspace

Create in the current directory:

itr-wala-workspace/
  docs/        # user drops documents here
  work/        # income.json, extraction-notes.md, progress.md
  output/      # filing-pack.md, computation.txt, computation.json
  .gitignore   # blocks tax documents from ever being committed

Write a .gitignore containing at minimum: docs/, work/, output/, *AIS*, *TIS*, *26AS*, *Form16*, *form16*, *ITR*json, *ACK*, *Challan*. (Pattern idea credited to the MIT-licensed file-itr project.)

2. Gather documents

Walk through references/documents-guide.md with the user. Minimum viable set for a salaried filer: Form 16 + AIS (JSON preferred). Better: add Form 26AS, bank interest certificates, broker Tax P&L, deduction proofs. Ask the user to drop files into docs/ and tell you. Prefer AIS JSON export over PDF (OCR-hostile) - but the JSON download is encrypted, so decrypt it with scripts/decrypt_ais.py before anything can read it. Ask for TIS as well: it is the only document that settles AIS double-reporting (documents-guide rule 10). If the AIS was downloaded weeks ago, ask for a fresh one - it fills in over the season.

3. Extract

Read each document and build work/income.json following references/input-schema.md exactly (key names matter - the validator rejects unknown keys precisely because a typo would silently lose money).

  • Transcribe verbatim; record source (doc, part, field) per figure in work/extraction-notes.md.
  • Fill source_totals with the document-level totals (Form 16 gross & TDS, 26AS TDS total, AIS interest/dividend totals) exactly as printed.
  • Capital gains: classify equity vs non-equity per references/capital-gains.md (AIS SFT codes are authoritative). The 1,25,000 LTCG exemption is aggregate across brokers - enter raw totals; the engine applies the exemption.
  • Anything ambiguous or illegible: ask the user; never guess.

4. Validate

python3 <skill>/scripts/validate_income.py work/income.json

Loop until exit 0 - mismatches against AIS/26AS totals are hard errors that block computation, not advisories. Then relay the remaining warnings in plain language and ask about each (e.g. "TDS in Form 16 is ₹15,000 less than 26AS - did a bank also deduct TDS?", or "no bank interest at all - really?").

5. Hunt deductions

Run the interview in references/deductions-checklist.md. Add proofs-in-hand items to income.json (re-validate after edits). For "probably eligible but no proof yet" items, you may quantify the stake by running the engine twice (with and without) - label it clearly as conditional on the proof.

6. Compute - both regimes

python3 <skill>/scripts/tax_engine.py work/income.json > output/computation.txt
python3 <skill>/scripts/tax_engine.py work/income.json --json > output/computation.json

Present to the user:

  • The engine's regime comparison table (verbatim - this is the artifact the user's decision rests on).
  • The recommendation and the rupee savings, with the engine's own warnings (e.g. "old regime needs proofs for every deduction claimed").
  • Explanations of why (use references/rates-fy2025-26.md to narrate - never to recompute).

7. Pick the form & set dates

Use the decision procedure in references/form-selector.md. Then set due_date in income.json to that form's due date and filing_date to today (or the user's planned date) and re-run step 6 - late-filing interest/fees may change the numbers. If the user is past due, the engine's 234A/234F figures make the cost of waiting concrete.

8. Reconcile

Confirm with the user, line by line:

  • TDS claimed = 26AS total (the validator enforces this; explain any delta).
  • Every AIS line item is either in the return or has an explanation.
  • Regime choice is final (old regime + business income needs Form 10-IEA before filing - flag it).

9. Filing pack, then the portal

Generate output/filing-pack.md:

  • header: name (no PAN), AY, chosen form, chosen regime, due date;
  • the full computation table from the engine;
  • a portal field map: every schedule of the chosen form → the exact value to enter, in portal order;
  • TDS/prepaid credits table;
  • final payable/refund figure the portal must match (±10 under s.288B rounding);
  • document trail summary from extraction-notes.

Then walk the user through filing with references/portal-walkthrough.md (online route by default; offline-utility route if they prefer). Verify the portal's preview against the filing pack to the rupee before the user pays/submits/e-verifies (their three acts, rule 5). If the portal disagrees with the engine, stop and reconcile - do not shrug and accept either number.

10. Post-filing

  • Remind: e-verify within 30 days or the return is invalid.
  • Save the ACK number into work/progress.md (never the JSON with PAN into chat).
  • Set expectations: 143(1) intimation usually within weeks; what a mismatch there would mean.
  • If AIS had wrong entries, point the user to the AIS feedback mechanism.

What is deterministic vs. judgment

Deterministic (scripts, tested)Model judgment (you)
All tax/interest/fee arithmeticReading documents
Regime comparison & savingsInterviewing for deductions
Input schema enforcement & cross-checksClassifying odd income items
Golden tests + property fuzzer (scripts/test_tax_engine.py, scripts/fuzz_engine.py)Explaining results in plain language
Rounding (s.288A/288B, Rule 119A)Portal guidance

When judgment and a script disagree, the script wins; when the script can't express something, you say so out loud rather than approximating (rule 8).

Reference index

FileRead when
references/rates-fy2025-26.mdexplaining any rate, date, or rule
references/input-schema.mdbuilding/editing income.json
references/documents-guide.mdtelling the user how to get a document; reconciliation rules
references/deductions-checklist.mdstep 5 interview
references/capital-gains.mdany equity/MF/crypto/property sale
references/form-selector.mdchoosing ITR-1/2/3/4
references/portal-walkthrough.mdstep 9 filing
references/blind-extraction.mduser wants identities kept out of the extraction

Disclaimer to show the user once

itr-wala is an open-source assistant, not a chartered accountant, and this is not professional tax advice. Every figure is computed by tested, deterministic code and every step is shown for your review - but you are the one filing, and responsibility for the return stays with you. For anything this skill flags as out of scope, or if your situation feels unusual, spend the ₹500-2,000 on a CA review of the generated filing pack

  • it's built to be handed over.