[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-rivet-sdk":3,"mdc--jvponm-key":37,"related-repo-anthropic-rivet-sdk":590,"related-org-anthropic-rivet-sdk":709},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"rivet-sdk","implement Zoom Rivet SDK","Reference skill for Zoom Rivet SDK. Use after routing to a Rivet-based server workflow when implementing auth handling, webhook consumers, API wrappers, multi-module composition, or Lambda receiver patterns.",{"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,23],{"name":14,"slug":15,"type":16},"Backend","backend","tag",{"name":18,"slug":19,"type":16},"API Development","api-development",{"name":21,"slug":22,"type":16},"SDK","sdk",{"name":24,"slug":25,"type":16},"Zoom","zoom",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-10T04:57:01.099728",null,2736,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"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\u002Fpartner-built\u002Fzoom-plugin\u002Fskills\u002Frivet-sdk","---\nname: rivet-sdk\ndescription: \"Reference skill for Zoom Rivet SDK. Use after routing to a Rivet-based server workflow when implementing auth handling, webhook consumers, API wrappers, multi-module composition, or Lambda receiver patterns.\"\nuser-invocable: false\ntriggers:\n  - \"rivet\"\n  - \"zoom rivet\"\n  - \"@zoom\u002Frivet\"\n  - \"rivet javascript\"\n  - \"rivet sdk\"\n  - \"rivet webhook\"\n  - \"rivet oauth\"\n  - \"rivet lambda\"\n  - \"rivet team chat\"\n  - \"rivet chatbot\"\n---\n\n# Zoom Rivet SDK\n\nBackground reference for Zoom Rivet as a JavaScript and TypeScript server framework for Zoom integrations.\n\nImplementation guidance for Zoom Rivet (JavaScript\u002FTypeScript) as a server-side framework for:\n- OAuth and token handling\n- Webhook event consumption\n- Typed REST API endpoint wrappers\n- Multi-module server composition\n\nOfficial docs:\n- https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Frivet\u002F\n- https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Frivet\u002Fjavascript\u002F\n- https:\u002F\u002Fzoom.github.io\u002Frivet-javascript\u002F\n\nReference samples:\n- https:\u002F\u002Fgithub.com\u002Fzoom\u002Frivet-javascript-sample\n- https:\u002F\u002Fgithub.com\u002Fzoom\u002Fisv-rivet-starter\n- https:\u002F\u002Fgithub.com\u002Fzoom\u002FRivet-Server-Sample\n- https:\u002F\u002Fgithub.com\u002Fzoom\u002Frivet-javascript\n\n## Routing Guardrail\n\n- Rivet SDK is a Node.js framework that bundles Zoom auth handling, webhook receivers, and typed API wrappers.\n- Rivet is recommended for faster server-side scaffolding, but it is not mandatory.\n- At planning start, confirm preference:\n- `Do you want Rivet SDK, or direct OAuth + REST without Rivet?`\n- Use Rivet when the user wants a Node.js server that combines Zoom auth + webhooks + API calls with minimal glue code.\n- If the user only needs direct API calls from an existing backend, chain with [..\u002Frest-api\u002FSKILL.md](..\u002Frest-api\u002FSKILL.md).\n- If the user is focused on Zoom Team Chat app cards\u002Fcommands behavior, chain with [..\u002Fteam-chat\u002FSKILL.md](..\u002Fteam-chat\u002FSKILL.md).\n- If the user needs SDK embed (Meeting SDK\u002FVideo SDK client runtime), route to [..\u002Fmeeting-sdk\u002FSKILL.md](..\u002Fmeeting-sdk\u002FSKILL.md) or [..\u002Fvideo-sdk\u002FSKILL.md](..\u002Fvideo-sdk\u002FSKILL.md).\n\n## Quick Links\n\nStart here:\n1. [concepts\u002Farchitecture-and-lifecycle.md](concepts\u002Farchitecture-and-lifecycle.md)\n2. [scenarios\u002Fhigh-level-scenarios.md](scenarios\u002Fhigh-level-scenarios.md)\n3. [examples\u002Fgetting-started-pattern.md](examples\u002Fgetting-started-pattern.md)\n4. [examples\u002Fmulti-client-pattern.md](examples\u002Fmulti-client-pattern.md)\n5. [references\u002Frivet-reference-map.md](references\u002Frivet-reference-map.md)\n6. [references\u002Fversioning-and-compatibility.md](references\u002Fversioning-and-compatibility.md)\n7. [references\u002Fsamples-validation.md](references\u002Fsamples-validation.md)\n8. [references\u002Fsource-map.md](references\u002Fsource-map.md)\n9. [references\u002Fenvironment-variables.md](references\u002Fenvironment-variables.md)\n10. [troubleshooting\u002Fcommon-issues.md](troubleshooting\u002Fcommon-issues.md)\n11. [RUNBOOK.md](RUNBOOK.md)\n12. [rivet-sdk.md](rivet-sdk.md)\n\n## Common Lifecycle Pattern\n\n1. Choose modules and auth model per module (Client Credentials, User OAuth, S2S OAuth, Video SDK JWT).\n2. Instantiate client(s) with credentials, webhook secret, and per-module port.\n3. Register event handlers (`webEventConsumer.event(...)` or shortcuts).\n4. Implement API calls through `client.endpoints.*`.\n5. Start receiver(s) and expose webhook endpoint(s) (`\u002Fzoom\u002Fevents`) to Zoom.\n6. Persist tokens\u002Fstate for OAuth workloads and enforce signature verification.\n7. Monitor module-specific failures and rotate secrets\u002Fversion with changelog cadence.\n\n## High-Level Scenarios\n\n- Team Chat slash-command bot + Team Chat data API enrichment.\n- Multi-module backend (Users + Meetings + Team Chat + Phone) sharing one process.\n- Video SDK telemetry backend using `videosdk` module event stream + API surfaces.\n- ISV orchestration layer with tenant-aware token storage and per-module webhooks.\n- AWS Lambda webhook processor with Rivet `AwsLambdaReceiver`.\n\nSee [scenarios\u002Fhigh-level-scenarios.md](scenarios\u002Fhigh-level-scenarios.md) for details.\n\n## Chaining\n\n- OAuth architecture and grant selection: [..\u002Foauth\u002FSKILL.md](..\u002Foauth\u002FSKILL.md)\n- API endpoint semantics and request payload details: [..\u002Frest-api\u002FSKILL.md](..\u002Frest-api\u002FSKILL.md)\n- Team Chat app cards, command and bot UX: [..\u002Fteam-chat\u002FSKILL.md](..\u002Fteam-chat\u002FSKILL.md)\n- Video SDK API-specific behavior and BYOS context: [..\u002Fvideo-sdk\u002FSKILL.md](..\u002Fvideo-sdk\u002FSKILL.md)\n\n## Environment Variables\n\n- See [references\u002Fenvironment-variables.md](references\u002Fenvironment-variables.md) for standardized `.env` keys and where to find each value.\n\n## Operations\n\n- [RUNBOOK.md](RUNBOOK.md) - 5-minute preflight and debugging checklist.\n",{"data":38,"body":51},{"name":4,"description":6,"user-invocable":39,"triggers":40},false,[41,42,43,44,45,46,47,48,49,50],"rivet","zoom rivet","@zoom\u002Frivet","rivet javascript","rivet sdk","rivet webhook","rivet oauth","rivet lambda","rivet team chat","rivet chatbot",{"type":52,"children":53},"root",[54,63,69,74,99,104,136,141,180,187,261,267,272,372,378,439,445,488,499,505,545,551,572,578],{"type":55,"tag":56,"props":57,"children":59},"element","h1",{"id":58},"zoom-rivet-sdk",[60],{"type":61,"value":62},"text","Zoom Rivet SDK",{"type":55,"tag":64,"props":65,"children":66},"p",{},[67],{"type":61,"value":68},"Background reference for Zoom Rivet as a JavaScript and TypeScript server framework for Zoom integrations.",{"type":55,"tag":64,"props":70,"children":71},{},[72],{"type":61,"value":73},"Implementation guidance for Zoom Rivet (JavaScript\u002FTypeScript) as a server-side framework for:",{"type":55,"tag":75,"props":76,"children":77},"ul",{},[78,84,89,94],{"type":55,"tag":79,"props":80,"children":81},"li",{},[82],{"type":61,"value":83},"OAuth and token handling",{"type":55,"tag":79,"props":85,"children":86},{},[87],{"type":61,"value":88},"Webhook event consumption",{"type":55,"tag":79,"props":90,"children":91},{},[92],{"type":61,"value":93},"Typed REST API endpoint wrappers",{"type":55,"tag":79,"props":95,"children":96},{},[97],{"type":61,"value":98},"Multi-module server composition",{"type":55,"tag":64,"props":100,"children":101},{},[102],{"type":61,"value":103},"Official docs:",{"type":55,"tag":75,"props":105,"children":106},{},[107,118,127],{"type":55,"tag":79,"props":108,"children":109},{},[110],{"type":55,"tag":111,"props":112,"children":116},"a",{"href":113,"rel":114},"https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Frivet\u002F",[115],"nofollow",[117],{"type":61,"value":113},{"type":55,"tag":79,"props":119,"children":120},{},[121],{"type":55,"tag":111,"props":122,"children":125},{"href":123,"rel":124},"https:\u002F\u002Fdevelopers.zoom.us\u002Fdocs\u002Frivet\u002Fjavascript\u002F",[115],[126],{"type":61,"value":123},{"type":55,"tag":79,"props":128,"children":129},{},[130],{"type":55,"tag":111,"props":131,"children":134},{"href":132,"rel":133},"https:\u002F\u002Fzoom.github.io\u002Frivet-javascript\u002F",[115],[135],{"type":61,"value":132},{"type":55,"tag":64,"props":137,"children":138},{},[139],{"type":61,"value":140},"Reference samples:",{"type":55,"tag":75,"props":142,"children":143},{},[144,153,162,171],{"type":55,"tag":79,"props":145,"children":146},{},[147],{"type":55,"tag":111,"props":148,"children":151},{"href":149,"rel":150},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Frivet-javascript-sample",[115],[152],{"type":61,"value":149},{"type":55,"tag":79,"props":154,"children":155},{},[156],{"type":55,"tag":111,"props":157,"children":160},{"href":158,"rel":159},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Fisv-rivet-starter",[115],[161],{"type":61,"value":158},{"type":55,"tag":79,"props":163,"children":164},{},[165],{"type":55,"tag":111,"props":166,"children":169},{"href":167,"rel":168},"https:\u002F\u002Fgithub.com\u002Fzoom\u002FRivet-Server-Sample",[115],[170],{"type":61,"value":167},{"type":55,"tag":79,"props":172,"children":173},{},[174],{"type":55,"tag":111,"props":175,"children":178},{"href":176,"rel":177},"https:\u002F\u002Fgithub.com\u002Fzoom\u002Frivet-javascript",[115],[179],{"type":61,"value":176},{"type":55,"tag":181,"props":182,"children":184},"h2",{"id":183},"routing-guardrail",[185],{"type":61,"value":186},"Routing Guardrail",{"type":55,"tag":75,"props":188,"children":189},{},[190,195,200,205,215,220,232,243],{"type":55,"tag":79,"props":191,"children":192},{},[193],{"type":61,"value":194},"Rivet SDK is a Node.js framework that bundles Zoom auth handling, webhook receivers, and typed API wrappers.",{"type":55,"tag":79,"props":196,"children":197},{},[198],{"type":61,"value":199},"Rivet is recommended for faster server-side scaffolding, but it is not mandatory.",{"type":55,"tag":79,"props":201,"children":202},{},[203],{"type":61,"value":204},"At planning start, confirm preference:",{"type":55,"tag":79,"props":206,"children":207},{},[208],{"type":55,"tag":209,"props":210,"children":212},"code",{"className":211},[],[213],{"type":61,"value":214},"Do you want Rivet SDK, or direct OAuth + REST without Rivet?",{"type":55,"tag":79,"props":216,"children":217},{},[218],{"type":61,"value":219},"Use Rivet when the user wants a Node.js server that combines Zoom auth + webhooks + API calls with minimal glue code.",{"type":55,"tag":79,"props":221,"children":222},{},[223,225,230],{"type":61,"value":224},"If the user only needs direct API calls from an existing backend, chain with ",{"type":55,"tag":111,"props":226,"children":228},{"href":227},"..\u002Frest-api\u002FSKILL.md",[229],{"type":61,"value":227},{"type":61,"value":231},".",{"type":55,"tag":79,"props":233,"children":234},{},[235,237,242],{"type":61,"value":236},"If the user is focused on Zoom Team Chat app cards\u002Fcommands behavior, chain with ",{"type":55,"tag":111,"props":238,"children":240},{"href":239},"..\u002Fteam-chat\u002FSKILL.md",[241],{"type":61,"value":239},{"type":61,"value":231},{"type":55,"tag":79,"props":244,"children":245},{},[246,248,253,255,260],{"type":61,"value":247},"If the user needs SDK embed (Meeting SDK\u002FVideo SDK client runtime), route to ",{"type":55,"tag":111,"props":249,"children":251},{"href":250},"..\u002Fmeeting-sdk\u002FSKILL.md",[252],{"type":61,"value":250},{"type":61,"value":254}," or ",{"type":55,"tag":111,"props":256,"children":258},{"href":257},"..\u002Fvideo-sdk\u002FSKILL.md",[259],{"type":61,"value":257},{"type":61,"value":231},{"type":55,"tag":181,"props":262,"children":264},{"id":263},"quick-links",[265],{"type":61,"value":266},"Quick Links",{"type":55,"tag":64,"props":268,"children":269},{},[270],{"type":61,"value":271},"Start here:",{"type":55,"tag":273,"props":274,"children":275},"ol",{},[276,284,292,300,308,316,324,332,340,348,356,364],{"type":55,"tag":79,"props":277,"children":278},{},[279],{"type":55,"tag":111,"props":280,"children":282},{"href":281},"concepts\u002Farchitecture-and-lifecycle.md",[283],{"type":61,"value":281},{"type":55,"tag":79,"props":285,"children":286},{},[287],{"type":55,"tag":111,"props":288,"children":290},{"href":289},"scenarios\u002Fhigh-level-scenarios.md",[291],{"type":61,"value":289},{"type":55,"tag":79,"props":293,"children":294},{},[295],{"type":55,"tag":111,"props":296,"children":298},{"href":297},"examples\u002Fgetting-started-pattern.md",[299],{"type":61,"value":297},{"type":55,"tag":79,"props":301,"children":302},{},[303],{"type":55,"tag":111,"props":304,"children":306},{"href":305},"examples\u002Fmulti-client-pattern.md",[307],{"type":61,"value":305},{"type":55,"tag":79,"props":309,"children":310},{},[311],{"type":55,"tag":111,"props":312,"children":314},{"href":313},"references\u002Frivet-reference-map.md",[315],{"type":61,"value":313},{"type":55,"tag":79,"props":317,"children":318},{},[319],{"type":55,"tag":111,"props":320,"children":322},{"href":321},"references\u002Fversioning-and-compatibility.md",[323],{"type":61,"value":321},{"type":55,"tag":79,"props":325,"children":326},{},[327],{"type":55,"tag":111,"props":328,"children":330},{"href":329},"references\u002Fsamples-validation.md",[331],{"type":61,"value":329},{"type":55,"tag":79,"props":333,"children":334},{},[335],{"type":55,"tag":111,"props":336,"children":338},{"href":337},"references\u002Fsource-map.md",[339],{"type":61,"value":337},{"type":55,"tag":79,"props":341,"children":342},{},[343],{"type":55,"tag":111,"props":344,"children":346},{"href":345},"references\u002Fenvironment-variables.md",[347],{"type":61,"value":345},{"type":55,"tag":79,"props":349,"children":350},{},[351],{"type":55,"tag":111,"props":352,"children":354},{"href":353},"troubleshooting\u002Fcommon-issues.md",[355],{"type":61,"value":353},{"type":55,"tag":79,"props":357,"children":358},{},[359],{"type":55,"tag":111,"props":360,"children":362},{"href":361},"RUNBOOK.md",[363],{"type":61,"value":361},{"type":55,"tag":79,"props":365,"children":366},{},[367],{"type":55,"tag":111,"props":368,"children":370},{"href":369},"rivet-sdk.md",[371],{"type":61,"value":369},{"type":55,"tag":181,"props":373,"children":375},{"id":374},"common-lifecycle-pattern",[376],{"type":61,"value":377},"Common Lifecycle Pattern",{"type":55,"tag":273,"props":379,"children":380},{},[381,386,391,404,416,429,434],{"type":55,"tag":79,"props":382,"children":383},{},[384],{"type":61,"value":385},"Choose modules and auth model per module (Client Credentials, User OAuth, S2S OAuth, Video SDK JWT).",{"type":55,"tag":79,"props":387,"children":388},{},[389],{"type":61,"value":390},"Instantiate client(s) with credentials, webhook secret, and per-module port.",{"type":55,"tag":79,"props":392,"children":393},{},[394,396,402],{"type":61,"value":395},"Register event handlers (",{"type":55,"tag":209,"props":397,"children":399},{"className":398},[],[400],{"type":61,"value":401},"webEventConsumer.event(...)",{"type":61,"value":403}," or shortcuts).",{"type":55,"tag":79,"props":405,"children":406},{},[407,409,415],{"type":61,"value":408},"Implement API calls through ",{"type":55,"tag":209,"props":410,"children":412},{"className":411},[],[413],{"type":61,"value":414},"client.endpoints.*",{"type":61,"value":231},{"type":55,"tag":79,"props":417,"children":418},{},[419,421,427],{"type":61,"value":420},"Start receiver(s) and expose webhook endpoint(s) (",{"type":55,"tag":209,"props":422,"children":424},{"className":423},[],[425],{"type":61,"value":426},"\u002Fzoom\u002Fevents",{"type":61,"value":428},") to Zoom.",{"type":55,"tag":79,"props":430,"children":431},{},[432],{"type":61,"value":433},"Persist tokens\u002Fstate for OAuth workloads and enforce signature verification.",{"type":55,"tag":79,"props":435,"children":436},{},[437],{"type":61,"value":438},"Monitor module-specific failures and rotate secrets\u002Fversion with changelog cadence.",{"type":55,"tag":181,"props":440,"children":442},{"id":441},"high-level-scenarios",[443],{"type":61,"value":444},"High-Level Scenarios",{"type":55,"tag":75,"props":446,"children":447},{},[448,453,458,471,476],{"type":55,"tag":79,"props":449,"children":450},{},[451],{"type":61,"value":452},"Team Chat slash-command bot + Team Chat data API enrichment.",{"type":55,"tag":79,"props":454,"children":455},{},[456],{"type":61,"value":457},"Multi-module backend (Users + Meetings + Team Chat + Phone) sharing one process.",{"type":55,"tag":79,"props":459,"children":460},{},[461,463,469],{"type":61,"value":462},"Video SDK telemetry backend using ",{"type":55,"tag":209,"props":464,"children":466},{"className":465},[],[467],{"type":61,"value":468},"videosdk",{"type":61,"value":470}," module event stream + API surfaces.",{"type":55,"tag":79,"props":472,"children":473},{},[474],{"type":61,"value":475},"ISV orchestration layer with tenant-aware token storage and per-module webhooks.",{"type":55,"tag":79,"props":477,"children":478},{},[479,481,487],{"type":61,"value":480},"AWS Lambda webhook processor with Rivet ",{"type":55,"tag":209,"props":482,"children":484},{"className":483},[],[485],{"type":61,"value":486},"AwsLambdaReceiver",{"type":61,"value":231},{"type":55,"tag":64,"props":489,"children":490},{},[491,493,497],{"type":61,"value":492},"See ",{"type":55,"tag":111,"props":494,"children":495},{"href":289},[496],{"type":61,"value":289},{"type":61,"value":498}," for details.",{"type":55,"tag":181,"props":500,"children":502},{"id":501},"chaining",[503],{"type":61,"value":504},"Chaining",{"type":55,"tag":75,"props":506,"children":507},{},[508,518,527,536],{"type":55,"tag":79,"props":509,"children":510},{},[511,513],{"type":61,"value":512},"OAuth architecture and grant selection: ",{"type":55,"tag":111,"props":514,"children":516},{"href":515},"..\u002Foauth\u002FSKILL.md",[517],{"type":61,"value":515},{"type":55,"tag":79,"props":519,"children":520},{},[521,523],{"type":61,"value":522},"API endpoint semantics and request payload details: ",{"type":55,"tag":111,"props":524,"children":525},{"href":227},[526],{"type":61,"value":227},{"type":55,"tag":79,"props":528,"children":529},{},[530,532],{"type":61,"value":531},"Team Chat app cards, command and bot UX: ",{"type":55,"tag":111,"props":533,"children":534},{"href":239},[535],{"type":61,"value":239},{"type":55,"tag":79,"props":537,"children":538},{},[539,541],{"type":61,"value":540},"Video SDK API-specific behavior and BYOS context: ",{"type":55,"tag":111,"props":542,"children":543},{"href":257},[544],{"type":61,"value":257},{"type":55,"tag":181,"props":546,"children":548},{"id":547},"environment-variables",[549],{"type":61,"value":550},"Environment Variables",{"type":55,"tag":75,"props":552,"children":553},{},[554],{"type":55,"tag":79,"props":555,"children":556},{},[557,558,562,564,570],{"type":61,"value":492},{"type":55,"tag":111,"props":559,"children":560},{"href":345},[561],{"type":61,"value":345},{"type":61,"value":563}," for standardized ",{"type":55,"tag":209,"props":565,"children":567},{"className":566},[],[568],{"type":61,"value":569},".env",{"type":61,"value":571}," keys and where to find each value.",{"type":55,"tag":181,"props":573,"children":575},{"id":574},"operations",[576],{"type":61,"value":577},"Operations",{"type":55,"tag":75,"props":579,"children":580},{},[581],{"type":55,"tag":79,"props":582,"children":583},{},[584,588],{"type":55,"tag":111,"props":585,"children":586},{"href":361},[587],{"type":61,"value":361},{"type":61,"value":589}," - 5-minute preflight and debugging checklist.",{"items":591,"total":708},[592,608,624,640,658,677,693],{"slug":593,"name":593,"fn":594,"description":595,"org":596,"tags":597,"stars":26,"repoUrl":27,"updatedAt":607},"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},[598,601,604],{"name":599,"slug":600,"type":16},"Accessibility","accessibility",{"name":602,"slug":603,"type":16},"Design","design",{"name":605,"slug":606,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":609,"name":609,"fn":610,"description":611,"org":612,"tags":613,"stars":26,"repoUrl":27,"updatedAt":623},"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},[614,617,620],{"name":615,"slug":616,"type":16},"CRM","crm",{"name":618,"slug":619,"type":16},"Research","research",{"name":621,"slug":622,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":625,"name":625,"fn":626,"description":627,"org":628,"tags":629,"stars":26,"repoUrl":27,"updatedAt":639},"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},[630,633,636],{"name":631,"slug":632,"type":16},"Analytics","analytics",{"name":634,"slug":635,"type":16},"Data Analysis","data-analysis",{"name":637,"slug":638,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":641,"name":641,"fn":642,"description":643,"org":644,"tags":645,"stars":26,"repoUrl":27,"updatedAt":657},"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},[646,649,651,654],{"name":647,"slug":648,"type":16},"ADR","adr",{"name":650,"slug":641,"type":16},"Architecture",{"name":652,"slug":653,"type":16},"Documentation","documentation",{"name":655,"slug":656,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":659,"name":659,"fn":660,"description":661,"org":662,"tags":663,"stars":26,"repoUrl":27,"updatedAt":676},"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},[664,667,670,673],{"name":665,"slug":666,"type":16},"Audit","audit",{"name":668,"slug":669,"type":16},"Finance","finance",{"name":671,"slug":672,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":674,"slug":675,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":678,"name":678,"fn":679,"description":680,"org":681,"tags":682,"stars":26,"repoUrl":27,"updatedAt":692},"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},[683,686,689],{"name":684,"slug":685,"type":16},"Branding","branding",{"name":687,"slug":688,"type":16},"Marketing","marketing",{"name":690,"slug":691,"type":16},"Writing","writing","2026-04-06T17:58:19.548331",{"slug":694,"name":694,"fn":695,"description":696,"org":697,"tags":698,"stars":26,"repoUrl":27,"updatedAt":707},"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},[699,700,703,706],{"name":684,"slug":685,"type":16},{"name":701,"slug":702,"type":16},"Communications","communications",{"name":704,"slug":705,"type":16},"Content Creation","content-creation",{"name":690,"slug":691,"type":16},"2026-04-06T18:00:23.528956",200,{"items":710,"total":885},[711,730,742,754,773,784,805,825,835,848,856,869],{"slug":712,"name":712,"fn":713,"description":714,"org":715,"tags":716,"stars":727,"repoUrl":728,"updatedAt":729},"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},[717,720,721,724],{"name":718,"slug":719,"type":16},"Creative","creative",{"name":602,"slug":603,"type":16},{"name":722,"slug":723,"type":16},"Generative Art","generative-art",{"name":725,"slug":726,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":731,"name":731,"fn":732,"description":733,"org":734,"tags":735,"stars":727,"repoUrl":728,"updatedAt":741},"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},[736,737,738],{"name":684,"slug":685,"type":16},{"name":602,"slug":603,"type":16},{"name":739,"slug":740,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":743,"name":743,"fn":744,"description":745,"org":746,"tags":747,"stars":727,"repoUrl":728,"updatedAt":753},"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},[748,749,750],{"name":718,"slug":719,"type":16},{"name":602,"slug":603,"type":16},{"name":751,"slug":752,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":755,"name":755,"fn":756,"description":757,"org":758,"tags":759,"stars":727,"repoUrl":728,"updatedAt":772},"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},[760,763,764,767,769],{"name":761,"slug":762,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":765,"slug":766,"type":16},"Anthropic SDK","anthropic-sdk",{"name":768,"slug":755,"type":16},"Claude API",{"name":770,"slug":771,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":774,"name":774,"fn":775,"description":776,"org":777,"tags":778,"stars":727,"repoUrl":728,"updatedAt":783},"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},[779,780],{"name":652,"slug":653,"type":16},{"name":781,"slug":782,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":785,"name":785,"fn":786,"description":787,"org":788,"tags":789,"stars":727,"repoUrl":728,"updatedAt":804},"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},[790,793,795,798,801],{"name":791,"slug":792,"type":16},"Documents","documents",{"name":794,"slug":785,"type":16},"DOCX",{"name":796,"slug":797,"type":16},"Office","office",{"name":799,"slug":800,"type":16},"Templates","templates",{"name":802,"slug":803,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":806,"name":806,"fn":807,"description":808,"org":809,"tags":810,"stars":727,"repoUrl":728,"updatedAt":824},"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},[811,812,815,818,821],{"name":602,"slug":603,"type":16},{"name":813,"slug":814,"type":16},"Frontend","frontend",{"name":816,"slug":817,"type":16},"React","react",{"name":819,"slug":820,"type":16},"Tailwind CSS","tailwind-css",{"name":822,"slug":823,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":826,"name":826,"fn":827,"description":828,"org":829,"tags":830,"stars":727,"repoUrl":728,"updatedAt":834},"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},[831,832,833],{"name":701,"slug":702,"type":16},{"name":799,"slug":800,"type":16},{"name":690,"slug":691,"type":16},"2026-04-06T17:56:20.695522",{"slug":836,"name":836,"fn":837,"description":838,"org":839,"tags":840,"stars":727,"repoUrl":728,"updatedAt":847},"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},[841,842,843,844],{"name":761,"slug":762,"type":16},{"name":18,"slug":19,"type":16},{"name":770,"slug":771,"type":16},{"name":845,"slug":846,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":752,"name":752,"fn":849,"description":850,"org":851,"tags":852,"stars":727,"repoUrl":728,"updatedAt":855},"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},[853,854],{"name":791,"slug":792,"type":16},{"name":751,"slug":752,"type":16},"2026-04-06T17:56:02.483316",{"slug":857,"name":857,"fn":858,"description":859,"org":860,"tags":861,"stars":727,"repoUrl":728,"updatedAt":868},"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},[862,865],{"name":863,"slug":864,"type":16},"PowerPoint","powerpoint",{"name":866,"slug":867,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":870,"name":870,"fn":871,"description":872,"org":873,"tags":874,"stars":727,"repoUrl":728,"updatedAt":884},"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},[875,876,877,880,883],{"name":761,"slug":762,"type":16},{"name":652,"slug":653,"type":16},{"name":878,"slug":879,"type":16},"Evals","evals",{"name":881,"slug":882,"type":16},"Performance","performance",{"name":781,"slug":782,"type":16},"2026-04-19T06:45:40.804",490]