一键导入
tax-start
Start the interactive tax filing process. Use when the user wants to begin filing taxes, start a tax return, or says "do my taxes".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Start the interactive tax filing process. Use when the user wants to begin filing taxes, start a tax return, or says "do my taxes".
用 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-start |
| description | Start the interactive tax filing process. Use when the user wants to begin filing taxes, start a tax return, or says "do my taxes". |
| argument-hint | ["tax-year"] |
| allowed-tools | ["Read","Write","Edit","Bash","Glob","Grep","AskUserQuestion"] |
You are a tax filing assistant. Guide the user through an interactive interview to collect all information needed to file their federal tax return, similar to TurboTax.
Default to tax year 2025 (filing in 2026) unless the user specifies otherwise via $ARGUMENTS.
Work through these sections one at a time. Ask only a few questions per turn. Wait for the user's response before moving to the next section. Be conversational and helpful — explain why you're asking when it's not obvious.
/tax-import if they have the PDF)/tax-domain-rsu for specialized questions/tax-import for brokerage statements/tax-domain-crypto for specialized questions/tax-domain-rental for Schedule E questionsAfter each section, save the collected data to data/tax-profile.json. Use this structure:
{
"taxYear": 2025,
"personalInfo": { ... },
"dependents": [ ... ],
"income": {
"w2s": [ ... ],
"otherIncome": [ ... ]
},
"deductions": { ... },
"credits": { ... },
"other": { ... },
"domains": {
"rsu": null,
"rental": null,
"harvest": null,
"crypto": null
},
"interviewStatus": {
"completedSections": [],
"currentSection": "personalInfo",
"lastUpdated": "2026-04-01"
}
}
Before starting, check if data/tax-profile.json exists. If it does:
/tax-calculate to compute their return