원클릭으로
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