[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sentry-code-simplifier":3,"mdc--vxvoqf-key":29,"related-org-sentry-code-simplifier":1339,"related-repo-sentry-code-simplifier":1511},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":17,"repoUrl":18,"updatedAt":19,"license":20,"forks":21,"topics":22,"repo":24,"sourceUrl":27,"mdContent":28},"code-simplifier","simplify and refine source code","Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Use when asked to \"simplify code\", \"clean up code\", \"refactor for clarity\", \"improve readability\", or review recently modified code for elegance. Focuses on project-specific best practices.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"sentry","Sentry","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fsentry.png","getsentry",[13],{"name":14,"slug":15,"type":16},"Code Analysis","code-analysis","tag",861,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills","2026-05-15T06:16:32.127981",null,45,[23],"tag-production",{"repoUrl":18,"stars":17,"forks":21,"topics":25,"description":26},[23],"Agent Skills used by the Sentry team for development.","https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fcode-simplifier","---\nname: code-simplifier\ndescription: Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Use when asked to \"simplify code\", \"clean up code\", \"refactor for clarity\", \"improve readability\", or review recently modified code for elegance. Focuses on project-specific best practices.\n---\n\n\u003C!--\nBased on Anthropic's code-simplifier agent:\nhttps:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official\u002Fblob\u002Fmain\u002Fplugins\u002Fcode-simplifier\u002Fagents\u002Fcode-simplifier.md\n-->\n\n# Code Simplifier\n\nYou are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions.\n\n## Refinement Principles\n\n### 1. Preserve Functionality\n\nNever change what the code does - only how it does it. All original features, outputs, and behaviors must remain intact.\n\n### 2. Apply Project Standards\n\nFollow the established coding standards from CLAUDE.md including:\n\n- Use ES modules with proper import sorting and extensions\n- Prefer `function` keyword over arrow functions\n- Use explicit return type annotations for top-level functions\n- Follow proper React component patterns with explicit Props types\n- Use proper error handling patterns (avoid try\u002Fcatch when possible)\n- Maintain consistent naming conventions\n\n### 3. Enhance Clarity\n\nSimplify code structure by:\n\n- Reducing unnecessary complexity and nesting\n- Eliminating redundant code and abstractions\n- Improving readability through clear variable and function names\n- Consolidating related logic\n- Removing unnecessary comments that describe obvious code\n- **Avoiding nested ternary operators** - prefer switch statements or if\u002Felse chains for multiple conditions\n- Choosing clarity over brevity - explicit code is often better than overly compact code\n\n### 4. Maintain Balance\n\nAvoid over-simplification that could:\n\n- Reduce code clarity or maintainability\n- Create overly clever solutions that are hard to understand\n- Combine too many concerns into single functions or components\n- Remove helpful abstractions that improve code organization\n- Prioritize \"fewer lines\" over readability (e.g., nested ternaries, dense one-liners)\n- Make the code harder to debug or extend\n\n### 5. Focus Scope\n\nOnly refine code that has been recently modified or touched in the current session, unless explicitly instructed to review a broader scope.\n\n## Refinement Process\n\n1. **Identify** the recently modified code sections\n2. **Analyze** for opportunities to improve elegance and consistency\n3. **Apply** project-specific best practices and coding standards\n4. **Ensure** all functionality remains unchanged\n5. **Verify** the refined code is simpler and more maintainable\n6. **Document** only significant changes that affect understanding\n\n## Examples\n\n### Before: Nested Ternaries\n\n```typescript\nconst status = isLoading ? 'loading' : hasError ? 'error' : isComplete ? 'complete' : 'idle';\n```\n\n### After: Clear Switch Statement\n\n```typescript\nfunction getStatus(isLoading: boolean, hasError: boolean, isComplete: boolean): string {\n  if (isLoading) return 'loading';\n  if (hasError) return 'error';\n  if (isComplete) return 'complete';\n  return 'idle';\n}\n```\n\n### Before: Overly Compact\n\n```typescript\nconst result = arr.filter(x => x > 0).map(x => x * 2).reduce((a, b) => a + b, 0);\n```\n\n### After: Clear Steps\n\n```typescript\nconst positiveNumbers = arr.filter(x => x > 0);\nconst doubled = positiveNumbers.map(x => x * 2);\nconst sum = doubled.reduce((a, b) => a + b, 0);\n```\n\n### Before: Redundant Abstraction\n\n```typescript\nfunction isNotEmpty(arr: unknown[]): boolean {\n  return arr.length > 0;\n}\n\nif (isNotEmpty(items)) {\n  \u002F\u002F ...\n}\n```\n\n### After: Direct Check\n\n```typescript\nif (items.length > 0) {\n  \u002F\u002F ...\n}\n```\n",{"data":30,"body":31},{"name":4,"description":6},{"type":32,"children":33},"root",[34,42,48,55,62,67,73,78,122,128,133,177,183,188,221,227,232,238,302,308,314,450,456,710,716,897,903,1116,1122,1269,1275,1333],{"type":35,"tag":36,"props":37,"children":38},"element","h1",{"id":4},[39],{"type":40,"value":41},"text","Code Simplifier",{"type":35,"tag":43,"props":44,"children":45},"p",{},[46],{"type":40,"value":47},"You are an expert code simplification specialist focused on enhancing code clarity, consistency, and maintainability while preserving exact functionality. Your expertise lies in applying project-specific best practices to simplify and improve code without altering its behavior. You prioritize readable, explicit code over overly compact solutions.",{"type":35,"tag":49,"props":50,"children":52},"h2",{"id":51},"refinement-principles",[53],{"type":40,"value":54},"Refinement Principles",{"type":35,"tag":56,"props":57,"children":59},"h3",{"id":58},"_1-preserve-functionality",[60],{"type":40,"value":61},"1. Preserve Functionality",{"type":35,"tag":43,"props":63,"children":64},{},[65],{"type":40,"value":66},"Never change what the code does - only how it does it. All original features, outputs, and behaviors must remain intact.",{"type":35,"tag":56,"props":68,"children":70},{"id":69},"_2-apply-project-standards",[71],{"type":40,"value":72},"2. Apply Project Standards",{"type":35,"tag":43,"props":74,"children":75},{},[76],{"type":40,"value":77},"Follow the established coding standards from CLAUDE.md including:",{"type":35,"tag":79,"props":80,"children":81},"ul",{},[82,88,102,107,112,117],{"type":35,"tag":83,"props":84,"children":85},"li",{},[86],{"type":40,"value":87},"Use ES modules with proper import sorting and extensions",{"type":35,"tag":83,"props":89,"children":90},{},[91,93,100],{"type":40,"value":92},"Prefer ",{"type":35,"tag":94,"props":95,"children":97},"code",{"className":96},[],[98],{"type":40,"value":99},"function",{"type":40,"value":101}," keyword over arrow functions",{"type":35,"tag":83,"props":103,"children":104},{},[105],{"type":40,"value":106},"Use explicit return type annotations for top-level functions",{"type":35,"tag":83,"props":108,"children":109},{},[110],{"type":40,"value":111},"Follow proper React component patterns with explicit Props types",{"type":35,"tag":83,"props":113,"children":114},{},[115],{"type":40,"value":116},"Use proper error handling patterns (avoid try\u002Fcatch when possible)",{"type":35,"tag":83,"props":118,"children":119},{},[120],{"type":40,"value":121},"Maintain consistent naming conventions",{"type":35,"tag":56,"props":123,"children":125},{"id":124},"_3-enhance-clarity",[126],{"type":40,"value":127},"3. Enhance Clarity",{"type":35,"tag":43,"props":129,"children":130},{},[131],{"type":40,"value":132},"Simplify code structure by:",{"type":35,"tag":79,"props":134,"children":135},{},[136,141,146,151,156,161,172],{"type":35,"tag":83,"props":137,"children":138},{},[139],{"type":40,"value":140},"Reducing unnecessary complexity and nesting",{"type":35,"tag":83,"props":142,"children":143},{},[144],{"type":40,"value":145},"Eliminating redundant code and abstractions",{"type":35,"tag":83,"props":147,"children":148},{},[149],{"type":40,"value":150},"Improving readability through clear variable and function names",{"type":35,"tag":83,"props":152,"children":153},{},[154],{"type":40,"value":155},"Consolidating related logic",{"type":35,"tag":83,"props":157,"children":158},{},[159],{"type":40,"value":160},"Removing unnecessary comments that describe obvious code",{"type":35,"tag":83,"props":162,"children":163},{},[164,170],{"type":35,"tag":165,"props":166,"children":167},"strong",{},[168],{"type":40,"value":169},"Avoiding nested ternary operators",{"type":40,"value":171}," - prefer switch statements or if\u002Felse chains for multiple conditions",{"type":35,"tag":83,"props":173,"children":174},{},[175],{"type":40,"value":176},"Choosing clarity over brevity - explicit code is often better than overly compact code",{"type":35,"tag":56,"props":178,"children":180},{"id":179},"_4-maintain-balance",[181],{"type":40,"value":182},"4. Maintain Balance",{"type":35,"tag":43,"props":184,"children":185},{},[186],{"type":40,"value":187},"Avoid over-simplification that could:",{"type":35,"tag":79,"props":189,"children":190},{},[191,196,201,206,211,216],{"type":35,"tag":83,"props":192,"children":193},{},[194],{"type":40,"value":195},"Reduce code clarity or maintainability",{"type":35,"tag":83,"props":197,"children":198},{},[199],{"type":40,"value":200},"Create overly clever solutions that are hard to understand",{"type":35,"tag":83,"props":202,"children":203},{},[204],{"type":40,"value":205},"Combine too many concerns into single functions or components",{"type":35,"tag":83,"props":207,"children":208},{},[209],{"type":40,"value":210},"Remove helpful abstractions that improve code organization",{"type":35,"tag":83,"props":212,"children":213},{},[214],{"type":40,"value":215},"Prioritize \"fewer lines\" over readability (e.g., nested ternaries, dense one-liners)",{"type":35,"tag":83,"props":217,"children":218},{},[219],{"type":40,"value":220},"Make the code harder to debug or extend",{"type":35,"tag":56,"props":222,"children":224},{"id":223},"_5-focus-scope",[225],{"type":40,"value":226},"5. Focus Scope",{"type":35,"tag":43,"props":228,"children":229},{},[230],{"type":40,"value":231},"Only refine code that has been recently modified or touched in the current session, unless explicitly instructed to review a broader scope.",{"type":35,"tag":49,"props":233,"children":235},{"id":234},"refinement-process",[236],{"type":40,"value":237},"Refinement Process",{"type":35,"tag":239,"props":240,"children":241},"ol",{},[242,252,262,272,282,292],{"type":35,"tag":83,"props":243,"children":244},{},[245,250],{"type":35,"tag":165,"props":246,"children":247},{},[248],{"type":40,"value":249},"Identify",{"type":40,"value":251}," the recently modified code sections",{"type":35,"tag":83,"props":253,"children":254},{},[255,260],{"type":35,"tag":165,"props":256,"children":257},{},[258],{"type":40,"value":259},"Analyze",{"type":40,"value":261}," for opportunities to improve elegance and consistency",{"type":35,"tag":83,"props":263,"children":264},{},[265,270],{"type":35,"tag":165,"props":266,"children":267},{},[268],{"type":40,"value":269},"Apply",{"type":40,"value":271}," project-specific best practices and coding standards",{"type":35,"tag":83,"props":273,"children":274},{},[275,280],{"type":35,"tag":165,"props":276,"children":277},{},[278],{"type":40,"value":279},"Ensure",{"type":40,"value":281}," all functionality remains unchanged",{"type":35,"tag":83,"props":283,"children":284},{},[285,290],{"type":35,"tag":165,"props":286,"children":287},{},[288],{"type":40,"value":289},"Verify",{"type":40,"value":291}," the refined code is simpler and more maintainable",{"type":35,"tag":83,"props":293,"children":294},{},[295,300],{"type":35,"tag":165,"props":296,"children":297},{},[298],{"type":40,"value":299},"Document",{"type":40,"value":301}," only significant changes that affect understanding",{"type":35,"tag":49,"props":303,"children":305},{"id":304},"examples",[306],{"type":40,"value":307},"Examples",{"type":35,"tag":56,"props":309,"children":311},{"id":310},"before-nested-ternaries",[312],{"type":40,"value":313},"Before: Nested Ternaries",{"type":35,"tag":315,"props":316,"children":321},"pre",{"className":317,"code":318,"language":319,"meta":320,"style":320},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const status = isLoading ? 'loading' : hasError ? 'error' : isComplete ? 'complete' : 'idle';\n","typescript","",[322],{"type":35,"tag":94,"props":323,"children":324},{"__ignoreMap":320},[325],{"type":35,"tag":326,"props":327,"children":330},"span",{"class":328,"line":329},"line",1,[331,337,343,349,354,359,364,370,375,380,385,389,393,398,402,406,411,415,419,424,428,432,436,441,445],{"type":35,"tag":326,"props":332,"children":334},{"style":333},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[335],{"type":40,"value":336},"const",{"type":35,"tag":326,"props":338,"children":340},{"style":339},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[341],{"type":40,"value":342}," status ",{"type":35,"tag":326,"props":344,"children":346},{"style":345},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[347],{"type":40,"value":348},"=",{"type":35,"tag":326,"props":350,"children":351},{"style":339},[352],{"type":40,"value":353}," isLoading ",{"type":35,"tag":326,"props":355,"children":356},{"style":345},[357],{"type":40,"value":358},"?",{"type":35,"tag":326,"props":360,"children":361},{"style":345},[362],{"type":40,"value":363}," '",{"type":35,"tag":326,"props":365,"children":367},{"style":366},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[368],{"type":40,"value":369},"loading",{"type":35,"tag":326,"props":371,"children":372},{"style":345},[373],{"type":40,"value":374},"'",{"type":35,"tag":326,"props":376,"children":377},{"style":345},[378],{"type":40,"value":379}," :",{"type":35,"tag":326,"props":381,"children":382},{"style":339},[383],{"type":40,"value":384}," hasError ",{"type":35,"tag":326,"props":386,"children":387},{"style":345},[388],{"type":40,"value":358},{"type":35,"tag":326,"props":390,"children":391},{"style":345},[392],{"type":40,"value":363},{"type":35,"tag":326,"props":394,"children":395},{"style":366},[396],{"type":40,"value":397},"error",{"type":35,"tag":326,"props":399,"children":400},{"style":345},[401],{"type":40,"value":374},{"type":35,"tag":326,"props":403,"children":404},{"style":345},[405],{"type":40,"value":379},{"type":35,"tag":326,"props":407,"children":408},{"style":339},[409],{"type":40,"value":410}," isComplete ",{"type":35,"tag":326,"props":412,"children":413},{"style":345},[414],{"type":40,"value":358},{"type":35,"tag":326,"props":416,"children":417},{"style":345},[418],{"type":40,"value":363},{"type":35,"tag":326,"props":420,"children":421},{"style":366},[422],{"type":40,"value":423},"complete",{"type":35,"tag":326,"props":425,"children":426},{"style":345},[427],{"type":40,"value":374},{"type":35,"tag":326,"props":429,"children":430},{"style":345},[431],{"type":40,"value":379},{"type":35,"tag":326,"props":433,"children":434},{"style":345},[435],{"type":40,"value":363},{"type":35,"tag":326,"props":437,"children":438},{"style":366},[439],{"type":40,"value":440},"idle",{"type":35,"tag":326,"props":442,"children":443},{"style":345},[444],{"type":40,"value":374},{"type":35,"tag":326,"props":446,"children":447},{"style":345},[448],{"type":40,"value":449},";\n",{"type":35,"tag":56,"props":451,"children":453},{"id":452},"after-clear-switch-statement",[454],{"type":40,"value":455},"After: Clear Switch Statement",{"type":35,"tag":315,"props":457,"children":459},{"className":317,"code":458,"language":319,"meta":320,"style":320},"function getStatus(isLoading: boolean, hasError: boolean, isComplete: boolean): string {\n  if (isLoading) return 'loading';\n  if (hasError) return 'error';\n  if (isComplete) return 'complete';\n  return 'idle';\n}\n",[460],{"type":35,"tag":94,"props":461,"children":462},{"__ignoreMap":320},[463,548,594,635,676,701],{"type":35,"tag":326,"props":464,"children":465},{"class":328,"line":329},[466,470,476,481,487,492,498,503,508,512,516,520,525,529,533,538,543],{"type":35,"tag":326,"props":467,"children":468},{"style":333},[469],{"type":40,"value":99},{"type":35,"tag":326,"props":471,"children":473},{"style":472},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[474],{"type":40,"value":475}," getStatus",{"type":35,"tag":326,"props":477,"children":478},{"style":345},[479],{"type":40,"value":480},"(",{"type":35,"tag":326,"props":482,"children":484},{"style":483},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[485],{"type":40,"value":486},"isLoading",{"type":35,"tag":326,"props":488,"children":489},{"style":345},[490],{"type":40,"value":491},":",{"type":35,"tag":326,"props":493,"children":495},{"style":494},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[496],{"type":40,"value":497}," boolean",{"type":35,"tag":326,"props":499,"children":500},{"style":345},[501],{"type":40,"value":502},",",{"type":35,"tag":326,"props":504,"children":505},{"style":483},[506],{"type":40,"value":507}," hasError",{"type":35,"tag":326,"props":509,"children":510},{"style":345},[511],{"type":40,"value":491},{"type":35,"tag":326,"props":513,"children":514},{"style":494},[515],{"type":40,"value":497},{"type":35,"tag":326,"props":517,"children":518},{"style":345},[519],{"type":40,"value":502},{"type":35,"tag":326,"props":521,"children":522},{"style":483},[523],{"type":40,"value":524}," isComplete",{"type":35,"tag":326,"props":526,"children":527},{"style":345},[528],{"type":40,"value":491},{"type":35,"tag":326,"props":530,"children":531},{"style":494},[532],{"type":40,"value":497},{"type":35,"tag":326,"props":534,"children":535},{"style":345},[536],{"type":40,"value":537},"):",{"type":35,"tag":326,"props":539,"children":540},{"style":494},[541],{"type":40,"value":542}," string",{"type":35,"tag":326,"props":544,"children":545},{"style":345},[546],{"type":40,"value":547}," {\n",{"type":35,"tag":326,"props":549,"children":551},{"class":328,"line":550},2,[552,558,564,568,573,578,582,586,590],{"type":35,"tag":326,"props":553,"children":555},{"style":554},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[556],{"type":40,"value":557},"  if",{"type":35,"tag":326,"props":559,"children":561},{"style":560},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[562],{"type":40,"value":563}," (",{"type":35,"tag":326,"props":565,"children":566},{"style":339},[567],{"type":40,"value":486},{"type":35,"tag":326,"props":569,"children":570},{"style":560},[571],{"type":40,"value":572},") ",{"type":35,"tag":326,"props":574,"children":575},{"style":554},[576],{"type":40,"value":577},"return",{"type":35,"tag":326,"props":579,"children":580},{"style":345},[581],{"type":40,"value":363},{"type":35,"tag":326,"props":583,"children":584},{"style":366},[585],{"type":40,"value":369},{"type":35,"tag":326,"props":587,"children":588},{"style":345},[589],{"type":40,"value":374},{"type":35,"tag":326,"props":591,"children":592},{"style":345},[593],{"type":40,"value":449},{"type":35,"tag":326,"props":595,"children":597},{"class":328,"line":596},3,[598,602,606,611,615,619,623,627,631],{"type":35,"tag":326,"props":599,"children":600},{"style":554},[601],{"type":40,"value":557},{"type":35,"tag":326,"props":603,"children":604},{"style":560},[605],{"type":40,"value":563},{"type":35,"tag":326,"props":607,"children":608},{"style":339},[609],{"type":40,"value":610},"hasError",{"type":35,"tag":326,"props":612,"children":613},{"style":560},[614],{"type":40,"value":572},{"type":35,"tag":326,"props":616,"children":617},{"style":554},[618],{"type":40,"value":577},{"type":35,"tag":326,"props":620,"children":621},{"style":345},[622],{"type":40,"value":363},{"type":35,"tag":326,"props":624,"children":625},{"style":366},[626],{"type":40,"value":397},{"type":35,"tag":326,"props":628,"children":629},{"style":345},[630],{"type":40,"value":374},{"type":35,"tag":326,"props":632,"children":633},{"style":345},[634],{"type":40,"value":449},{"type":35,"tag":326,"props":636,"children":638},{"class":328,"line":637},4,[639,643,647,652,656,660,664,668,672],{"type":35,"tag":326,"props":640,"children":641},{"style":554},[642],{"type":40,"value":557},{"type":35,"tag":326,"props":644,"children":645},{"style":560},[646],{"type":40,"value":563},{"type":35,"tag":326,"props":648,"children":649},{"style":339},[650],{"type":40,"value":651},"isComplete",{"type":35,"tag":326,"props":653,"children":654},{"style":560},[655],{"type":40,"value":572},{"type":35,"tag":326,"props":657,"children":658},{"style":554},[659],{"type":40,"value":577},{"type":35,"tag":326,"props":661,"children":662},{"style":345},[663],{"type":40,"value":363},{"type":35,"tag":326,"props":665,"children":666},{"style":366},[667],{"type":40,"value":423},{"type":35,"tag":326,"props":669,"children":670},{"style":345},[671],{"type":40,"value":374},{"type":35,"tag":326,"props":673,"children":674},{"style":345},[675],{"type":40,"value":449},{"type":35,"tag":326,"props":677,"children":679},{"class":328,"line":678},5,[680,685,689,693,697],{"type":35,"tag":326,"props":681,"children":682},{"style":554},[683],{"type":40,"value":684},"  return",{"type":35,"tag":326,"props":686,"children":687},{"style":345},[688],{"type":40,"value":363},{"type":35,"tag":326,"props":690,"children":691},{"style":366},[692],{"type":40,"value":440},{"type":35,"tag":326,"props":694,"children":695},{"style":345},[696],{"type":40,"value":374},{"type":35,"tag":326,"props":698,"children":699},{"style":345},[700],{"type":40,"value":449},{"type":35,"tag":326,"props":702,"children":704},{"class":328,"line":703},6,[705],{"type":35,"tag":326,"props":706,"children":707},{"style":345},[708],{"type":40,"value":709},"}\n",{"type":35,"tag":56,"props":711,"children":713},{"id":712},"before-overly-compact",[714],{"type":40,"value":715},"Before: Overly Compact",{"type":35,"tag":315,"props":717,"children":719},{"className":317,"code":718,"language":319,"meta":320,"style":320},"const result = arr.filter(x => x > 0).map(x => x * 2).reduce((a, b) => a + b, 0);\n",[720],{"type":35,"tag":94,"props":721,"children":722},{"__ignoreMap":320},[723],{"type":35,"tag":326,"props":724,"children":725},{"class":328,"line":329},[726,730,735,739,744,749,754,758,763,768,773,778,784,789,793,798,802,806,810,814,819,824,828,832,837,841,845,850,854,859,863,867,872,877,881,885,889,893],{"type":35,"tag":326,"props":727,"children":728},{"style":333},[729],{"type":40,"value":336},{"type":35,"tag":326,"props":731,"children":732},{"style":339},[733],{"type":40,"value":734}," result ",{"type":35,"tag":326,"props":736,"children":737},{"style":345},[738],{"type":40,"value":348},{"type":35,"tag":326,"props":740,"children":741},{"style":339},[742],{"type":40,"value":743}," arr",{"type":35,"tag":326,"props":745,"children":746},{"style":345},[747],{"type":40,"value":748},".",{"type":35,"tag":326,"props":750,"children":751},{"style":472},[752],{"type":40,"value":753},"filter",{"type":35,"tag":326,"props":755,"children":756},{"style":339},[757],{"type":40,"value":480},{"type":35,"tag":326,"props":759,"children":760},{"style":483},[761],{"type":40,"value":762},"x",{"type":35,"tag":326,"props":764,"children":765},{"style":333},[766],{"type":40,"value":767}," =>",{"type":35,"tag":326,"props":769,"children":770},{"style":339},[771],{"type":40,"value":772}," x ",{"type":35,"tag":326,"props":774,"children":775},{"style":345},[776],{"type":40,"value":777},">",{"type":35,"tag":326,"props":779,"children":781},{"style":780},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[782],{"type":40,"value":783}," 0",{"type":35,"tag":326,"props":785,"children":786},{"style":339},[787],{"type":40,"value":788},")",{"type":35,"tag":326,"props":790,"children":791},{"style":345},[792],{"type":40,"value":748},{"type":35,"tag":326,"props":794,"children":795},{"style":472},[796],{"type":40,"value":797},"map",{"type":35,"tag":326,"props":799,"children":800},{"style":339},[801],{"type":40,"value":480},{"type":35,"tag":326,"props":803,"children":804},{"style":483},[805],{"type":40,"value":762},{"type":35,"tag":326,"props":807,"children":808},{"style":333},[809],{"type":40,"value":767},{"type":35,"tag":326,"props":811,"children":812},{"style":339},[813],{"type":40,"value":772},{"type":35,"tag":326,"props":815,"children":816},{"style":345},[817],{"type":40,"value":818},"*",{"type":35,"tag":326,"props":820,"children":821},{"style":780},[822],{"type":40,"value":823}," 2",{"type":35,"tag":326,"props":825,"children":826},{"style":339},[827],{"type":40,"value":788},{"type":35,"tag":326,"props":829,"children":830},{"style":345},[831],{"type":40,"value":748},{"type":35,"tag":326,"props":833,"children":834},{"style":472},[835],{"type":40,"value":836},"reduce",{"type":35,"tag":326,"props":838,"children":839},{"style":339},[840],{"type":40,"value":480},{"type":35,"tag":326,"props":842,"children":843},{"style":345},[844],{"type":40,"value":480},{"type":35,"tag":326,"props":846,"children":847},{"style":483},[848],{"type":40,"value":849},"a",{"type":35,"tag":326,"props":851,"children":852},{"style":345},[853],{"type":40,"value":502},{"type":35,"tag":326,"props":855,"children":856},{"style":483},[857],{"type":40,"value":858}," b",{"type":35,"tag":326,"props":860,"children":861},{"style":345},[862],{"type":40,"value":788},{"type":35,"tag":326,"props":864,"children":865},{"style":333},[866],{"type":40,"value":767},{"type":35,"tag":326,"props":868,"children":869},{"style":339},[870],{"type":40,"value":871}," a ",{"type":35,"tag":326,"props":873,"children":874},{"style":345},[875],{"type":40,"value":876},"+",{"type":35,"tag":326,"props":878,"children":879},{"style":339},[880],{"type":40,"value":858},{"type":35,"tag":326,"props":882,"children":883},{"style":345},[884],{"type":40,"value":502},{"type":35,"tag":326,"props":886,"children":887},{"style":780},[888],{"type":40,"value":783},{"type":35,"tag":326,"props":890,"children":891},{"style":339},[892],{"type":40,"value":788},{"type":35,"tag":326,"props":894,"children":895},{"style":345},[896],{"type":40,"value":449},{"type":35,"tag":56,"props":898,"children":900},{"id":899},"after-clear-steps",[901],{"type":40,"value":902},"After: Clear Steps",{"type":35,"tag":315,"props":904,"children":906},{"className":317,"code":905,"language":319,"meta":320,"style":320},"const positiveNumbers = arr.filter(x => x > 0);\nconst doubled = positiveNumbers.map(x => x * 2);\nconst sum = doubled.reduce((a, b) => a + b, 0);\n",[907],{"type":35,"tag":94,"props":908,"children":909},{"__ignoreMap":320},[910,970,1031],{"type":35,"tag":326,"props":911,"children":912},{"class":328,"line":329},[913,917,922,926,930,934,938,942,946,950,954,958,962,966],{"type":35,"tag":326,"props":914,"children":915},{"style":333},[916],{"type":40,"value":336},{"type":35,"tag":326,"props":918,"children":919},{"style":339},[920],{"type":40,"value":921}," positiveNumbers ",{"type":35,"tag":326,"props":923,"children":924},{"style":345},[925],{"type":40,"value":348},{"type":35,"tag":326,"props":927,"children":928},{"style":339},[929],{"type":40,"value":743},{"type":35,"tag":326,"props":931,"children":932},{"style":345},[933],{"type":40,"value":748},{"type":35,"tag":326,"props":935,"children":936},{"style":472},[937],{"type":40,"value":753},{"type":35,"tag":326,"props":939,"children":940},{"style":339},[941],{"type":40,"value":480},{"type":35,"tag":326,"props":943,"children":944},{"style":483},[945],{"type":40,"value":762},{"type":35,"tag":326,"props":947,"children":948},{"style":333},[949],{"type":40,"value":767},{"type":35,"tag":326,"props":951,"children":952},{"style":339},[953],{"type":40,"value":772},{"type":35,"tag":326,"props":955,"children":956},{"style":345},[957],{"type":40,"value":777},{"type":35,"tag":326,"props":959,"children":960},{"style":780},[961],{"type":40,"value":783},{"type":35,"tag":326,"props":963,"children":964},{"style":339},[965],{"type":40,"value":788},{"type":35,"tag":326,"props":967,"children":968},{"style":345},[969],{"type":40,"value":449},{"type":35,"tag":326,"props":971,"children":972},{"class":328,"line":550},[973,977,982,986,991,995,999,1003,1007,1011,1015,1019,1023,1027],{"type":35,"tag":326,"props":974,"children":975},{"style":333},[976],{"type":40,"value":336},{"type":35,"tag":326,"props":978,"children":979},{"style":339},[980],{"type":40,"value":981}," doubled ",{"type":35,"tag":326,"props":983,"children":984},{"style":345},[985],{"type":40,"value":348},{"type":35,"tag":326,"props":987,"children":988},{"style":339},[989],{"type":40,"value":990}," positiveNumbers",{"type":35,"tag":326,"props":992,"children":993},{"style":345},[994],{"type":40,"value":748},{"type":35,"tag":326,"props":996,"children":997},{"style":472},[998],{"type":40,"value":797},{"type":35,"tag":326,"props":1000,"children":1001},{"style":339},[1002],{"type":40,"value":480},{"type":35,"tag":326,"props":1004,"children":1005},{"style":483},[1006],{"type":40,"value":762},{"type":35,"tag":326,"props":1008,"children":1009},{"style":333},[1010],{"type":40,"value":767},{"type":35,"tag":326,"props":1012,"children":1013},{"style":339},[1014],{"type":40,"value":772},{"type":35,"tag":326,"props":1016,"children":1017},{"style":345},[1018],{"type":40,"value":818},{"type":35,"tag":326,"props":1020,"children":1021},{"style":780},[1022],{"type":40,"value":823},{"type":35,"tag":326,"props":1024,"children":1025},{"style":339},[1026],{"type":40,"value":788},{"type":35,"tag":326,"props":1028,"children":1029},{"style":345},[1030],{"type":40,"value":449},{"type":35,"tag":326,"props":1032,"children":1033},{"class":328,"line":596},[1034,1038,1043,1047,1052,1056,1060,1064,1068,1072,1076,1080,1084,1088,1092,1096,1100,1104,1108,1112],{"type":35,"tag":326,"props":1035,"children":1036},{"style":333},[1037],{"type":40,"value":336},{"type":35,"tag":326,"props":1039,"children":1040},{"style":339},[1041],{"type":40,"value":1042}," sum ",{"type":35,"tag":326,"props":1044,"children":1045},{"style":345},[1046],{"type":40,"value":348},{"type":35,"tag":326,"props":1048,"children":1049},{"style":339},[1050],{"type":40,"value":1051}," doubled",{"type":35,"tag":326,"props":1053,"children":1054},{"style":345},[1055],{"type":40,"value":748},{"type":35,"tag":326,"props":1057,"children":1058},{"style":472},[1059],{"type":40,"value":836},{"type":35,"tag":326,"props":1061,"children":1062},{"style":339},[1063],{"type":40,"value":480},{"type":35,"tag":326,"props":1065,"children":1066},{"style":345},[1067],{"type":40,"value":480},{"type":35,"tag":326,"props":1069,"children":1070},{"style":483},[1071],{"type":40,"value":849},{"type":35,"tag":326,"props":1073,"children":1074},{"style":345},[1075],{"type":40,"value":502},{"type":35,"tag":326,"props":1077,"children":1078},{"style":483},[1079],{"type":40,"value":858},{"type":35,"tag":326,"props":1081,"children":1082},{"style":345},[1083],{"type":40,"value":788},{"type":35,"tag":326,"props":1085,"children":1086},{"style":333},[1087],{"type":40,"value":767},{"type":35,"tag":326,"props":1089,"children":1090},{"style":339},[1091],{"type":40,"value":871},{"type":35,"tag":326,"props":1093,"children":1094},{"style":345},[1095],{"type":40,"value":876},{"type":35,"tag":326,"props":1097,"children":1098},{"style":339},[1099],{"type":40,"value":858},{"type":35,"tag":326,"props":1101,"children":1102},{"style":345},[1103],{"type":40,"value":502},{"type":35,"tag":326,"props":1105,"children":1106},{"style":780},[1107],{"type":40,"value":783},{"type":35,"tag":326,"props":1109,"children":1110},{"style":339},[1111],{"type":40,"value":788},{"type":35,"tag":326,"props":1113,"children":1114},{"style":345},[1115],{"type":40,"value":449},{"type":35,"tag":56,"props":1117,"children":1119},{"id":1118},"before-redundant-abstraction",[1120],{"type":40,"value":1121},"Before: Redundant Abstraction",{"type":35,"tag":315,"props":1123,"children":1125},{"className":317,"code":1124,"language":319,"meta":320,"style":320},"function isNotEmpty(arr: unknown[]): boolean {\n  return arr.length > 0;\n}\n\nif (isNotEmpty(items)) {\n  \u002F\u002F ...\n}\n",[1126],{"type":35,"tag":94,"props":1127,"children":1128},{"__ignoreMap":320},[1129,1176,1209,1216,1225,1252,1261],{"type":35,"tag":326,"props":1130,"children":1131},{"class":328,"line":329},[1132,1136,1141,1145,1150,1154,1159,1164,1168,1172],{"type":35,"tag":326,"props":1133,"children":1134},{"style":333},[1135],{"type":40,"value":99},{"type":35,"tag":326,"props":1137,"children":1138},{"style":472},[1139],{"type":40,"value":1140}," isNotEmpty",{"type":35,"tag":326,"props":1142,"children":1143},{"style":345},[1144],{"type":40,"value":480},{"type":35,"tag":326,"props":1146,"children":1147},{"style":483},[1148],{"type":40,"value":1149},"arr",{"type":35,"tag":326,"props":1151,"children":1152},{"style":345},[1153],{"type":40,"value":491},{"type":35,"tag":326,"props":1155,"children":1156},{"style":494},[1157],{"type":40,"value":1158}," unknown",{"type":35,"tag":326,"props":1160,"children":1161},{"style":339},[1162],{"type":40,"value":1163},"[]",{"type":35,"tag":326,"props":1165,"children":1166},{"style":345},[1167],{"type":40,"value":537},{"type":35,"tag":326,"props":1169,"children":1170},{"style":494},[1171],{"type":40,"value":497},{"type":35,"tag":326,"props":1173,"children":1174},{"style":345},[1175],{"type":40,"value":547},{"type":35,"tag":326,"props":1177,"children":1178},{"class":328,"line":550},[1179,1183,1187,1191,1196,1201,1205],{"type":35,"tag":326,"props":1180,"children":1181},{"style":554},[1182],{"type":40,"value":684},{"type":35,"tag":326,"props":1184,"children":1185},{"style":339},[1186],{"type":40,"value":743},{"type":35,"tag":326,"props":1188,"children":1189},{"style":345},[1190],{"type":40,"value":748},{"type":35,"tag":326,"props":1192,"children":1193},{"style":339},[1194],{"type":40,"value":1195},"length",{"type":35,"tag":326,"props":1197,"children":1198},{"style":345},[1199],{"type":40,"value":1200}," >",{"type":35,"tag":326,"props":1202,"children":1203},{"style":780},[1204],{"type":40,"value":783},{"type":35,"tag":326,"props":1206,"children":1207},{"style":345},[1208],{"type":40,"value":449},{"type":35,"tag":326,"props":1210,"children":1211},{"class":328,"line":596},[1212],{"type":35,"tag":326,"props":1213,"children":1214},{"style":345},[1215],{"type":40,"value":709},{"type":35,"tag":326,"props":1217,"children":1218},{"class":328,"line":637},[1219],{"type":35,"tag":326,"props":1220,"children":1222},{"emptyLinePlaceholder":1221},true,[1223],{"type":40,"value":1224},"\n",{"type":35,"tag":326,"props":1226,"children":1227},{"class":328,"line":678},[1228,1233,1237,1242,1247],{"type":35,"tag":326,"props":1229,"children":1230},{"style":554},[1231],{"type":40,"value":1232},"if",{"type":35,"tag":326,"props":1234,"children":1235},{"style":339},[1236],{"type":40,"value":563},{"type":35,"tag":326,"props":1238,"children":1239},{"style":472},[1240],{"type":40,"value":1241},"isNotEmpty",{"type":35,"tag":326,"props":1243,"children":1244},{"style":339},[1245],{"type":40,"value":1246},"(items)) ",{"type":35,"tag":326,"props":1248,"children":1249},{"style":345},[1250],{"type":40,"value":1251},"{\n",{"type":35,"tag":326,"props":1253,"children":1254},{"class":328,"line":703},[1255],{"type":35,"tag":326,"props":1256,"children":1258},{"style":1257},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1259],{"type":40,"value":1260},"  \u002F\u002F ...\n",{"type":35,"tag":326,"props":1262,"children":1264},{"class":328,"line":1263},7,[1265],{"type":35,"tag":326,"props":1266,"children":1267},{"style":345},[1268],{"type":40,"value":709},{"type":35,"tag":56,"props":1270,"children":1272},{"id":1271},"after-direct-check",[1273],{"type":40,"value":1274},"After: Direct Check",{"type":35,"tag":315,"props":1276,"children":1278},{"className":317,"code":1277,"language":319,"meta":320,"style":320},"if (items.length > 0) {\n  \u002F\u002F ...\n}\n",[1279],{"type":35,"tag":94,"props":1280,"children":1281},{"__ignoreMap":320},[1282,1319,1326],{"type":35,"tag":326,"props":1283,"children":1284},{"class":328,"line":329},[1285,1289,1294,1298,1303,1307,1311,1315],{"type":35,"tag":326,"props":1286,"children":1287},{"style":554},[1288],{"type":40,"value":1232},{"type":35,"tag":326,"props":1290,"children":1291},{"style":339},[1292],{"type":40,"value":1293}," (items",{"type":35,"tag":326,"props":1295,"children":1296},{"style":345},[1297],{"type":40,"value":748},{"type":35,"tag":326,"props":1299,"children":1300},{"style":339},[1301],{"type":40,"value":1302},"length ",{"type":35,"tag":326,"props":1304,"children":1305},{"style":345},[1306],{"type":40,"value":777},{"type":35,"tag":326,"props":1308,"children":1309},{"style":780},[1310],{"type":40,"value":783},{"type":35,"tag":326,"props":1312,"children":1313},{"style":339},[1314],{"type":40,"value":572},{"type":35,"tag":326,"props":1316,"children":1317},{"style":345},[1318],{"type":40,"value":1251},{"type":35,"tag":326,"props":1320,"children":1321},{"class":328,"line":550},[1322],{"type":35,"tag":326,"props":1323,"children":1324},{"style":1257},[1325],{"type":40,"value":1260},{"type":35,"tag":326,"props":1327,"children":1328},{"class":328,"line":596},[1329],{"type":35,"tag":326,"props":1330,"children":1331},{"style":345},[1332],{"type":40,"value":709},{"type":35,"tag":1334,"props":1335,"children":1336},"style",{},[1337],{"type":40,"value":1338},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1340,"total":1510},[1341,1366,1380,1393,1407,1424,1440,1454,1458,1469,1479,1497],{"slug":1342,"name":1342,"fn":1343,"description":1344,"org":1345,"tags":1346,"stars":1363,"repoUrl":1364,"updatedAt":1365},"xcodebuildmcp","build and test Apple apps with XcodeBuildMCP","Official skill for XcodeBuildMCP. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1347,1350,1353,1356,1357,1360],{"name":1348,"slug":1349,"type":16},"Debugging","debugging",{"name":1351,"slug":1352,"type":16},"iOS","ios",{"name":1354,"slug":1355,"type":16},"macOS","macos",{"name":9,"slug":8,"type":16},{"name":1358,"slug":1359,"type":16},"Testing","testing",{"name":1361,"slug":1362,"type":16},"Xcode","xcode",6176,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002FXcodeBuildMCP","2026-04-06T18:13:34.8719",{"slug":1367,"name":1367,"fn":1368,"description":1369,"org":1370,"tags":1371,"stars":1363,"repoUrl":1364,"updatedAt":1379},"xcodebuildmcp-cli","build and test Apple apps via CLI","Official skill for the XcodeBuildMCP CLI. Use when doing iOS\u002FmacOS\u002FwatchOS\u002FtvOS\u002FvisionOS work (build, test, run, debug, log, UI automation).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1372,1375,1376,1377,1378],{"name":1373,"slug":1374,"type":16},"CLI","cli",{"name":1351,"slug":1352,"type":16},{"name":1354,"slug":1355,"type":16},{"name":1358,"slug":1359,"type":16},{"name":1361,"slug":1362,"type":16},"2026-04-06T18:13:36.13414",{"slug":1381,"name":1381,"fn":1382,"description":1383,"org":1384,"tags":1385,"stars":17,"repoUrl":18,"updatedAt":1392},"agents-md","maintain project instruction files","Creates and maintains concise AGENTS.md and CLAUDE.md project instruction files. Use when asked to create AGENTS.md, update AGENTS.md, maintain agent docs, set up CLAUDE.md, document repository agent conventions, or keep coding-agent instructions minimal and reference-backed.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1386,1389],{"name":1387,"slug":1388,"type":16},"Documentation","documentation",{"name":1390,"slug":1391,"type":16},"Engineering","engineering","2026-05-15T06:16:29.695991",{"slug":1394,"name":1394,"fn":1395,"description":1396,"org":1397,"tags":1398,"stars":17,"repoUrl":18,"updatedAt":1406},"blog-writing-guide","write and review engineering blog posts","Write, review, and improve blog posts for the Sentry engineering blog following Sentry's specific writing standards, voice, and quality bar. Use this skill whenever someone asks to write a blog post, draft a technical article, review blog content, improve a draft, write a product announcement, create an engineering deep-dive, or produce any written content destined for the Sentry blog or developer audience. Also trigger when the user mentions \"blog post,\" \"blog draft,\" \"write-up,\" \"announcement post,\" \"engineering post,\" \"deep dive,\" \"postmortem,\" or asks for help with technical writing for Sentry. Even if the user just says \"help me write about [feature\u002Ftopic]\" — if it sounds like it could become a Sentry blog post, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1399,1402,1403],{"name":1400,"slug":1401,"type":16},"Communications","communications",{"name":9,"slug":8,"type":16},{"name":1404,"slug":1405,"type":16},"Technical Writing","technical-writing","2026-05-15T06:16:33.38217",{"slug":1408,"name":1408,"fn":1409,"description":1410,"org":1411,"tags":1412,"stars":17,"repoUrl":18,"updatedAt":1423},"brand-guidelines","write copy following Sentry brand guidelines","Write copy following Sentry brand guidelines. Use when writing UI text, error messages, empty states, onboarding flows, 404 pages, documentation, marketing copy, or any user-facing content. Covers both Plain Speech (default) and Sentry Voice tones.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1413,1416,1419,1420],{"name":1414,"slug":1415,"type":16},"Branding","branding",{"name":1417,"slug":1418,"type":16},"Content Creation","content-creation",{"name":9,"slug":8,"type":16},{"name":1421,"slug":1422,"type":16},"UX Copy","ux-copy","2026-05-15T06:16:22.395707",{"slug":1425,"name":1425,"fn":1426,"description":1427,"org":1428,"tags":1429,"stars":17,"repoUrl":18,"updatedAt":1439},"claude-settings-audit","generate Claude Code settings permissions","Analyze a repository to generate recommended Claude Code settings.json permissions. Use when setting up a new project, auditing existing settings, or determining which read-only bash commands to allow. Detects tech stack, build tools, and monorepo structure.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1430,1433,1436],{"name":1431,"slug":1432,"type":16},"Claude Code","claude-code",{"name":1434,"slug":1435,"type":16},"Configuration","configuration",{"name":1437,"slug":1438,"type":16},"Security","security","2026-05-15T06:16:44.335977",{"slug":1441,"name":1441,"fn":1442,"description":1443,"org":1444,"tags":1445,"stars":17,"repoUrl":18,"updatedAt":1453},"code-review","perform code reviews for Sentry projects","Perform code reviews following Sentry engineering practices. Use when reviewing pull requests, examining code changes, or providing feedback on code quality. Covers security, performance, testing, and design review.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1446,1448,1449,1452],{"name":1447,"slug":1441,"type":16},"Code Review",{"name":1390,"slug":1391,"type":16},{"name":1450,"slug":1451,"type":16},"Performance","performance",{"name":1437,"slug":1438,"type":16},"2026-05-15T06:16:35.824864",{"slug":4,"name":4,"fn":5,"description":6,"org":1455,"tags":1456,"stars":17,"repoUrl":18,"updatedAt":19},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1457],{"name":14,"slug":15,"type":16},{"slug":1459,"name":1459,"fn":1460,"description":1461,"org":1462,"tags":1463,"stars":17,"repoUrl":18,"updatedAt":1468},"commit","create commits with Sentry conventions","Use for every request to commit changes or draft a commit message. Creates Sentry-style conventional commits with issue references.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1464,1467],{"name":1465,"slug":1466,"type":16},"Git","git",{"name":9,"slug":8,"type":16},"2026-07-18T05:15:10.723937",{"slug":1470,"name":1470,"fn":1471,"description":1472,"org":1473,"tags":1474,"stars":17,"repoUrl":18,"updatedAt":1478},"create-branch","create git branches for Sentry workflows","Create a git branch following Sentry naming conventions. Use when asked to \"create a branch\", \"new branch\", \"start a branch\", \"make a branch\", \"switch to a new branch\", or when starting new work on the default branch.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1475,1476,1477],{"name":1390,"slug":1391,"type":16},{"name":1465,"slug":1466,"type":16},{"name":9,"slug":8,"type":16},"2026-05-15T06:16:39.458431",{"slug":1480,"name":1480,"fn":1481,"description":1482,"org":1483,"tags":1484,"stars":17,"repoUrl":18,"updatedAt":1496},"django-access-review","review Django access control and IDOR","Django access control and IDOR security review. Use when reviewing Django views, DRF viewsets, ORM queries, or any Python\u002FDjango code handling user authorization. Trigger keywords: \"IDOR\", \"access control\", \"authorization\", \"Django permissions\", \"object permissions\", \"tenant isolation\", \"broken access\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1485,1488,1489,1492,1495],{"name":1486,"slug":1487,"type":16},"Access Control","access-control",{"name":14,"slug":15,"type":16},{"name":1490,"slug":1491,"type":16},"Django","django",{"name":1493,"slug":1494,"type":16},"Python","python",{"name":1437,"slug":1438,"type":16},"2026-05-15T06:16:43.098698",{"slug":1498,"name":1498,"fn":1499,"description":1500,"org":1501,"tags":1502,"stars":17,"repoUrl":18,"updatedAt":1509},"django-perf-review","review and optimize Django performance","Django performance code review. Use when asked to \"review Django performance\", \"find N+1 queries\", \"optimize Django\", \"check queryset performance\", \"database performance\", \"Django ORM issues\", or audit Django code for performance problems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1503,1504,1507,1508],{"name":1447,"slug":1441,"type":16},{"name":1505,"slug":1506,"type":16},"Database","database",{"name":1490,"slug":1491,"type":16},{"name":1450,"slug":1451,"type":16},"2026-05-15T06:16:24.832813",88,{"items":1512,"total":1553},[1513,1518,1524,1531,1537,1544,1548],{"slug":1381,"name":1381,"fn":1382,"description":1383,"org":1514,"tags":1515,"stars":17,"repoUrl":18,"updatedAt":1392},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1516,1517],{"name":1387,"slug":1388,"type":16},{"name":1390,"slug":1391,"type":16},{"slug":1394,"name":1394,"fn":1395,"description":1396,"org":1519,"tags":1520,"stars":17,"repoUrl":18,"updatedAt":1406},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1521,1522,1523],{"name":1400,"slug":1401,"type":16},{"name":9,"slug":8,"type":16},{"name":1404,"slug":1405,"type":16},{"slug":1408,"name":1408,"fn":1409,"description":1410,"org":1525,"tags":1526,"stars":17,"repoUrl":18,"updatedAt":1423},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1527,1528,1529,1530],{"name":1414,"slug":1415,"type":16},{"name":1417,"slug":1418,"type":16},{"name":9,"slug":8,"type":16},{"name":1421,"slug":1422,"type":16},{"slug":1425,"name":1425,"fn":1426,"description":1427,"org":1532,"tags":1533,"stars":17,"repoUrl":18,"updatedAt":1439},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1534,1535,1536],{"name":1431,"slug":1432,"type":16},{"name":1434,"slug":1435,"type":16},{"name":1437,"slug":1438,"type":16},{"slug":1441,"name":1441,"fn":1442,"description":1443,"org":1538,"tags":1539,"stars":17,"repoUrl":18,"updatedAt":1453},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1540,1541,1542,1543],{"name":1447,"slug":1441,"type":16},{"name":1390,"slug":1391,"type":16},{"name":1450,"slug":1451,"type":16},{"name":1437,"slug":1438,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":1545,"tags":1546,"stars":17,"repoUrl":18,"updatedAt":19},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1547],{"name":14,"slug":15,"type":16},{"slug":1459,"name":1459,"fn":1460,"description":1461,"org":1549,"tags":1550,"stars":17,"repoUrl":18,"updatedAt":1468},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1551,1552],{"name":1465,"slug":1466,"type":16},{"name":9,"slug":8,"type":16},28]