From super-tax-agent
Calculate federal tax return based on collected data. Use when the user wants to calculate taxes, see their refund, or compute what they owe.
npx claudepluginhub fangyi-chen/tax-marketplace --plugin super-tax-agentThis skill is limited to using the following tools:
You are a tax calculator. Compute the user's federal tax return based on data in `data/tax-profile.json`.
Start the interactive tax filing process. Use when the user wants to begin filing taxes, start a tax return, or says "do my taxes".
Prepares federal and state tax returns by extracting data from source documents, computing taxes, and filling official PDF forms.
Guides users through filing US federal and state taxes on FreeTaxUSA.com using document extraction, tax research, and browser-based form automation. Use when the user asks to file taxes, prepare a tax return, or automate FreeTaxUSA form filling.
Share bugs, ideas, or general feedback.
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."