Tracks 1099 contractor payments by vendor, sums yearly totals, flags $600 IRS threshold for 1099-NEC reporting using transaction_search and export_transactions.
npx claudepluginhub openaccountant/skillsThis skill uses the workspace's default tool permissions.
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.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
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")).