一键导入
tax-calculate
Calculate federal tax return based on collected data. Use when the user wants to calculate taxes, see their refund, or compute what they owe.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Calculate federal tax return based on collected data. Use when the user wants to calculate taxes, see their refund, or compute what they owe.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fill official IRS Form 1040 PDF with calculated tax data and export a mail-ready PDF. Use when the user wants to generate, fill, or export their tax return.
Create a git branch, stage only skill and reference files, commit, push, and open a GitHub PR with anonymized evidence. Use after tax-evolve applies fixes, or when contributing manual improvements.
Analyze comparison diffs, classify discrepancies, and generate fixes to skill files and references. Logs patterns to evolution-log.json and invokes tax-publish when fixes are ready. Use after running tax-compare.
Diff two tax return PDFs (ours vs TurboTax or other reference). Extracts field values from both PDFs, compares them line by line against Form 1040 field mapping, and saves a structured diff to data/comparison-{year}.json. Use when the user wants to verify accuracy or contribute improvements.
Digital asset and cryptocurrency tax rules. Invoked by core skills when a 1099-DA is detected during document import or when the user reports cryptocurrency transactions.
Tax-loss harvesting and wash sale tax rules. Invoked by core skills when 1099-B contains wash sale adjustments or when unrealized losses are detected in the portfolio.
| name | tax-calculate |
| description | Calculate federal tax return based on collected data. Use when the user wants to calculate taxes, see their refund, or compute what they owe. |
| allowed-tools | ["Read","Write","Edit","Bash","Glob","Grep"] |
You are a tax calculator. Compute the user's federal tax return based on data in data/tax-profile.json.
First, read data/tax-profile.json. If it doesn't exist or is incomplete, tell the user to run /tax-start first.
Required data minimum:
Before calculating, read these reference files for accurate rates and rules:
references/brackets-2025.md — tax brackets, standard deduction, qualified dividend ratesreferences/credits-2025.md — CTC, ACTC, EIC, foreign tax credit, education creditsreferences/brackets-2025.md unless itemizedreferences/brackets-2025.md based on filing statusreferences/credits-2025.mdreferences/credits-2025.md)Check for domain-specific data in tax-profile.json under domains.*:
domains.rsu → invoke /tax-domain-rsu reference for basis adjustment rulesdomains.rental → compute Schedule E using /tax-domain-rental referencedomains.harvest → apply wash sale adjustments per /tax-domain-harvest referencedomains.crypto → compute Form 8949 per /tax-domain-crypto referenceDisplay a clear summary mapping to 1040 line numbers:
=== 2025 Federal Tax Return Summary ===
Filing Status: [status]
Line 1 Wages: $XX,XXX
Line 2b Interest: $X,XXX
Line 3b Ordinary dividends: $XXX
Line 7 Capital gain/loss: $X,XXX
Line 9 Total Income: $XX,XXX
Line 11 AGI: $XX,XXX
Line 13 Deduction ([type]): -$XX,XXX
Line 15 Taxable Income: $XX,XXX
Line 16 Tax: $X,XXX
Line 19 CTC (nonrefundable): -$X,XXX
Line 24 Total Tax: $X,XXX
Line 25 Federal Tax Withheld: $X,XXX
Line 27 EIC: $X,XXX
Line 28 ACTC: $X,XXX
Line 33 Total Payments: $X,XXX
>> Line 34 REFUND: $X,XXX (or Line 37 AMOUNT OWED: $X,XXX)
Save the calculation results to data/tax-calculation.json with all intermediate values keyed by 1040 line numbers.
Then suggest: "Run /tax-fill to generate your completed Form 1040 PDF."