[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-tax-season-organizer":3,"mdc-8psu0i-key":34,"related-org-anthropic-tax-season-organizer":830,"related-repo-anthropic-tax-season-organizer":1019},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"tax-season-organizer","prepare tax season materials","Prepares tax-season materials for small business owners — framed as deliverables for their accountant, not tax advice. Two modes: (1) quarterly estimated tax calculation — pulls YTD net income from QuickBooks and calculates the federal income tax + self-employment tax liability and quarterly payment due; (2) year-end 1099 prep — scans QuickBooks, PayPal, and Stripe for contractors paid over $600, builds a 1099-NEC candidate list with missing W-9 flags, and produces a plain-English summary a CPA can work from directly.\nTrigger this skill whenever the user mentions: quarterly taxes, estimated tax payment, how much to set aside for taxes, 1099s, 1099-NEC, year-end tax prep, contractor payments, W-9s, or any phrase suggesting they are preparing for a tax deadline or handing materials to an accountant. Also trigger proactively when a user asks about net profit or YTD income in a context that suggests they are worried about their tax bill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20],{"name":14,"slug":15,"type":16},"Compliance","compliance","tag",{"name":18,"slug":19,"type":16},"Finance","finance",{"name":21,"slug":22,"type":16},"Accounting","accounting",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-05-14T06:02:56.641773",null,2736,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins\u002Ftree\u002FHEAD\u002Fsmall-business\u002Fskills\u002Ftax-season-organizer","---\nname: tax-season-organizer\ndescription: >\n  Prepares tax-season materials for small business owners — framed as deliverables\n  for their accountant, not tax advice. Two modes: (1) quarterly estimated tax\n  calculation — pulls YTD net income from QuickBooks and calculates the federal\n  income tax + self-employment tax liability and quarterly payment due; (2)\n  year-end 1099 prep — scans QuickBooks, PayPal, and Stripe for contractors paid\n  over $600, builds a 1099-NEC candidate list with missing W-9 flags, and\n  produces a plain-English summary a CPA can work from directly.\n\n  Trigger this skill whenever the user mentions: quarterly taxes, estimated tax\n  payment, how much to set aside for taxes, 1099s, 1099-NEC, year-end tax prep,\n  contractor payments, W-9s, or any phrase suggesting they are preparing for a\n  tax deadline or handing materials to an accountant. Also trigger proactively\n  when a user asks about net profit or YTD income in a context that suggests\n  they are worried about their tax bill.\n---\n\n# Tax Season Organizer\n\n> **Framing:** This skill produces prep material for a CPA, not tax advice. Say so early\n> and state every assumption explicitly so the accountant can adjust.\n\n## Quick start\n\nDetermine which mode the user needs, pull the relevant data, calculate or compile,\nand deliver a structured document the accountant can work from directly.\n\n```\nUser: \"what do I owe for estimated taxes this quarter?\"\n→ Pull YTD P&L from QuickBooks\n→ Calculate estimated federal income tax + SE tax\n→ Subtract payments already made this year\n→ Show Q-specific amount due with due date and assumptions stated\n→ Output: \"Estimated Q2 payment due June 16: $X — see full breakdown below\"\n\nUser: \"I need to send out 1099s\"\n→ Pull all contractor\u002Fvendor payments from QuickBooks + PayPal + Stripe\n→ Identify contractors paid ≥ $600 YTD\n→ Flag records missing W-9 \u002F EIN\n→ Output: 1099-NEC candidate list + missing W-9 action list\n```\n\n## Determine mode\n\nRead the user's message and context to decide which path applies:\n\n- **Quarterly estimate** — keywords: estimated payment, quarterly taxes, how much to set aside, safe harbor, Q1\u002FQ2\u002FQ3\u002FQ4\n- **Year-end 1099 prep** — keywords: 1099, 1099-NEC, year-end, contractors, W-9, send 1099s, file 1099s\n- **Combined** — some users will ask \"year-end summary\" and need both. Run quarterly last; run 1099 prep first since it drives the most action items.\n\nIf the intent is ambiguous, ask: \"Are you looking at your estimated tax payment for this quarter, or are you preparing 1099s for your contractors — or both?\"\n\n---\n\n## Path 1: Quarterly estimated tax\n\n### 1. Pull YTD financials\n\nUse QuickBooks to pull a Profit & Loss report from January 1 of the current year through the last day of the most recently completed quarter. Capture:\n- **Gross revenue** (total income)\n- **Total expenses** (operating expenses, COGS, etc.)\n- **Net ordinary income** = revenue − expenses\n\nIf QuickBooks is not connected, ask the user to upload a P&L as CSV or paste the key numbers. For field names and query approach, see [reference\u002Fconnector-queries.md](reference\u002Fconnector-queries.md).\n\n### 2. Ask about prior estimated payments\n\nBefore calculating, ask: \"How much have you already paid in estimated taxes so far this year?\" If the user doesn't know, note that you'll calculate total liability — they can subtract payments themselves or check with their accountant.\n\n### 3. Calculate estimated liability\n\nSee [reference\u002Fcalculation-assumptions.md](reference\u002Fcalculation-assumptions.md) for the full math and the assumptions table you must include in output.\n\nShort version:\n1. **SE tax** = net profit × 0.9235 × 0.153 (then halve it — the deductible half offsets income)\n2. **Adjusted net** = net profit − (SE tax \u002F 2)\n3. **Federal income tax** = apply the bracket rate appropriate to the user's business type and estimated annual income (default to 22% unless the user tells you their bracket; note this assumption explicitly)\n4. **Total annual liability** = federal income tax + SE tax\n5. **Quarterly payment** = (total annual liability − payments made) ÷ quarters remaining\n6. **Safe harbor check** — note whether the user should verify against prior-year tax (100% of prior year, or 110% if AGI > $150k)\n\n### 4. State assumptions and deliver output\n\nUse this output structure:\n\nStructure the output as a document with these sections in order:\n\n1. **Header** — H2 with \"Estimated tax summary\" followed by the quarter and year.\n   Subline: prepared date and \"For review by your accountant.\"\n\n2. **YTD snapshot** — Bold lines showing YTD net profit with date range,\n   estimated annual net profit (annualized from YTD), and assumed business type\n   (sole proprietor, S-corp, etc. — flag as assumed, not confirmed).\n\n3. **Self-employment tax** — Show the SE tax calculation: net profit times\n   92.35% times 15.3%, and the deductible SE half.\n\n4. **Federal income tax estimate** — Adjusted net income, assumed bracket\n   (default 22%, note to confirm with accountant), and the federal estimate.\n\n5. **Total estimated annual liability** — SE tax plus federal income tax.\n\n6. **Quarterly payment** — Total liability minus payments already made, divided\n   by quarters remaining, with the specific dollar amount due and the due date.\n\n7. **Safe harbor note** — Remind the owner to ensure total payments meet 100%\n   of prior-year tax (or 110% if AGI exceeded $150k).\n\n8. **Assumptions** — Bullet list of every assumption: bracket rate, business\n   structure, state taxes excluded, deductible SE half included, and deductions\n   not applied (home office, QBI, depreciation).\n\n---\n\n## Path 2: Year-end 1099 prep\n\n### 1. Pull contractor payments from all sources\n\nQuery each connected source for **all payments made to individuals or businesses for services** in the tax year. Do not include payments for goods, refunds, or internal transfers.\n\n**QuickBooks — try live connector first, fall back to CSV if needed:**\n\n1. **Try live connector.** Attempt to pull vendor-level payment records via the QuickBooks MCP. If the connector returns individual payee records with name, amount, and account category, use them directly and skip the CSV step.\n\n2. **Detect aggregate-only response.** If the MCP returns only category-level totals (e.g. \"Contract labor: $7,500\" with no payee breakdown), the connector does not yet support vendor-level queries. In this case, prompt the user:\n\n   > \"QuickBooks returned summary data only — I need payee-level detail to build your 1099 list. Please export a **Transaction List by Vendor** report (QuickBooks → Reports → Expenses → Transaction List by Vendor, filtered to this tax year) and upload the CSV here. I'll process it automatically.\"\n\n3. **Process CSV via Desktop connector.** Map columns: payee name, amount, date, payment method, EIN\u002FSSN status. Follow the same aggregation and threshold logic below regardless of whether data came from the live connector or CSV.\n\n> **Note for future connector versions:** If the QuickBooks MCP is upgraded to expose vendor payment records directly, step 1 will succeed and the CSV fallback will be skipped automatically. No changes to this skill are needed — the try-first logic handles it.\n\nFor field names and query approach, see [reference\u002Fconnector-queries.md](reference\u002Fconnector-queries.md).\n\n**PayPal:** Pull all \"Goods & Services\" payments sent. Note: PayPal issues its own 1099-K to contractors above the threshold — flag these separately in output so the accountant can determine whether a 1099-NEC is also needed.\n\n**Stripe:** Pull all transfers\u002Fpayouts made to external parties. Same 1099-K caveat as PayPal applies.\n\n**Desktop\u002FCSV:** If the user uploads a CSV directly (without going through QuickBooks export), map columns: payee name, amount, date, payment method, EIN\u002FSSN status.\n\n### 2. Aggregate by payee\n\nCombine across sources and sum payments by individual or business entity. Deduplicate by name (watch for \"John Smith\" vs \"John A. Smith\" — flag likely duplicates for human review rather than auto-merging).\n\n### 3. Apply the $600 threshold\n\n- **Flag for 1099-NEC:** any payee paid ≥ $600 for services (contractors, freelancers, consultants)\n- **Flag for 1099-MISC:** any payee paid ≥ $600 for rent, attorney fees, prizes\u002Fawards\n- **Near-threshold alert:** flag payees paid $400–$599 — close to the threshold, accountant may want to verify\n\nCorporations (Inc., Corp., LLC taxed as C or S corp) generally do not need a 1099-NEC — note this but flag for accountant confirmation.\n\n### 4. Check W-9 status\n\nFor each flagged payee, note whether a W-9 \u002F EIN is on file in QuickBooks. Mark as:\n- ✅ W-9 on file (EIN\u002FSSN recorded in QuickBooks)\n- ⚠️ Missing — W-9 not on file; must collect before filing\n- ❓ Unknown — cannot determine from available data\n\n### 5. Deliver the 1099 prep package\n\nUse this structure:\n\nStructure the 1099 prep output as a document with these sections:\n\n1. **Header** — H2 with \"1099 prep list\" and the tax year. Subline: prepared\n   date, \"For review by your accountant,\" and \"Not tax advice.\"\n\n2. **Summary** — Bullet counts: total contractors paid, number requiring\n   1099-NEC (at or above $600 for services), number missing W-9 (with filing\n   deadline note for Jan 31), and number near-threshold flagged for review.\n\n3. **1099-NEC candidates table** — Columns: payee name, total paid, data\n   sources, W-9 status (on file \u002F missing \u002F unknown), and notes. Flag any\n   payee paid via PayPal or Stripe with a note that the platform may issue\n   its own 1099-K.\n\n4. **Missing W-9 action list** — Numbered list of contractors who need to\n   provide a W-9 before filing, with amounts paid and a reminder to request\n   the form.\n\n5. **Near-threshold table** — Payees paid $400-$599 flagged for accountant\n   review, with a note to verify no additional payments were missed.\n\n6. **Payment processor note** — Explain that PayPal and Stripe issue their own\n   1099-K forms and the accountant should confirm whether a 1099-NEC is also\n   needed for contractors paid exclusively through those platforms.\n\n7. **Next steps checklist** — Action items for the accountant: collect missing\n   W-9s, confirm unknowns, review near-threshold payees, verify corporation\n   exemptions, confirm 1099-K overlap handling, file by January 31.\n\n---\n\n## Guardrails\n\n- **Not tax advice.** Open every deliverable with this: \"Prepared for review by your accountant — not tax advice.\" Include it in the document header, not just in chat.\n- **State every assumption.** If you assumed a 22% bracket, say so. If you excluded state taxes, say so. The accountant will adjust; give them the levers.\n- **Don't merge payees automatically.** Flag likely duplicates for human review.\n- **Don't file anything.** The output is prep material. Filing is out of scope.\n- **Corporation exemption is a judgment call.** Note it; don't auto-exclude.\n\n## Reference files\n\n- [reference\u002Fcalculation-assumptions.md](reference\u002Fcalculation-assumptions.md) — full tax math, bracket table, and SE tax walkthrough\n- [reference\u002Fconnector-queries.md](reference\u002Fconnector-queries.md) — how to pull data from QuickBooks, PayPal, and Stripe\n- [reference\u002Fgotchas.md](reference\u002Fgotchas.md) — Good \u002F Bad patterns for common failure modes\n- [reference\u002Fexamples\u002Fquarterly-estimate.md](reference\u002Fexamples\u002Fquarterly-estimate.md) — worked quarterly estimate example\n- [reference\u002Fexamples\u002Fyear-end-1099.md](reference\u002Fexamples\u002Fyear-end-1099.md) — worked year-end 1099 prep example\n",{"data":35,"body":36},{"name":4,"description":6},{"type":37,"children":38},"root",[39,47,63,70,75,88,94,99,134,139,143,149,156,161,194,207,213,218,224,236,241,305,311,316,321,403,406,412,418,430,438,486,499,509,519,529,539,545,550,556,589,594,600,605,623,629,634,639,711,714,720,773,779],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":46},"text","Tax Season Organizer",{"type":40,"tag":48,"props":49,"children":50},"blockquote",{},[51],{"type":40,"tag":52,"props":53,"children":54},"p",{},[55,61],{"type":40,"tag":56,"props":57,"children":58},"strong",{},[59],{"type":45,"value":60},"Framing:",{"type":45,"value":62}," This skill produces prep material for a CPA, not tax advice. Say so early\nand state every assumption explicitly so the accountant can adjust.",{"type":40,"tag":64,"props":65,"children":67},"h2",{"id":66},"quick-start",[68],{"type":45,"value":69},"Quick start",{"type":40,"tag":52,"props":71,"children":72},{},[73],{"type":45,"value":74},"Determine which mode the user needs, pull the relevant data, calculate or compile,\nand deliver a structured document the accountant can work from directly.",{"type":40,"tag":76,"props":77,"children":81},"pre",{"className":78,"code":80,"language":45},[79],"language-text","User: \"what do I owe for estimated taxes this quarter?\"\n→ Pull YTD P&L from QuickBooks\n→ Calculate estimated federal income tax + SE tax\n→ Subtract payments already made this year\n→ Show Q-specific amount due with due date and assumptions stated\n→ Output: \"Estimated Q2 payment due June 16: $X — see full breakdown below\"\n\nUser: \"I need to send out 1099s\"\n→ Pull all contractor\u002Fvendor payments from QuickBooks + PayPal + Stripe\n→ Identify contractors paid ≥ $600 YTD\n→ Flag records missing W-9 \u002F EIN\n→ Output: 1099-NEC candidate list + missing W-9 action list\n",[82],{"type":40,"tag":83,"props":84,"children":86},"code",{"__ignoreMap":85},"",[87],{"type":45,"value":80},{"type":40,"tag":64,"props":89,"children":91},{"id":90},"determine-mode",[92],{"type":45,"value":93},"Determine mode",{"type":40,"tag":52,"props":95,"children":96},{},[97],{"type":45,"value":98},"Read the user's message and context to decide which path applies:",{"type":40,"tag":100,"props":101,"children":102},"ul",{},[103,114,124],{"type":40,"tag":104,"props":105,"children":106},"li",{},[107,112],{"type":40,"tag":56,"props":108,"children":109},{},[110],{"type":45,"value":111},"Quarterly estimate",{"type":45,"value":113}," — keywords: estimated payment, quarterly taxes, how much to set aside, safe harbor, Q1\u002FQ2\u002FQ3\u002FQ4",{"type":40,"tag":104,"props":115,"children":116},{},[117,122],{"type":40,"tag":56,"props":118,"children":119},{},[120],{"type":45,"value":121},"Year-end 1099 prep",{"type":45,"value":123}," — keywords: 1099, 1099-NEC, year-end, contractors, W-9, send 1099s, file 1099s",{"type":40,"tag":104,"props":125,"children":126},{},[127,132],{"type":40,"tag":56,"props":128,"children":129},{},[130],{"type":45,"value":131},"Combined",{"type":45,"value":133}," — some users will ask \"year-end summary\" and need both. Run quarterly last; run 1099 prep first since it drives the most action items.",{"type":40,"tag":52,"props":135,"children":136},{},[137],{"type":45,"value":138},"If the intent is ambiguous, ask: \"Are you looking at your estimated tax payment for this quarter, or are you preparing 1099s for your contractors — or both?\"",{"type":40,"tag":140,"props":141,"children":142},"hr",{},[],{"type":40,"tag":64,"props":144,"children":146},{"id":145},"path-1-quarterly-estimated-tax",[147],{"type":45,"value":148},"Path 1: Quarterly estimated tax",{"type":40,"tag":150,"props":151,"children":153},"h3",{"id":152},"_1-pull-ytd-financials",[154],{"type":45,"value":155},"1. Pull YTD financials",{"type":40,"tag":52,"props":157,"children":158},{},[159],{"type":45,"value":160},"Use QuickBooks to pull a Profit & Loss report from January 1 of the current year through the last day of the most recently completed quarter. Capture:",{"type":40,"tag":100,"props":162,"children":163},{},[164,174,184],{"type":40,"tag":104,"props":165,"children":166},{},[167,172],{"type":40,"tag":56,"props":168,"children":169},{},[170],{"type":45,"value":171},"Gross revenue",{"type":45,"value":173}," (total income)",{"type":40,"tag":104,"props":175,"children":176},{},[177,182],{"type":40,"tag":56,"props":178,"children":179},{},[180],{"type":45,"value":181},"Total expenses",{"type":45,"value":183}," (operating expenses, COGS, etc.)",{"type":40,"tag":104,"props":185,"children":186},{},[187,192],{"type":40,"tag":56,"props":188,"children":189},{},[190],{"type":45,"value":191},"Net ordinary income",{"type":45,"value":193}," = revenue − expenses",{"type":40,"tag":52,"props":195,"children":196},{},[197,199,205],{"type":45,"value":198},"If QuickBooks is not connected, ask the user to upload a P&L as CSV or paste the key numbers. For field names and query approach, see ",{"type":40,"tag":200,"props":201,"children":203},"a",{"href":202},"reference\u002Fconnector-queries.md",[204],{"type":45,"value":202},{"type":45,"value":206},".",{"type":40,"tag":150,"props":208,"children":210},{"id":209},"_2-ask-about-prior-estimated-payments",[211],{"type":45,"value":212},"2. Ask about prior estimated payments",{"type":40,"tag":52,"props":214,"children":215},{},[216],{"type":45,"value":217},"Before calculating, ask: \"How much have you already paid in estimated taxes so far this year?\" If the user doesn't know, note that you'll calculate total liability — they can subtract payments themselves or check with their accountant.",{"type":40,"tag":150,"props":219,"children":221},{"id":220},"_3-calculate-estimated-liability",[222],{"type":45,"value":223},"3. Calculate estimated liability",{"type":40,"tag":52,"props":225,"children":226},{},[227,229,234],{"type":45,"value":228},"See ",{"type":40,"tag":200,"props":230,"children":232},{"href":231},"reference\u002Fcalculation-assumptions.md",[233],{"type":45,"value":231},{"type":45,"value":235}," for the full math and the assumptions table you must include in output.",{"type":40,"tag":52,"props":237,"children":238},{},[239],{"type":45,"value":240},"Short version:",{"type":40,"tag":242,"props":243,"children":244},"ol",{},[245,255,265,275,285,295],{"type":40,"tag":104,"props":246,"children":247},{},[248,253],{"type":40,"tag":56,"props":249,"children":250},{},[251],{"type":45,"value":252},"SE tax",{"type":45,"value":254}," = net profit × 0.9235 × 0.153 (then halve it — the deductible half offsets income)",{"type":40,"tag":104,"props":256,"children":257},{},[258,263],{"type":40,"tag":56,"props":259,"children":260},{},[261],{"type":45,"value":262},"Adjusted net",{"type":45,"value":264}," = net profit − (SE tax \u002F 2)",{"type":40,"tag":104,"props":266,"children":267},{},[268,273],{"type":40,"tag":56,"props":269,"children":270},{},[271],{"type":45,"value":272},"Federal income tax",{"type":45,"value":274}," = apply the bracket rate appropriate to the user's business type and estimated annual income (default to 22% unless the user tells you their bracket; note this assumption explicitly)",{"type":40,"tag":104,"props":276,"children":277},{},[278,283],{"type":40,"tag":56,"props":279,"children":280},{},[281],{"type":45,"value":282},"Total annual liability",{"type":45,"value":284}," = federal income tax + SE tax",{"type":40,"tag":104,"props":286,"children":287},{},[288,293],{"type":40,"tag":56,"props":289,"children":290},{},[291],{"type":45,"value":292},"Quarterly payment",{"type":45,"value":294}," = (total annual liability − payments made) ÷ quarters remaining",{"type":40,"tag":104,"props":296,"children":297},{},[298,303],{"type":40,"tag":56,"props":299,"children":300},{},[301],{"type":45,"value":302},"Safe harbor check",{"type":45,"value":304}," — note whether the user should verify against prior-year tax (100% of prior year, or 110% if AGI > $150k)",{"type":40,"tag":150,"props":306,"children":308},{"id":307},"_4-state-assumptions-and-deliver-output",[309],{"type":45,"value":310},"4. State assumptions and deliver output",{"type":40,"tag":52,"props":312,"children":313},{},[314],{"type":45,"value":315},"Use this output structure:",{"type":40,"tag":52,"props":317,"children":318},{},[319],{"type":45,"value":320},"Structure the output as a document with these sections in order:",{"type":40,"tag":242,"props":322,"children":323},{},[324,334,344,354,364,374,383,393],{"type":40,"tag":104,"props":325,"children":326},{},[327,332],{"type":40,"tag":56,"props":328,"children":329},{},[330],{"type":45,"value":331},"Header",{"type":45,"value":333}," — H2 with \"Estimated tax summary\" followed by the quarter and year.\nSubline: prepared date and \"For review by your accountant.\"",{"type":40,"tag":104,"props":335,"children":336},{},[337,342],{"type":40,"tag":56,"props":338,"children":339},{},[340],{"type":45,"value":341},"YTD snapshot",{"type":45,"value":343}," — Bold lines showing YTD net profit with date range,\nestimated annual net profit (annualized from YTD), and assumed business type\n(sole proprietor, S-corp, etc. — flag as assumed, not confirmed).",{"type":40,"tag":104,"props":345,"children":346},{},[347,352],{"type":40,"tag":56,"props":348,"children":349},{},[350],{"type":45,"value":351},"Self-employment tax",{"type":45,"value":353}," — Show the SE tax calculation: net profit times\n92.35% times 15.3%, and the deductible SE half.",{"type":40,"tag":104,"props":355,"children":356},{},[357,362],{"type":40,"tag":56,"props":358,"children":359},{},[360],{"type":45,"value":361},"Federal income tax estimate",{"type":45,"value":363}," — Adjusted net income, assumed bracket\n(default 22%, note to confirm with accountant), and the federal estimate.",{"type":40,"tag":104,"props":365,"children":366},{},[367,372],{"type":40,"tag":56,"props":368,"children":369},{},[370],{"type":45,"value":371},"Total estimated annual liability",{"type":45,"value":373}," — SE tax plus federal income tax.",{"type":40,"tag":104,"props":375,"children":376},{},[377,381],{"type":40,"tag":56,"props":378,"children":379},{},[380],{"type":45,"value":292},{"type":45,"value":382}," — Total liability minus payments already made, divided\nby quarters remaining, with the specific dollar amount due and the due date.",{"type":40,"tag":104,"props":384,"children":385},{},[386,391],{"type":40,"tag":56,"props":387,"children":388},{},[389],{"type":45,"value":390},"Safe harbor note",{"type":45,"value":392}," — Remind the owner to ensure total payments meet 100%\nof prior-year tax (or 110% if AGI exceeded $150k).",{"type":40,"tag":104,"props":394,"children":395},{},[396,401],{"type":40,"tag":56,"props":397,"children":398},{},[399],{"type":45,"value":400},"Assumptions",{"type":45,"value":402}," — Bullet list of every assumption: bracket rate, business\nstructure, state taxes excluded, deductible SE half included, and deductions\nnot applied (home office, QBI, depreciation).",{"type":40,"tag":140,"props":404,"children":405},{},[],{"type":40,"tag":64,"props":407,"children":409},{"id":408},"path-2-year-end-1099-prep",[410],{"type":45,"value":411},"Path 2: Year-end 1099 prep",{"type":40,"tag":150,"props":413,"children":415},{"id":414},"_1-pull-contractor-payments-from-all-sources",[416],{"type":45,"value":417},"1. Pull contractor payments from all sources",{"type":40,"tag":52,"props":419,"children":420},{},[421,423,428],{"type":45,"value":422},"Query each connected source for ",{"type":40,"tag":56,"props":424,"children":425},{},[426],{"type":45,"value":427},"all payments made to individuals or businesses for services",{"type":45,"value":429}," in the tax year. Do not include payments for goods, refunds, or internal transfers.",{"type":40,"tag":52,"props":431,"children":432},{},[433],{"type":40,"tag":56,"props":434,"children":435},{},[436],{"type":45,"value":437},"QuickBooks — try live connector first, fall back to CSV if needed:",{"type":40,"tag":242,"props":439,"children":440},{},[441,451,476],{"type":40,"tag":104,"props":442,"children":443},{},[444,449],{"type":40,"tag":56,"props":445,"children":446},{},[447],{"type":45,"value":448},"Try live connector.",{"type":45,"value":450}," Attempt to pull vendor-level payment records via the QuickBooks MCP. If the connector returns individual payee records with name, amount, and account category, use them directly and skip the CSV step.",{"type":40,"tag":104,"props":452,"children":453},{},[454,459,461],{"type":40,"tag":56,"props":455,"children":456},{},[457],{"type":45,"value":458},"Detect aggregate-only response.",{"type":45,"value":460}," If the MCP returns only category-level totals (e.g. \"Contract labor: $7,500\" with no payee breakdown), the connector does not yet support vendor-level queries. In this case, prompt the user:",{"type":40,"tag":48,"props":462,"children":463},{},[464],{"type":40,"tag":52,"props":465,"children":466},{},[467,469,474],{"type":45,"value":468},"\"QuickBooks returned summary data only — I need payee-level detail to build your 1099 list. Please export a ",{"type":40,"tag":56,"props":470,"children":471},{},[472],{"type":45,"value":473},"Transaction List by Vendor",{"type":45,"value":475}," report (QuickBooks → Reports → Expenses → Transaction List by Vendor, filtered to this tax year) and upload the CSV here. I'll process it automatically.\"",{"type":40,"tag":104,"props":477,"children":478},{},[479,484],{"type":40,"tag":56,"props":480,"children":481},{},[482],{"type":45,"value":483},"Process CSV via Desktop connector.",{"type":45,"value":485}," Map columns: payee name, amount, date, payment method, EIN\u002FSSN status. Follow the same aggregation and threshold logic below regardless of whether data came from the live connector or CSV.",{"type":40,"tag":48,"props":487,"children":488},{},[489],{"type":40,"tag":52,"props":490,"children":491},{},[492,497],{"type":40,"tag":56,"props":493,"children":494},{},[495],{"type":45,"value":496},"Note for future connector versions:",{"type":45,"value":498}," If the QuickBooks MCP is upgraded to expose vendor payment records directly, step 1 will succeed and the CSV fallback will be skipped automatically. No changes to this skill are needed — the try-first logic handles it.",{"type":40,"tag":52,"props":500,"children":501},{},[502,504,508],{"type":45,"value":503},"For field names and query approach, see ",{"type":40,"tag":200,"props":505,"children":506},{"href":202},[507],{"type":45,"value":202},{"type":45,"value":206},{"type":40,"tag":52,"props":510,"children":511},{},[512,517],{"type":40,"tag":56,"props":513,"children":514},{},[515],{"type":45,"value":516},"PayPal:",{"type":45,"value":518}," Pull all \"Goods & Services\" payments sent. Note: PayPal issues its own 1099-K to contractors above the threshold — flag these separately in output so the accountant can determine whether a 1099-NEC is also needed.",{"type":40,"tag":52,"props":520,"children":521},{},[522,527],{"type":40,"tag":56,"props":523,"children":524},{},[525],{"type":45,"value":526},"Stripe:",{"type":45,"value":528}," Pull all transfers\u002Fpayouts made to external parties. Same 1099-K caveat as PayPal applies.",{"type":40,"tag":52,"props":530,"children":531},{},[532,537],{"type":40,"tag":56,"props":533,"children":534},{},[535],{"type":45,"value":536},"Desktop\u002FCSV:",{"type":45,"value":538}," If the user uploads a CSV directly (without going through QuickBooks export), map columns: payee name, amount, date, payment method, EIN\u002FSSN status.",{"type":40,"tag":150,"props":540,"children":542},{"id":541},"_2-aggregate-by-payee",[543],{"type":45,"value":544},"2. Aggregate by payee",{"type":40,"tag":52,"props":546,"children":547},{},[548],{"type":45,"value":549},"Combine across sources and sum payments by individual or business entity. Deduplicate by name (watch for \"John Smith\" vs \"John A. Smith\" — flag likely duplicates for human review rather than auto-merging).",{"type":40,"tag":150,"props":551,"children":553},{"id":552},"_3-apply-the-600-threshold",[554],{"type":45,"value":555},"3. Apply the $600 threshold",{"type":40,"tag":100,"props":557,"children":558},{},[559,569,579],{"type":40,"tag":104,"props":560,"children":561},{},[562,567],{"type":40,"tag":56,"props":563,"children":564},{},[565],{"type":45,"value":566},"Flag for 1099-NEC:",{"type":45,"value":568}," any payee paid ≥ $600 for services (contractors, freelancers, consultants)",{"type":40,"tag":104,"props":570,"children":571},{},[572,577],{"type":40,"tag":56,"props":573,"children":574},{},[575],{"type":45,"value":576},"Flag for 1099-MISC:",{"type":45,"value":578}," any payee paid ≥ $600 for rent, attorney fees, prizes\u002Fawards",{"type":40,"tag":104,"props":580,"children":581},{},[582,587],{"type":40,"tag":56,"props":583,"children":584},{},[585],{"type":45,"value":586},"Near-threshold alert:",{"type":45,"value":588}," flag payees paid $400–$599 — close to the threshold, accountant may want to verify",{"type":40,"tag":52,"props":590,"children":591},{},[592],{"type":45,"value":593},"Corporations (Inc., Corp., LLC taxed as C or S corp) generally do not need a 1099-NEC — note this but flag for accountant confirmation.",{"type":40,"tag":150,"props":595,"children":597},{"id":596},"_4-check-w-9-status",[598],{"type":45,"value":599},"4. Check W-9 status",{"type":40,"tag":52,"props":601,"children":602},{},[603],{"type":45,"value":604},"For each flagged payee, note whether a W-9 \u002F EIN is on file in QuickBooks. Mark as:",{"type":40,"tag":100,"props":606,"children":607},{},[608,613,618],{"type":40,"tag":104,"props":609,"children":610},{},[611],{"type":45,"value":612},"✅ W-9 on file (EIN\u002FSSN recorded in QuickBooks)",{"type":40,"tag":104,"props":614,"children":615},{},[616],{"type":45,"value":617},"⚠️ Missing — W-9 not on file; must collect before filing",{"type":40,"tag":104,"props":619,"children":620},{},[621],{"type":45,"value":622},"❓ Unknown — cannot determine from available data",{"type":40,"tag":150,"props":624,"children":626},{"id":625},"_5-deliver-the-1099-prep-package",[627],{"type":45,"value":628},"5. Deliver the 1099 prep package",{"type":40,"tag":52,"props":630,"children":631},{},[632],{"type":45,"value":633},"Use this structure:",{"type":40,"tag":52,"props":635,"children":636},{},[637],{"type":45,"value":638},"Structure the 1099 prep output as a document with these sections:",{"type":40,"tag":242,"props":640,"children":641},{},[642,651,661,671,681,691,701],{"type":40,"tag":104,"props":643,"children":644},{},[645,649],{"type":40,"tag":56,"props":646,"children":647},{},[648],{"type":45,"value":331},{"type":45,"value":650}," — H2 with \"1099 prep list\" and the tax year. Subline: prepared\ndate, \"For review by your accountant,\" and \"Not tax advice.\"",{"type":40,"tag":104,"props":652,"children":653},{},[654,659],{"type":40,"tag":56,"props":655,"children":656},{},[657],{"type":45,"value":658},"Summary",{"type":45,"value":660}," — Bullet counts: total contractors paid, number requiring\n1099-NEC (at or above $600 for services), number missing W-9 (with filing\ndeadline note for Jan 31), and number near-threshold flagged for review.",{"type":40,"tag":104,"props":662,"children":663},{},[664,669],{"type":40,"tag":56,"props":665,"children":666},{},[667],{"type":45,"value":668},"1099-NEC candidates table",{"type":45,"value":670}," — Columns: payee name, total paid, data\nsources, W-9 status (on file \u002F missing \u002F unknown), and notes. Flag any\npayee paid via PayPal or Stripe with a note that the platform may issue\nits own 1099-K.",{"type":40,"tag":104,"props":672,"children":673},{},[674,679],{"type":40,"tag":56,"props":675,"children":676},{},[677],{"type":45,"value":678},"Missing W-9 action list",{"type":45,"value":680}," — Numbered list of contractors who need to\nprovide a W-9 before filing, with amounts paid and a reminder to request\nthe form.",{"type":40,"tag":104,"props":682,"children":683},{},[684,689],{"type":40,"tag":56,"props":685,"children":686},{},[687],{"type":45,"value":688},"Near-threshold table",{"type":45,"value":690}," — Payees paid $400-$599 flagged for accountant\nreview, with a note to verify no additional payments were missed.",{"type":40,"tag":104,"props":692,"children":693},{},[694,699],{"type":40,"tag":56,"props":695,"children":696},{},[697],{"type":45,"value":698},"Payment processor note",{"type":45,"value":700}," — Explain that PayPal and Stripe issue their own\n1099-K forms and the accountant should confirm whether a 1099-NEC is also\nneeded for contractors paid exclusively through those platforms.",{"type":40,"tag":104,"props":702,"children":703},{},[704,709],{"type":40,"tag":56,"props":705,"children":706},{},[707],{"type":45,"value":708},"Next steps checklist",{"type":45,"value":710}," — Action items for the accountant: collect missing\nW-9s, confirm unknowns, review near-threshold payees, verify corporation\nexemptions, confirm 1099-K overlap handling, file by January 31.",{"type":40,"tag":140,"props":712,"children":713},{},[],{"type":40,"tag":64,"props":715,"children":717},{"id":716},"guardrails",[718],{"type":45,"value":719},"Guardrails",{"type":40,"tag":100,"props":721,"children":722},{},[723,733,743,753,763],{"type":40,"tag":104,"props":724,"children":725},{},[726,731],{"type":40,"tag":56,"props":727,"children":728},{},[729],{"type":45,"value":730},"Not tax advice.",{"type":45,"value":732}," Open every deliverable with this: \"Prepared for review by your accountant — not tax advice.\" Include it in the document header, not just in chat.",{"type":40,"tag":104,"props":734,"children":735},{},[736,741],{"type":40,"tag":56,"props":737,"children":738},{},[739],{"type":45,"value":740},"State every assumption.",{"type":45,"value":742}," If you assumed a 22% bracket, say so. If you excluded state taxes, say so. The accountant will adjust; give them the levers.",{"type":40,"tag":104,"props":744,"children":745},{},[746,751],{"type":40,"tag":56,"props":747,"children":748},{},[749],{"type":45,"value":750},"Don't merge payees automatically.",{"type":45,"value":752}," Flag likely duplicates for human review.",{"type":40,"tag":104,"props":754,"children":755},{},[756,761],{"type":40,"tag":56,"props":757,"children":758},{},[759],{"type":45,"value":760},"Don't file anything.",{"type":45,"value":762}," The output is prep material. Filing is out of scope.",{"type":40,"tag":104,"props":764,"children":765},{},[766,771],{"type":40,"tag":56,"props":767,"children":768},{},[769],{"type":45,"value":770},"Corporation exemption is a judgment call.",{"type":45,"value":772}," Note it; don't auto-exclude.",{"type":40,"tag":64,"props":774,"children":776},{"id":775},"reference-files",[777],{"type":45,"value":778},"Reference files",{"type":40,"tag":100,"props":780,"children":781},{},[782,791,800,810,820],{"type":40,"tag":104,"props":783,"children":784},{},[785,789],{"type":40,"tag":200,"props":786,"children":787},{"href":231},[788],{"type":45,"value":231},{"type":45,"value":790}," — full tax math, bracket table, and SE tax walkthrough",{"type":40,"tag":104,"props":792,"children":793},{},[794,798],{"type":40,"tag":200,"props":795,"children":796},{"href":202},[797],{"type":45,"value":202},{"type":45,"value":799}," — how to pull data from QuickBooks, PayPal, and Stripe",{"type":40,"tag":104,"props":801,"children":802},{},[803,808],{"type":40,"tag":200,"props":804,"children":806},{"href":805},"reference\u002Fgotchas.md",[807],{"type":45,"value":805},{"type":45,"value":809}," — Good \u002F Bad patterns for common failure modes",{"type":40,"tag":104,"props":811,"children":812},{},[813,818],{"type":40,"tag":200,"props":814,"children":816},{"href":815},"reference\u002Fexamples\u002Fquarterly-estimate.md",[817],{"type":45,"value":815},{"type":45,"value":819}," — worked quarterly estimate example",{"type":40,"tag":104,"props":821,"children":822},{},[823,828],{"type":40,"tag":200,"props":824,"children":826},{"href":825},"reference\u002Fexamples\u002Fyear-end-1099.md",[827],{"type":45,"value":825},{"type":45,"value":829}," — worked year-end 1099 prep example",{"items":831,"total":1018},[832,853,867,879,898,911,932,952,966,981,989,1002],{"slug":833,"name":833,"fn":834,"description":835,"org":836,"tags":837,"stars":850,"repoUrl":851,"updatedAt":852},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[838,841,844,847],{"name":839,"slug":840,"type":16},"Creative","creative",{"name":842,"slug":843,"type":16},"Design","design",{"name":845,"slug":846,"type":16},"Generative Art","generative-art",{"name":848,"slug":849,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":854,"name":854,"fn":855,"description":856,"org":857,"tags":858,"stars":850,"repoUrl":851,"updatedAt":866},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[859,862,863],{"name":860,"slug":861,"type":16},"Branding","branding",{"name":842,"slug":843,"type":16},{"name":864,"slug":865,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":868,"name":868,"fn":869,"description":870,"org":871,"tags":872,"stars":850,"repoUrl":851,"updatedAt":878},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[873,874,875],{"name":839,"slug":840,"type":16},{"name":842,"slug":843,"type":16},{"name":876,"slug":877,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":880,"name":880,"fn":881,"description":882,"org":883,"tags":884,"stars":850,"repoUrl":851,"updatedAt":897},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[885,888,889,892,894],{"name":886,"slug":887,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":890,"slug":891,"type":16},"Anthropic SDK","anthropic-sdk",{"name":893,"slug":880,"type":16},"Claude API",{"name":895,"slug":896,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":899,"name":899,"fn":900,"description":901,"org":902,"tags":903,"stars":850,"repoUrl":851,"updatedAt":910},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[904,907],{"name":905,"slug":906,"type":16},"Documentation","documentation",{"name":908,"slug":909,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":912,"name":912,"fn":913,"description":914,"org":915,"tags":916,"stars":850,"repoUrl":851,"updatedAt":931},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[917,920,922,925,928],{"name":918,"slug":919,"type":16},"Documents","documents",{"name":921,"slug":912,"type":16},"DOCX",{"name":923,"slug":924,"type":16},"Office","office",{"name":926,"slug":927,"type":16},"Templates","templates",{"name":929,"slug":930,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":933,"name":933,"fn":934,"description":935,"org":936,"tags":937,"stars":850,"repoUrl":851,"updatedAt":951},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[938,939,942,945,948],{"name":842,"slug":843,"type":16},{"name":940,"slug":941,"type":16},"Frontend","frontend",{"name":943,"slug":944,"type":16},"React","react",{"name":946,"slug":947,"type":16},"Tailwind CSS","tailwind-css",{"name":949,"slug":950,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":953,"name":953,"fn":954,"description":955,"org":956,"tags":957,"stars":850,"repoUrl":851,"updatedAt":965},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[958,961,962],{"name":959,"slug":960,"type":16},"Communications","communications",{"name":926,"slug":927,"type":16},{"name":963,"slug":964,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":967,"name":967,"fn":968,"description":969,"org":970,"tags":971,"stars":850,"repoUrl":851,"updatedAt":980},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[972,973,976,977],{"name":886,"slug":887,"type":16},{"name":974,"slug":975,"type":16},"API Development","api-development",{"name":895,"slug":896,"type":16},{"name":978,"slug":979,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":877,"name":877,"fn":982,"description":983,"org":984,"tags":985,"stars":850,"repoUrl":851,"updatedAt":988},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[986,987],{"name":918,"slug":919,"type":16},{"name":876,"slug":877,"type":16},"2026-04-06T17:56:02.483316",{"slug":990,"name":990,"fn":991,"description":992,"org":993,"tags":994,"stars":850,"repoUrl":851,"updatedAt":1001},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[995,998],{"name":996,"slug":997,"type":16},"PowerPoint","powerpoint",{"name":999,"slug":1000,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":1003,"name":1003,"fn":1004,"description":1005,"org":1006,"tags":1007,"stars":850,"repoUrl":851,"updatedAt":1017},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1008,1009,1010,1013,1016],{"name":886,"slug":887,"type":16},{"name":905,"slug":906,"type":16},{"name":1011,"slug":1012,"type":16},"Evals","evals",{"name":1014,"slug":1015,"type":16},"Performance","performance",{"name":908,"slug":909,"type":16},"2026-04-19T06:45:40.804",490,{"items":1020,"total":1125},[1021,1035,1051,1067,1083,1100,1112],{"slug":1022,"name":1022,"fn":1023,"description":1024,"org":1025,"tags":1026,"stars":23,"repoUrl":24,"updatedAt":1034},"accessibility-review","run WCAG accessibility audits","Run a WCAG 2.1 AA accessibility audit on a design or page. Trigger with \"audit accessibility\", \"check a11y\", \"is this accessible?\", or when reviewing a design for color contrast, keyboard navigation, touch target size, or screen reader behavior before handoff.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1027,1030,1031],{"name":1028,"slug":1029,"type":16},"Accessibility","accessibility",{"name":842,"slug":843,"type":16},{"name":1032,"slug":1033,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":1036,"name":1036,"fn":1037,"description":1038,"org":1039,"tags":1040,"stars":23,"repoUrl":24,"updatedAt":1050},"account-research","research accounts for sales intel","Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM. Trigger with \"research [company]\", \"look up [person]\", \"intel on [prospect]\", \"who is [name] at [company]\", or \"tell me about [company]\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1041,1044,1047],{"name":1042,"slug":1043,"type":16},"CRM","crm",{"name":1045,"slug":1046,"type":16},"Research","research",{"name":1048,"slug":1049,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":1052,"name":1052,"fn":1053,"description":1054,"org":1055,"tags":1056,"stars":23,"repoUrl":24,"updatedAt":1066},"analyze","answer data questions and run analyses","Answer data questions -- from quick lookups to full analyses. Use when looking up a single metric, investigating what's driving a trend or drop, comparing segments over time, or preparing a formal data report for stakeholders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1057,1060,1063],{"name":1058,"slug":1059,"type":16},"Analytics","analytics",{"name":1061,"slug":1062,"type":16},"Data Analysis","data-analysis",{"name":1064,"slug":1065,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":1068,"name":1068,"fn":1069,"description":1070,"org":1071,"tags":1072,"stars":23,"repoUrl":24,"updatedAt":1082},"architecture","create and evaluate architecture decision records","Create or evaluate an architecture decision record (ADR). Use when choosing between technologies (e.g., Kafka vs SQS), documenting a design decision with trade-offs and consequences, reviewing a system design proposal, or designing a new component from requirements and constraints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1073,1076,1078,1079],{"name":1074,"slug":1075,"type":16},"ADR","adr",{"name":1077,"slug":1068,"type":16},"Architecture",{"name":905,"slug":906,"type":16},{"name":1080,"slug":1081,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":1084,"name":1084,"fn":1085,"description":1086,"org":1087,"tags":1088,"stars":23,"repoUrl":24,"updatedAt":1099},"audit-support","support SOX 404 control testing","Support SOX 404 compliance with control testing methodology, sample selection, and documentation standards. Use when generating testing workpapers, selecting audit samples, classifying control deficiencies, or preparing for internal or external audits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1089,1092,1093,1096],{"name":1090,"slug":1091,"type":16},"Audit","audit",{"name":18,"slug":19,"type":16},{"name":1094,"slug":1095,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":1097,"slug":1098,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":1101,"name":1101,"fn":1102,"description":1103,"org":1104,"tags":1105,"stars":23,"repoUrl":24,"updatedAt":1111},"brand-review","review content against brand voice","Review content against your brand voice, style guide, and messaging pillars, flagging deviations by severity with specific before\u002Fafter fixes. Use when checking a draft before it ships, when auditing copy for voice consistency and terminology, or when screening for unsubstantiated claims, missing disclaimers, and other legal flags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1106,1107,1110],{"name":860,"slug":861,"type":16},{"name":1108,"slug":1109,"type":16},"Marketing","marketing",{"name":963,"slug":964,"type":16},"2026-04-06T17:58:19.548331",{"slug":1113,"name":1113,"fn":1114,"description":1115,"org":1116,"tags":1117,"stars":23,"repoUrl":24,"updatedAt":1124},"brand-voice-enforcement","enforce brand voice in content","This skill applies brand guidelines to content creation. It should be used when the user asks to \"write an email\", \"draft a proposal\", \"create a pitch deck\", \"write a LinkedIn post\", \"draft a presentation\", \"write a Slack message\", \"draft sales content\", or any content creation request where brand voice should be applied. Also triggers on \"on-brand\", \"brand voice\", \"enforce voice\", \"apply brand guidelines\", \"brand-aligned content\", \"write in our voice\", \"use our brand tone\", \"make this sound like us\", \"rewrite this in our tone\", or \"this doesn't sound on-brand\". Not for generating guidelines from scratch (use guideline-generation) or discovering brand materials (use discover-brand).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1118,1119,1120,1123],{"name":860,"slug":861,"type":16},{"name":959,"slug":960,"type":16},{"name":1121,"slug":1122,"type":16},"Content Creation","content-creation",{"name":963,"slug":964,"type":16},"2026-04-06T18:00:23.528956",200]