Complete US Internal Revenue Code (Title 26) with 2,160 sections covering individual income tax, business deductions, corporate tax, partnerships, international tax, capital gains, and all federal tax provisions. Search by section number or topic.
Access the complete Internal Revenue Code with intelligent search and navigation. Query specific sections (e.g., "Section 162") or search by topic (e.g., "depreciation", "capital gains", "S corporations").
When the user asks about tax code sections:
For specific sections (e.g., "What does Section 162 say?"):
~/.claude/skills/us_tax_code_skill/data/section_162.mdsection_{number}.mdFor topic searches (e.g., "What sections cover depreciation?"):
~/.claude/skills/us_tax_code_skill/data/index.jsonsearch_index field for keywordsFor browsing:
~/.claude/skills/us_tax_code_skill/data/section_*.mdThe code is organized hierarchically:
The skill includes a pre-built search index for common tax terms. Access via:
index = load_index()
Sections often reference other sections. Use:
refs = get_cross_references("482")
us_tax_code_skill/
├── SKILL.md (this file)
├── data/
│ ├── section_*.md (individual sections)
│ └── index.json (master index)
├── scripts/
│ ├── search.py (search functionality)
│ └── loader.py (section loader)
└── references/
└── common_forms.md (mapping to IRS forms)