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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/super-tax-agent:tax-calculateThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a tax calculator. Compute the user's federal tax return based on data in `data/tax-profile.json`.
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."
npx claudepluginhub fangyi-chen/tax-marketplace --plugin super-tax-agentStart the interactive tax filing process. Use when the user wants to begin filing taxes, start a tax return, or says "do my taxes".
Guides users through federal tax return preparation using the opentax CLI, handling W-2s, 1099s, schedules, and credits.
Prepares federal and state tax returns by extracting data from source documents, computing taxes, and filling official PDF forms.