[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sentry-code-review":3,"mdc-6u4yyl-key":37,"related-org-sentry-code-review":637,"related-repo-sentry-code-review":803},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":32,"sourceUrl":35,"mdContent":36},"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},"sentry","Sentry","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fsentry.png","getsentry",[13,17,20,22],{"name":14,"slug":15,"type":16},"Security","security","tag",{"name":18,"slug":19,"type":16},"Performance","performance",{"name":21,"slug":4,"type":16},"Code Review",{"name":23,"slug":24,"type":16},"Engineering","engineering",861,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills","2026-05-15T06:16:35.824864",null,45,[31],"tag-production",{"repoUrl":26,"stars":25,"forks":29,"topics":33,"description":34},[31],"Agent Skills used by the Sentry team for development.","https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fcode-review","---\nname: code-review\ndescription: 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.\n---\n\n# Sentry Code Review\n\nFollow these guidelines when reviewing code for Sentry projects.\n\n## Review Checklist\n\n### Identifying Problems\n\nLook for these issues in code changes:\n\n- **Runtime errors**: Potential exceptions, null pointer issues, out-of-bounds access\n- **Performance**: Unbounded O(n²) operations, N+1 queries, unnecessary allocations\n- **Side effects**: Unintended behavioral changes affecting other components\n- **Backwards compatibility**: Breaking API changes without migration path\n- **ORM queries**: Complex Django ORM with unexpected query performance\n- **Security vulnerabilities**: Injection, XSS, access control gaps, secrets exposure\n\n### Design Assessment\n\n- Do component interactions make logical sense?\n- Does the change align with existing project architecture?\n- Are there conflicts with current requirements or goals?\n\n### Test Coverage\n\nEvery PR should have appropriate test coverage:\n\n- Functional tests for business logic\n- Integration tests for component interactions\n- End-to-end tests for critical user paths\n\nVerify tests cover actual requirements and edge cases. Avoid excessive branching or looping in test code.\n\n### Long-Term Impact\n\nFlag for senior engineer review when changes involve:\n\n- Database schema modifications\n- API contract changes\n- New framework or library adoption\n- Performance-critical code paths\n- Security-sensitive functionality\n\n## Feedback Guidelines\n\n### Tone\n\n- Be polite and empathetic\n- Provide actionable suggestions, not vague criticism\n- Phrase as questions when uncertain: \"Have you considered...?\"\n\n### Approval\n\n- Approve when only minor issues remain\n- Don't block PRs for stylistic preferences\n- Remember: the goal is risk reduction, not perfect code\n\n## Common Patterns to Flag\n\n### Python\u002FDjango\n\n```python\n# Bad: N+1 query\nfor user in users:\n    print(user.profile.name)  # Separate query per user\n\n# Good: Prefetch related\nusers = User.objects.prefetch_related('profile')\n```\n\n### TypeScript\u002FReact\n\n```typescript\n\u002F\u002F Bad: Missing dependency in useEffect\nuseEffect(() => {\n  fetchData(userId);\n}, []);  \u002F\u002F userId not in deps\n\n\u002F\u002F Good: Include all dependencies\nuseEffect(() => {\n  fetchData(userId);\n}, [userId]);\n```\n\n### Security\n\n```python\n# Bad: SQL injection risk\ncursor.execute(f\"SELECT * FROM users WHERE id = {user_id}\")\n\n# Good: Parameterized query\ncursor.execute(\"SELECT * FROM users WHERE id = %s\", [user_id])\n```\n\n## References\n\n- [Sentry Code Review Guidelines](https:\u002F\u002Fdevelop.sentry.dev\u002Fengineering-practices\u002Fcode-review\u002F)\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,51,57,64,71,76,141,147,165,171,176,194,199,205,210,238,244,250,268,274,292,298,304,373,379,560,564,610,616,631],{"type":43,"tag":44,"props":45,"children":47},"element","h1",{"id":46},"sentry-code-review",[48],{"type":49,"value":50},"text","Sentry Code Review",{"type":43,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"Follow these guidelines when reviewing code for Sentry projects.",{"type":43,"tag":58,"props":59,"children":61},"h2",{"id":60},"review-checklist",[62],{"type":49,"value":63},"Review Checklist",{"type":43,"tag":65,"props":66,"children":68},"h3",{"id":67},"identifying-problems",[69],{"type":49,"value":70},"Identifying Problems",{"type":43,"tag":52,"props":72,"children":73},{},[74],{"type":49,"value":75},"Look for these issues in code changes:",{"type":43,"tag":77,"props":78,"children":79},"ul",{},[80,92,101,111,121,131],{"type":43,"tag":81,"props":82,"children":83},"li",{},[84,90],{"type":43,"tag":85,"props":86,"children":87},"strong",{},[88],{"type":49,"value":89},"Runtime errors",{"type":49,"value":91},": Potential exceptions, null pointer issues, out-of-bounds access",{"type":43,"tag":81,"props":93,"children":94},{},[95,99],{"type":43,"tag":85,"props":96,"children":97},{},[98],{"type":49,"value":18},{"type":49,"value":100},": Unbounded O(n²) operations, N+1 queries, unnecessary allocations",{"type":43,"tag":81,"props":102,"children":103},{},[104,109],{"type":43,"tag":85,"props":105,"children":106},{},[107],{"type":49,"value":108},"Side effects",{"type":49,"value":110},": Unintended behavioral changes affecting other components",{"type":43,"tag":81,"props":112,"children":113},{},[114,119],{"type":43,"tag":85,"props":115,"children":116},{},[117],{"type":49,"value":118},"Backwards compatibility",{"type":49,"value":120},": Breaking API changes without migration path",{"type":43,"tag":81,"props":122,"children":123},{},[124,129],{"type":43,"tag":85,"props":125,"children":126},{},[127],{"type":49,"value":128},"ORM queries",{"type":49,"value":130},": Complex Django ORM with unexpected query performance",{"type":43,"tag":81,"props":132,"children":133},{},[134,139],{"type":43,"tag":85,"props":135,"children":136},{},[137],{"type":49,"value":138},"Security vulnerabilities",{"type":49,"value":140},": Injection, XSS, access control gaps, secrets exposure",{"type":43,"tag":65,"props":142,"children":144},{"id":143},"design-assessment",[145],{"type":49,"value":146},"Design Assessment",{"type":43,"tag":77,"props":148,"children":149},{},[150,155,160],{"type":43,"tag":81,"props":151,"children":152},{},[153],{"type":49,"value":154},"Do component interactions make logical sense?",{"type":43,"tag":81,"props":156,"children":157},{},[158],{"type":49,"value":159},"Does the change align with existing project architecture?",{"type":43,"tag":81,"props":161,"children":162},{},[163],{"type":49,"value":164},"Are there conflicts with current requirements or goals?",{"type":43,"tag":65,"props":166,"children":168},{"id":167},"test-coverage",[169],{"type":49,"value":170},"Test Coverage",{"type":43,"tag":52,"props":172,"children":173},{},[174],{"type":49,"value":175},"Every PR should have appropriate test coverage:",{"type":43,"tag":77,"props":177,"children":178},{},[179,184,189],{"type":43,"tag":81,"props":180,"children":181},{},[182],{"type":49,"value":183},"Functional tests for business logic",{"type":43,"tag":81,"props":185,"children":186},{},[187],{"type":49,"value":188},"Integration tests for component interactions",{"type":43,"tag":81,"props":190,"children":191},{},[192],{"type":49,"value":193},"End-to-end tests for critical user paths",{"type":43,"tag":52,"props":195,"children":196},{},[197],{"type":49,"value":198},"Verify tests cover actual requirements and edge cases. Avoid excessive branching or looping in test code.",{"type":43,"tag":65,"props":200,"children":202},{"id":201},"long-term-impact",[203],{"type":49,"value":204},"Long-Term Impact",{"type":43,"tag":52,"props":206,"children":207},{},[208],{"type":49,"value":209},"Flag for senior engineer review when changes involve:",{"type":43,"tag":77,"props":211,"children":212},{},[213,218,223,228,233],{"type":43,"tag":81,"props":214,"children":215},{},[216],{"type":49,"value":217},"Database schema modifications",{"type":43,"tag":81,"props":219,"children":220},{},[221],{"type":49,"value":222},"API contract changes",{"type":43,"tag":81,"props":224,"children":225},{},[226],{"type":49,"value":227},"New framework or library adoption",{"type":43,"tag":81,"props":229,"children":230},{},[231],{"type":49,"value":232},"Performance-critical code paths",{"type":43,"tag":81,"props":234,"children":235},{},[236],{"type":49,"value":237},"Security-sensitive functionality",{"type":43,"tag":58,"props":239,"children":241},{"id":240},"feedback-guidelines",[242],{"type":49,"value":243},"Feedback Guidelines",{"type":43,"tag":65,"props":245,"children":247},{"id":246},"tone",[248],{"type":49,"value":249},"Tone",{"type":43,"tag":77,"props":251,"children":252},{},[253,258,263],{"type":43,"tag":81,"props":254,"children":255},{},[256],{"type":49,"value":257},"Be polite and empathetic",{"type":43,"tag":81,"props":259,"children":260},{},[261],{"type":49,"value":262},"Provide actionable suggestions, not vague criticism",{"type":43,"tag":81,"props":264,"children":265},{},[266],{"type":49,"value":267},"Phrase as questions when uncertain: \"Have you considered...?\"",{"type":43,"tag":65,"props":269,"children":271},{"id":270},"approval",[272],{"type":49,"value":273},"Approval",{"type":43,"tag":77,"props":275,"children":276},{},[277,282,287],{"type":43,"tag":81,"props":278,"children":279},{},[280],{"type":49,"value":281},"Approve when only minor issues remain",{"type":43,"tag":81,"props":283,"children":284},{},[285],{"type":49,"value":286},"Don't block PRs for stylistic preferences",{"type":43,"tag":81,"props":288,"children":289},{},[290],{"type":49,"value":291},"Remember: the goal is risk reduction, not perfect code",{"type":43,"tag":58,"props":293,"children":295},{"id":294},"common-patterns-to-flag",[296],{"type":49,"value":297},"Common Patterns to Flag",{"type":43,"tag":65,"props":299,"children":301},{"id":300},"pythondjango",[302],{"type":49,"value":303},"Python\u002FDjango",{"type":43,"tag":305,"props":306,"children":311},"pre",{"className":307,"code":308,"language":309,"meta":310,"style":310},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Bad: N+1 query\nfor user in users:\n    print(user.profile.name)  # Separate query per user\n\n# Good: Prefetch related\nusers = User.objects.prefetch_related('profile')\n","python","",[312],{"type":43,"tag":313,"props":314,"children":315},"code",{"__ignoreMap":310},[316,327,336,345,355,364],{"type":43,"tag":317,"props":318,"children":321},"span",{"class":319,"line":320},"line",1,[322],{"type":43,"tag":317,"props":323,"children":324},{},[325],{"type":49,"value":326},"# Bad: N+1 query\n",{"type":43,"tag":317,"props":328,"children":330},{"class":319,"line":329},2,[331],{"type":43,"tag":317,"props":332,"children":333},{},[334],{"type":49,"value":335},"for user in users:\n",{"type":43,"tag":317,"props":337,"children":339},{"class":319,"line":338},3,[340],{"type":43,"tag":317,"props":341,"children":342},{},[343],{"type":49,"value":344},"    print(user.profile.name)  # Separate query per user\n",{"type":43,"tag":317,"props":346,"children":348},{"class":319,"line":347},4,[349],{"type":43,"tag":317,"props":350,"children":352},{"emptyLinePlaceholder":351},true,[353],{"type":49,"value":354},"\n",{"type":43,"tag":317,"props":356,"children":358},{"class":319,"line":357},5,[359],{"type":43,"tag":317,"props":360,"children":361},{},[362],{"type":49,"value":363},"# Good: Prefetch related\n",{"type":43,"tag":317,"props":365,"children":367},{"class":319,"line":366},6,[368],{"type":43,"tag":317,"props":369,"children":370},{},[371],{"type":49,"value":372},"users = User.objects.prefetch_related('profile')\n",{"type":43,"tag":65,"props":374,"children":376},{"id":375},"typescriptreact",[377],{"type":49,"value":378},"TypeScript\u002FReact",{"type":43,"tag":305,"props":380,"children":384},{"className":381,"code":382,"language":383,"meta":310,"style":310},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F Bad: Missing dependency in useEffect\nuseEffect(() => {\n  fetchData(userId);\n}, []);  \u002F\u002F userId not in deps\n\n\u002F\u002F Good: Include all dependencies\nuseEffect(() => {\n  fetchData(userId);\n}, [userId]);\n","typescript",[385],{"type":43,"tag":313,"props":386,"children":387},{"__ignoreMap":310},[388,397,429,457,480,487,495,519,543],{"type":43,"tag":317,"props":389,"children":390},{"class":319,"line":320},[391],{"type":43,"tag":317,"props":392,"children":394},{"style":393},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[395],{"type":49,"value":396},"\u002F\u002F Bad: Missing dependency in useEffect\n",{"type":43,"tag":317,"props":398,"children":399},{"class":319,"line":329},[400,406,412,418,424],{"type":43,"tag":317,"props":401,"children":403},{"style":402},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[404],{"type":49,"value":405},"useEffect",{"type":43,"tag":317,"props":407,"children":409},{"style":408},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[410],{"type":49,"value":411},"(",{"type":43,"tag":317,"props":413,"children":415},{"style":414},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[416],{"type":49,"value":417},"()",{"type":43,"tag":317,"props":419,"children":421},{"style":420},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[422],{"type":49,"value":423}," =>",{"type":43,"tag":317,"props":425,"children":426},{"style":414},[427],{"type":49,"value":428}," {\n",{"type":43,"tag":317,"props":430,"children":431},{"class":319,"line":338},[432,437,442,447,452],{"type":43,"tag":317,"props":433,"children":434},{"style":402},[435],{"type":49,"value":436},"  fetchData",{"type":43,"tag":317,"props":438,"children":440},{"style":439},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[441],{"type":49,"value":411},{"type":43,"tag":317,"props":443,"children":444},{"style":408},[445],{"type":49,"value":446},"userId",{"type":43,"tag":317,"props":448,"children":449},{"style":439},[450],{"type":49,"value":451},")",{"type":43,"tag":317,"props":453,"children":454},{"style":414},[455],{"type":49,"value":456},";\n",{"type":43,"tag":317,"props":458,"children":459},{"class":319,"line":347},[460,465,470,475],{"type":43,"tag":317,"props":461,"children":462},{"style":414},[463],{"type":49,"value":464},"},",{"type":43,"tag":317,"props":466,"children":467},{"style":408},[468],{"type":49,"value":469}," [])",{"type":43,"tag":317,"props":471,"children":472},{"style":414},[473],{"type":49,"value":474},";",{"type":43,"tag":317,"props":476,"children":477},{"style":393},[478],{"type":49,"value":479},"  \u002F\u002F userId not in deps\n",{"type":43,"tag":317,"props":481,"children":482},{"class":319,"line":357},[483],{"type":43,"tag":317,"props":484,"children":485},{"emptyLinePlaceholder":351},[486],{"type":49,"value":354},{"type":43,"tag":317,"props":488,"children":489},{"class":319,"line":366},[490],{"type":43,"tag":317,"props":491,"children":492},{"style":393},[493],{"type":49,"value":494},"\u002F\u002F Good: Include all dependencies\n",{"type":43,"tag":317,"props":496,"children":498},{"class":319,"line":497},7,[499,503,507,511,515],{"type":43,"tag":317,"props":500,"children":501},{"style":402},[502],{"type":49,"value":405},{"type":43,"tag":317,"props":504,"children":505},{"style":408},[506],{"type":49,"value":411},{"type":43,"tag":317,"props":508,"children":509},{"style":414},[510],{"type":49,"value":417},{"type":43,"tag":317,"props":512,"children":513},{"style":420},[514],{"type":49,"value":423},{"type":43,"tag":317,"props":516,"children":517},{"style":414},[518],{"type":49,"value":428},{"type":43,"tag":317,"props":520,"children":522},{"class":319,"line":521},8,[523,527,531,535,539],{"type":43,"tag":317,"props":524,"children":525},{"style":402},[526],{"type":49,"value":436},{"type":43,"tag":317,"props":528,"children":529},{"style":439},[530],{"type":49,"value":411},{"type":43,"tag":317,"props":532,"children":533},{"style":408},[534],{"type":49,"value":446},{"type":43,"tag":317,"props":536,"children":537},{"style":439},[538],{"type":49,"value":451},{"type":43,"tag":317,"props":540,"children":541},{"style":414},[542],{"type":49,"value":456},{"type":43,"tag":317,"props":544,"children":546},{"class":319,"line":545},9,[547,551,556],{"type":43,"tag":317,"props":548,"children":549},{"style":414},[550],{"type":49,"value":464},{"type":43,"tag":317,"props":552,"children":553},{"style":408},[554],{"type":49,"value":555}," [userId])",{"type":43,"tag":317,"props":557,"children":558},{"style":414},[559],{"type":49,"value":456},{"type":43,"tag":65,"props":561,"children":562},{"id":15},[563],{"type":49,"value":14},{"type":43,"tag":305,"props":565,"children":567},{"className":307,"code":566,"language":309,"meta":310,"style":310},"# Bad: SQL injection risk\ncursor.execute(f\"SELECT * FROM users WHERE id = {user_id}\")\n\n# Good: Parameterized query\ncursor.execute(\"SELECT * FROM users WHERE id = %s\", [user_id])\n",[568],{"type":43,"tag":313,"props":569,"children":570},{"__ignoreMap":310},[571,579,587,594,602],{"type":43,"tag":317,"props":572,"children":573},{"class":319,"line":320},[574],{"type":43,"tag":317,"props":575,"children":576},{},[577],{"type":49,"value":578},"# Bad: SQL injection risk\n",{"type":43,"tag":317,"props":580,"children":581},{"class":319,"line":329},[582],{"type":43,"tag":317,"props":583,"children":584},{},[585],{"type":49,"value":586},"cursor.execute(f\"SELECT * FROM users WHERE id = {user_id}\")\n",{"type":43,"tag":317,"props":588,"children":589},{"class":319,"line":338},[590],{"type":43,"tag":317,"props":591,"children":592},{"emptyLinePlaceholder":351},[593],{"type":49,"value":354},{"type":43,"tag":317,"props":595,"children":596},{"class":319,"line":347},[597],{"type":43,"tag":317,"props":598,"children":599},{},[600],{"type":49,"value":601},"# Good: Parameterized query\n",{"type":43,"tag":317,"props":603,"children":604},{"class":319,"line":357},[605],{"type":43,"tag":317,"props":606,"children":607},{},[608],{"type":49,"value":609},"cursor.execute(\"SELECT * FROM users WHERE id = %s\", [user_id])\n",{"type":43,"tag":58,"props":611,"children":613},{"id":612},"references",[614],{"type":49,"value":615},"References",{"type":43,"tag":77,"props":617,"children":618},{},[619],{"type":43,"tag":81,"props":620,"children":621},{},[622],{"type":43,"tag":623,"props":624,"children":628},"a",{"href":625,"rel":626},"https:\u002F\u002Fdevelop.sentry.dev\u002Fengineering-practices\u002Fcode-review\u002F",[627],"nofollow",[629],{"type":49,"value":630},"Sentry Code Review Guidelines",{"type":43,"tag":632,"props":633,"children":634},"style",{},[635],{"type":49,"value":636},"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":638,"total":802},[639,664,678,689,703,720,734,741,751,762,772,789],{"slug":640,"name":640,"fn":641,"description":642,"org":643,"tags":644,"stars":661,"repoUrl":662,"updatedAt":663},"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},[645,648,651,654,655,658],{"name":646,"slug":647,"type":16},"Debugging","debugging",{"name":649,"slug":650,"type":16},"iOS","ios",{"name":652,"slug":653,"type":16},"macOS","macos",{"name":9,"slug":8,"type":16},{"name":656,"slug":657,"type":16},"Testing","testing",{"name":659,"slug":660,"type":16},"Xcode","xcode",6176,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002FXcodeBuildMCP","2026-04-06T18:13:34.8719",{"slug":665,"name":665,"fn":666,"description":667,"org":668,"tags":669,"stars":661,"repoUrl":662,"updatedAt":677},"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},[670,673,674,675,676],{"name":671,"slug":672,"type":16},"CLI","cli",{"name":649,"slug":650,"type":16},{"name":652,"slug":653,"type":16},{"name":656,"slug":657,"type":16},{"name":659,"slug":660,"type":16},"2026-04-06T18:13:36.13414",{"slug":679,"name":679,"fn":680,"description":681,"org":682,"tags":683,"stars":25,"repoUrl":26,"updatedAt":688},"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},[684,687],{"name":685,"slug":686,"type":16},"Documentation","documentation",{"name":23,"slug":24,"type":16},"2026-05-15T06:16:29.695991",{"slug":690,"name":690,"fn":691,"description":692,"org":693,"tags":694,"stars":25,"repoUrl":26,"updatedAt":702},"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},[695,698,699],{"name":696,"slug":697,"type":16},"Communications","communications",{"name":9,"slug":8,"type":16},{"name":700,"slug":701,"type":16},"Technical Writing","technical-writing","2026-05-15T06:16:33.38217",{"slug":704,"name":704,"fn":705,"description":706,"org":707,"tags":708,"stars":25,"repoUrl":26,"updatedAt":719},"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},[709,712,715,716],{"name":710,"slug":711,"type":16},"Branding","branding",{"name":713,"slug":714,"type":16},"Content Creation","content-creation",{"name":9,"slug":8,"type":16},{"name":717,"slug":718,"type":16},"UX Copy","ux-copy","2026-05-15T06:16:22.395707",{"slug":721,"name":721,"fn":722,"description":723,"org":724,"tags":725,"stars":25,"repoUrl":26,"updatedAt":733},"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},[726,729,732],{"name":727,"slug":728,"type":16},"Claude Code","claude-code",{"name":730,"slug":731,"type":16},"Configuration","configuration",{"name":14,"slug":15,"type":16},"2026-05-15T06:16:44.335977",{"slug":4,"name":4,"fn":5,"description":6,"org":735,"tags":736,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[737,738,739,740],{"name":21,"slug":4,"type":16},{"name":23,"slug":24,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"slug":742,"name":742,"fn":743,"description":744,"org":745,"tags":746,"stars":25,"repoUrl":26,"updatedAt":750},"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},[747],{"name":748,"slug":749,"type":16},"Code Analysis","code-analysis","2026-05-15T06:16:32.127981",{"slug":752,"name":752,"fn":753,"description":754,"org":755,"tags":756,"stars":25,"repoUrl":26,"updatedAt":761},"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},[757,760],{"name":758,"slug":759,"type":16},"Git","git",{"name":9,"slug":8,"type":16},"2026-07-18T05:15:10.723937",{"slug":763,"name":763,"fn":764,"description":765,"org":766,"tags":767,"stars":25,"repoUrl":26,"updatedAt":771},"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},[768,769,770],{"name":23,"slug":24,"type":16},{"name":758,"slug":759,"type":16},{"name":9,"slug":8,"type":16},"2026-05-15T06:16:39.458431",{"slug":773,"name":773,"fn":774,"description":775,"org":776,"tags":777,"stars":25,"repoUrl":26,"updatedAt":788},"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},[778,781,782,785,787],{"name":779,"slug":780,"type":16},"Access Control","access-control",{"name":748,"slug":749,"type":16},{"name":783,"slug":784,"type":16},"Django","django",{"name":786,"slug":309,"type":16},"Python",{"name":14,"slug":15,"type":16},"2026-05-15T06:16:43.098698",{"slug":790,"name":790,"fn":791,"description":792,"org":793,"tags":794,"stars":25,"repoUrl":26,"updatedAt":801},"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},[795,796,799,800],{"name":21,"slug":4,"type":16},{"name":797,"slug":798,"type":16},"Database","database",{"name":783,"slug":784,"type":16},{"name":18,"slug":19,"type":16},"2026-05-15T06:16:24.832813",88,{"items":804,"total":845},[805,810,816,823,829,836,840],{"slug":679,"name":679,"fn":680,"description":681,"org":806,"tags":807,"stars":25,"repoUrl":26,"updatedAt":688},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[808,809],{"name":685,"slug":686,"type":16},{"name":23,"slug":24,"type":16},{"slug":690,"name":690,"fn":691,"description":692,"org":811,"tags":812,"stars":25,"repoUrl":26,"updatedAt":702},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[813,814,815],{"name":696,"slug":697,"type":16},{"name":9,"slug":8,"type":16},{"name":700,"slug":701,"type":16},{"slug":704,"name":704,"fn":705,"description":706,"org":817,"tags":818,"stars":25,"repoUrl":26,"updatedAt":719},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[819,820,821,822],{"name":710,"slug":711,"type":16},{"name":713,"slug":714,"type":16},{"name":9,"slug":8,"type":16},{"name":717,"slug":718,"type":16},{"slug":721,"name":721,"fn":722,"description":723,"org":824,"tags":825,"stars":25,"repoUrl":26,"updatedAt":733},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[826,827,828],{"name":727,"slug":728,"type":16},{"name":730,"slug":731,"type":16},{"name":14,"slug":15,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":830,"tags":831,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[832,833,834,835],{"name":21,"slug":4,"type":16},{"name":23,"slug":24,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"slug":742,"name":742,"fn":743,"description":744,"org":837,"tags":838,"stars":25,"repoUrl":26,"updatedAt":750},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[839],{"name":748,"slug":749,"type":16},{"slug":752,"name":752,"fn":753,"description":754,"org":841,"tags":842,"stars":25,"repoUrl":26,"updatedAt":761},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[843,844],{"name":758,"slug":759,"type":16},{"name":9,"slug":8,"type":16},28]