Tracks 1099 contractor payments by vendor, sums yearly totals, flags $600 IRS threshold for 1099-NEC reporting using transaction_search and export_transactions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openaccountant-skills:contractor-trackingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Track payments to independent contractors throughout the tax year. Total payments by vendor, flag anyone approaching or exceeding the $600 IRS reporting threshold, and prepare data for 1099-NEC filing.
Track payments to independent contractors throughout the tax year. Total payments by vendor, flag anyone approaching or exceeding the $600 IRS reporting threshold, and prepare data for 1099-NEC filing.
transaction_search — find all payments to contractor-related vendors by name or categoryexport_transactions — export contractor payment details for tax filing preparationtransaction_search to find all outgoing payments categorized as contractor, freelancer, consulting, or professional services.1099-NEC CONTRACTOR TRACKING — Tax Year [Year]
══════════════════════════════════════════════════
Contractor Payments YTD Total Status
──────────────────────────────────────────────────
Jane Smith Design 8 $12,400 REPORTABLE
Mike's IT Services 4 $3,200 REPORTABLE
Sarah Copywriting 2 $550 APPROACHING
Tom Photography 1 $200 Under threshold
──────────────────────────────────────────────────
Total Contractors: 4
Reportable (>=$600): 2
Approaching ($400-$599): 1
Total Contractor Spend: $16,350
══════════════════════════════════════════════════
export_transactions to create a CSV of all contractor payments for tax preparation.=IF(ABS(Total)>=600,"REPORTABLE",IF(ABS(Total)>=400,"APPROACHING","Under threshold")).npx claudepluginhub openaccountant/skillsGuides tax preparation client communications with federal deadlines, entity-specific requirements (Sole Prop, S-Corp, Partnership, C-Corp), deduction guidance, and estimated payment rules.
Estimates quarterly US tax payments for self-employed using YTD income from Wilson tools, effective tax rates, safe harbor rules, and prior payments to avoid penalties.
Validates vendor invoices against contract terms, checks arithmetic, rate compliance, scope authorization, duplicate detection, GL coding, and NTE/cap limits. Flags issues and assigns invoice verdicts (approved, flagged, hold).