[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sentry-find-bugs":3,"mdc-c4p9a8-key":38,"related-org-sentry-find-bugs":485,"related-repo-sentry-find-bugs":655},{"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":33,"sourceUrl":36,"mdContent":37},"find-bugs","identify bugs and security vulnerabilities","Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch.",{"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,23],{"name":14,"slug":15,"type":16},"Security","security","tag",{"name":18,"slug":19,"type":16},"Code Review","code-review",{"name":21,"slug":22,"type":16},"Code Analysis","code-analysis",{"name":24,"slug":25,"type":16},"Debugging","debugging",861,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills","2026-05-15T06:16:18.753293",null,45,[32],"tag-production",{"repoUrl":27,"stars":26,"forks":30,"topics":34,"description":35},[32],"Agent Skills used by the Sentry team for development.","https:\u002F\u002Fgithub.com\u002Fgetsentry\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Ffind-bugs","---\nname: find-bugs\ndescription: Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch.\n---\n\n# Find Bugs\n\nReview changes on this branch for bugs, security vulnerabilities, and code quality issues.\n\n## Phase 1: Complete Input Gathering\n\n1. Get the FULL diff: `git diff $(gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name')...HEAD`\n2. If output is truncated, read each changed file individually until you have seen every changed line\n3. List all files modified in this branch before proceeding\n\n## Phase 2: Attack Surface Mapping\n\nFor each changed file, identify and list:\n\n* All user inputs (request params, headers, body, URL components)\n* All database queries\n* All authentication\u002Fauthorization checks\n* All session\u002Fstate operations\n* All external calls\n* All cryptographic operations\n\n## Phase 3: Security Checklist (check EVERY item for EVERY file)\n\n* [ ] **Injection**: SQL, command, template, header injection\n* [ ] **XSS**: All outputs in templates properly escaped?\n* [ ] **Authentication**: Auth checks on all protected operations?\n* [ ] **Authorization\u002FIDOR**: Access control verified, not just auth?\n* [ ] **CSRF**: State-changing operations protected?\n* [ ] **Race conditions**: TOCTOU in any read-then-write patterns?\n* [ ] **Session**: Fixation, expiration, secure flags?\n* [ ] **Cryptography**: Secure random, proper algorithms, no secrets in logs?\n* [ ] **Information disclosure**: Error messages, logs, timing attacks?\n* [ ] **DoS**: Unbounded operations, missing rate limits, resource exhaustion?\n* [ ] **Business logic**: Edge cases, state machine violations, numeric overflow?\n\n## Phase 4: Verification\n\nFor each potential issue:\n\n* Check if it's already handled elsewhere in the changed code\n* Search for existing tests covering the scenario\n* Read surrounding context to verify the issue is real\n\n## Phase 5: Pre-Conclusion Audit\n\nBefore finalizing, you MUST:\n\n1. List every file you reviewed and confirm you read it completely\n2. List every checklist item and note whether you found issues or confirmed it's clean\n3. List any areas you could NOT fully verify and why\n4. Only then provide your final findings\n\n## Output Format\n\n**Prioritize**: security vulnerabilities > bugs > code quality\n\n**Skip**: stylistic\u002Fformatting issues\n\nFor each issue:\n\n* **File:Line** - Brief description\n* **Severity**: Critical\u002FHigh\u002FMedium\u002FLow\n* **Problem**: What's wrong\n* **Evidence**: Why this is real (not already fixed, no existing test, etc.)\n* **Fix**: Concrete suggestion\n* **References**: OWASP, RFCs, or other standards if applicable\n\nIf you find nothing significant, say so - don't invent issues.\n\nDo not make changes - just report findings. I'll decide what to address.\n",{"data":39,"body":40},{"name":4,"description":6},{"type":41,"children":42},"root",[43,51,57,64,91,97,102,136,142,318,324,329,347,353,358,381,387,397,407,412,475,480],{"type":44,"tag":45,"props":46,"children":47},"element","h1",{"id":4},[48],{"type":49,"value":50},"text","Find Bugs",{"type":44,"tag":52,"props":53,"children":54},"p",{},[55],{"type":49,"value":56},"Review changes on this branch for bugs, security vulnerabilities, and code quality issues.",{"type":44,"tag":58,"props":59,"children":61},"h2",{"id":60},"phase-1-complete-input-gathering",[62],{"type":49,"value":63},"Phase 1: Complete Input Gathering",{"type":44,"tag":65,"props":66,"children":67},"ol",{},[68,81,86],{"type":44,"tag":69,"props":70,"children":71},"li",{},[72,74],{"type":49,"value":73},"Get the FULL diff: ",{"type":44,"tag":75,"props":76,"children":78},"code",{"className":77},[],[79],{"type":49,"value":80},"git diff $(gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name')...HEAD",{"type":44,"tag":69,"props":82,"children":83},{},[84],{"type":49,"value":85},"If output is truncated, read each changed file individually until you have seen every changed line",{"type":44,"tag":69,"props":87,"children":88},{},[89],{"type":49,"value":90},"List all files modified in this branch before proceeding",{"type":44,"tag":58,"props":92,"children":94},{"id":93},"phase-2-attack-surface-mapping",[95],{"type":49,"value":96},"Phase 2: Attack Surface Mapping",{"type":44,"tag":52,"props":98,"children":99},{},[100],{"type":49,"value":101},"For each changed file, identify and list:",{"type":44,"tag":103,"props":104,"children":105},"ul",{},[106,111,116,121,126,131],{"type":44,"tag":69,"props":107,"children":108},{},[109],{"type":49,"value":110},"All user inputs (request params, headers, body, URL components)",{"type":44,"tag":69,"props":112,"children":113},{},[114],{"type":49,"value":115},"All database queries",{"type":44,"tag":69,"props":117,"children":118},{},[119],{"type":49,"value":120},"All authentication\u002Fauthorization checks",{"type":44,"tag":69,"props":122,"children":123},{},[124],{"type":49,"value":125},"All session\u002Fstate operations",{"type":44,"tag":69,"props":127,"children":128},{},[129],{"type":49,"value":130},"All external calls",{"type":44,"tag":69,"props":132,"children":133},{},[134],{"type":49,"value":135},"All cryptographic operations",{"type":44,"tag":58,"props":137,"children":139},{"id":138},"phase-3-security-checklist-check-every-item-for-every-file",[140],{"type":49,"value":141},"Phase 3: Security Checklist (check EVERY item for EVERY file)",{"type":44,"tag":103,"props":143,"children":146},{"className":144},[145],"contains-task-list",[147,168,183,198,213,228,243,258,273,288,303],{"type":44,"tag":69,"props":148,"children":151},{"className":149},[150],"task-list-item",[152,158,160,166],{"type":44,"tag":153,"props":154,"children":157},"input",{"disabled":155,"type":156},true,"checkbox",[],{"type":49,"value":159}," ",{"type":44,"tag":161,"props":162,"children":163},"strong",{},[164],{"type":49,"value":165},"Injection",{"type":49,"value":167},": SQL, command, template, header injection",{"type":44,"tag":69,"props":169,"children":171},{"className":170},[150],[172,175,176,181],{"type":44,"tag":153,"props":173,"children":174},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":177,"children":178},{},[179],{"type":49,"value":180},"XSS",{"type":49,"value":182},": All outputs in templates properly escaped?",{"type":44,"tag":69,"props":184,"children":186},{"className":185},[150],[187,190,191,196],{"type":44,"tag":153,"props":188,"children":189},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":192,"children":193},{},[194],{"type":49,"value":195},"Authentication",{"type":49,"value":197},": Auth checks on all protected operations?",{"type":44,"tag":69,"props":199,"children":201},{"className":200},[150],[202,205,206,211],{"type":44,"tag":153,"props":203,"children":204},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":207,"children":208},{},[209],{"type":49,"value":210},"Authorization\u002FIDOR",{"type":49,"value":212},": Access control verified, not just auth?",{"type":44,"tag":69,"props":214,"children":216},{"className":215},[150],[217,220,221,226],{"type":44,"tag":153,"props":218,"children":219},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":222,"children":223},{},[224],{"type":49,"value":225},"CSRF",{"type":49,"value":227},": State-changing operations protected?",{"type":44,"tag":69,"props":229,"children":231},{"className":230},[150],[232,235,236,241],{"type":44,"tag":153,"props":233,"children":234},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":237,"children":238},{},[239],{"type":49,"value":240},"Race conditions",{"type":49,"value":242},": TOCTOU in any read-then-write patterns?",{"type":44,"tag":69,"props":244,"children":246},{"className":245},[150],[247,250,251,256],{"type":44,"tag":153,"props":248,"children":249},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":252,"children":253},{},[254],{"type":49,"value":255},"Session",{"type":49,"value":257},": Fixation, expiration, secure flags?",{"type":44,"tag":69,"props":259,"children":261},{"className":260},[150],[262,265,266,271],{"type":44,"tag":153,"props":263,"children":264},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":267,"children":268},{},[269],{"type":49,"value":270},"Cryptography",{"type":49,"value":272},": Secure random, proper algorithms, no secrets in logs?",{"type":44,"tag":69,"props":274,"children":276},{"className":275},[150],[277,280,281,286],{"type":44,"tag":153,"props":278,"children":279},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":282,"children":283},{},[284],{"type":49,"value":285},"Information disclosure",{"type":49,"value":287},": Error messages, logs, timing attacks?",{"type":44,"tag":69,"props":289,"children":291},{"className":290},[150],[292,295,296,301],{"type":44,"tag":153,"props":293,"children":294},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":297,"children":298},{},[299],{"type":49,"value":300},"DoS",{"type":49,"value":302},": Unbounded operations, missing rate limits, resource exhaustion?",{"type":44,"tag":69,"props":304,"children":306},{"className":305},[150],[307,310,311,316],{"type":44,"tag":153,"props":308,"children":309},{"disabled":155,"type":156},[],{"type":49,"value":159},{"type":44,"tag":161,"props":312,"children":313},{},[314],{"type":49,"value":315},"Business logic",{"type":49,"value":317},": Edge cases, state machine violations, numeric overflow?",{"type":44,"tag":58,"props":319,"children":321},{"id":320},"phase-4-verification",[322],{"type":49,"value":323},"Phase 4: Verification",{"type":44,"tag":52,"props":325,"children":326},{},[327],{"type":49,"value":328},"For each potential issue:",{"type":44,"tag":103,"props":330,"children":331},{},[332,337,342],{"type":44,"tag":69,"props":333,"children":334},{},[335],{"type":49,"value":336},"Check if it's already handled elsewhere in the changed code",{"type":44,"tag":69,"props":338,"children":339},{},[340],{"type":49,"value":341},"Search for existing tests covering the scenario",{"type":44,"tag":69,"props":343,"children":344},{},[345],{"type":49,"value":346},"Read surrounding context to verify the issue is real",{"type":44,"tag":58,"props":348,"children":350},{"id":349},"phase-5-pre-conclusion-audit",[351],{"type":49,"value":352},"Phase 5: Pre-Conclusion Audit",{"type":44,"tag":52,"props":354,"children":355},{},[356],{"type":49,"value":357},"Before finalizing, you MUST:",{"type":44,"tag":65,"props":359,"children":360},{},[361,366,371,376],{"type":44,"tag":69,"props":362,"children":363},{},[364],{"type":49,"value":365},"List every file you reviewed and confirm you read it completely",{"type":44,"tag":69,"props":367,"children":368},{},[369],{"type":49,"value":370},"List every checklist item and note whether you found issues or confirmed it's clean",{"type":44,"tag":69,"props":372,"children":373},{},[374],{"type":49,"value":375},"List any areas you could NOT fully verify and why",{"type":44,"tag":69,"props":377,"children":378},{},[379],{"type":49,"value":380},"Only then provide your final findings",{"type":44,"tag":58,"props":382,"children":384},{"id":383},"output-format",[385],{"type":49,"value":386},"Output Format",{"type":44,"tag":52,"props":388,"children":389},{},[390,395],{"type":44,"tag":161,"props":391,"children":392},{},[393],{"type":49,"value":394},"Prioritize",{"type":49,"value":396},": security vulnerabilities > bugs > code quality",{"type":44,"tag":52,"props":398,"children":399},{},[400,405],{"type":44,"tag":161,"props":401,"children":402},{},[403],{"type":49,"value":404},"Skip",{"type":49,"value":406},": stylistic\u002Fformatting issues",{"type":44,"tag":52,"props":408,"children":409},{},[410],{"type":49,"value":411},"For each issue:",{"type":44,"tag":103,"props":413,"children":414},{},[415,425,435,445,455,465],{"type":44,"tag":69,"props":416,"children":417},{},[418,423],{"type":44,"tag":161,"props":419,"children":420},{},[421],{"type":49,"value":422},"File:Line",{"type":49,"value":424}," - Brief description",{"type":44,"tag":69,"props":426,"children":427},{},[428,433],{"type":44,"tag":161,"props":429,"children":430},{},[431],{"type":49,"value":432},"Severity",{"type":49,"value":434},": Critical\u002FHigh\u002FMedium\u002FLow",{"type":44,"tag":69,"props":436,"children":437},{},[438,443],{"type":44,"tag":161,"props":439,"children":440},{},[441],{"type":49,"value":442},"Problem",{"type":49,"value":444},": What's wrong",{"type":44,"tag":69,"props":446,"children":447},{},[448,453],{"type":44,"tag":161,"props":449,"children":450},{},[451],{"type":49,"value":452},"Evidence",{"type":49,"value":454},": Why this is real (not already fixed, no existing test, etc.)",{"type":44,"tag":69,"props":456,"children":457},{},[458,463],{"type":44,"tag":161,"props":459,"children":460},{},[461],{"type":49,"value":462},"Fix",{"type":49,"value":464},": Concrete suggestion",{"type":44,"tag":69,"props":466,"children":467},{},[468,473],{"type":44,"tag":161,"props":469,"children":470},{},[471],{"type":49,"value":472},"References",{"type":49,"value":474},": OWASP, RFCs, or other standards if applicable",{"type":44,"tag":52,"props":476,"children":477},{},[478],{"type":49,"value":479},"If you find nothing significant, say so - don't invent issues.",{"type":44,"tag":52,"props":481,"children":482},{},[483],{"type":49,"value":484},"Do not make changes - just report findings. I'll decide what to address.",{"items":486,"total":654},[487,510,524,537,551,568,582,594,602,613,623,641],{"slug":488,"name":488,"fn":489,"description":490,"org":491,"tags":492,"stars":507,"repoUrl":508,"updatedAt":509},"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},[493,494,497,500,501,504],{"name":24,"slug":25,"type":16},{"name":495,"slug":496,"type":16},"iOS","ios",{"name":498,"slug":499,"type":16},"macOS","macos",{"name":9,"slug":8,"type":16},{"name":502,"slug":503,"type":16},"Testing","testing",{"name":505,"slug":506,"type":16},"Xcode","xcode",6176,"https:\u002F\u002Fgithub.com\u002Fgetsentry\u002FXcodeBuildMCP","2026-04-06T18:13:34.8719",{"slug":511,"name":511,"fn":512,"description":513,"org":514,"tags":515,"stars":507,"repoUrl":508,"updatedAt":523},"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},[516,519,520,521,522],{"name":517,"slug":518,"type":16},"CLI","cli",{"name":495,"slug":496,"type":16},{"name":498,"slug":499,"type":16},{"name":502,"slug":503,"type":16},{"name":505,"slug":506,"type":16},"2026-04-06T18:13:36.13414",{"slug":525,"name":525,"fn":526,"description":527,"org":528,"tags":529,"stars":26,"repoUrl":27,"updatedAt":536},"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},[530,533],{"name":531,"slug":532,"type":16},"Documentation","documentation",{"name":534,"slug":535,"type":16},"Engineering","engineering","2026-05-15T06:16:29.695991",{"slug":538,"name":538,"fn":539,"description":540,"org":541,"tags":542,"stars":26,"repoUrl":27,"updatedAt":550},"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},[543,546,547],{"name":544,"slug":545,"type":16},"Communications","communications",{"name":9,"slug":8,"type":16},{"name":548,"slug":549,"type":16},"Technical Writing","technical-writing","2026-05-15T06:16:33.38217",{"slug":552,"name":552,"fn":553,"description":554,"org":555,"tags":556,"stars":26,"repoUrl":27,"updatedAt":567},"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},[557,560,563,564],{"name":558,"slug":559,"type":16},"Branding","branding",{"name":561,"slug":562,"type":16},"Content Creation","content-creation",{"name":9,"slug":8,"type":16},{"name":565,"slug":566,"type":16},"UX Copy","ux-copy","2026-05-15T06:16:22.395707",{"slug":569,"name":569,"fn":570,"description":571,"org":572,"tags":573,"stars":26,"repoUrl":27,"updatedAt":581},"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},[574,577,580],{"name":575,"slug":576,"type":16},"Claude Code","claude-code",{"name":578,"slug":579,"type":16},"Configuration","configuration",{"name":14,"slug":15,"type":16},"2026-05-15T06:16:44.335977",{"slug":19,"name":19,"fn":583,"description":584,"org":585,"tags":586,"stars":26,"repoUrl":27,"updatedAt":593},"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},[587,588,589,592],{"name":18,"slug":19,"type":16},{"name":534,"slug":535,"type":16},{"name":590,"slug":591,"type":16},"Performance","performance",{"name":14,"slug":15,"type":16},"2026-05-15T06:16:35.824864",{"slug":595,"name":595,"fn":596,"description":597,"org":598,"tags":599,"stars":26,"repoUrl":27,"updatedAt":601},"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},[600],{"name":21,"slug":22,"type":16},"2026-05-15T06:16:32.127981",{"slug":603,"name":603,"fn":604,"description":605,"org":606,"tags":607,"stars":26,"repoUrl":27,"updatedAt":612},"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},[608,611],{"name":609,"slug":610,"type":16},"Git","git",{"name":9,"slug":8,"type":16},"2026-07-18T05:15:10.723937",{"slug":614,"name":614,"fn":615,"description":616,"org":617,"tags":618,"stars":26,"repoUrl":27,"updatedAt":622},"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},[619,620,621],{"name":534,"slug":535,"type":16},{"name":609,"slug":610,"type":16},{"name":9,"slug":8,"type":16},"2026-05-15T06:16:39.458431",{"slug":624,"name":624,"fn":625,"description":626,"org":627,"tags":628,"stars":26,"repoUrl":27,"updatedAt":640},"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},[629,632,633,636,639],{"name":630,"slug":631,"type":16},"Access Control","access-control",{"name":21,"slug":22,"type":16},{"name":634,"slug":635,"type":16},"Django","django",{"name":637,"slug":638,"type":16},"Python","python",{"name":14,"slug":15,"type":16},"2026-05-15T06:16:43.098698",{"slug":642,"name":642,"fn":643,"description":644,"org":645,"tags":646,"stars":26,"repoUrl":27,"updatedAt":653},"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},[647,648,651,652],{"name":18,"slug":19,"type":16},{"name":649,"slug":650,"type":16},"Database","database",{"name":634,"slug":635,"type":16},{"name":590,"slug":591,"type":16},"2026-05-15T06:16:24.832813",88,{"items":656,"total":697},[657,662,668,675,681,688,692],{"slug":525,"name":525,"fn":526,"description":527,"org":658,"tags":659,"stars":26,"repoUrl":27,"updatedAt":536},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[660,661],{"name":531,"slug":532,"type":16},{"name":534,"slug":535,"type":16},{"slug":538,"name":538,"fn":539,"description":540,"org":663,"tags":664,"stars":26,"repoUrl":27,"updatedAt":550},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[665,666,667],{"name":544,"slug":545,"type":16},{"name":9,"slug":8,"type":16},{"name":548,"slug":549,"type":16},{"slug":552,"name":552,"fn":553,"description":554,"org":669,"tags":670,"stars":26,"repoUrl":27,"updatedAt":567},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[671,672,673,674],{"name":558,"slug":559,"type":16},{"name":561,"slug":562,"type":16},{"name":9,"slug":8,"type":16},{"name":565,"slug":566,"type":16},{"slug":569,"name":569,"fn":570,"description":571,"org":676,"tags":677,"stars":26,"repoUrl":27,"updatedAt":581},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[678,679,680],{"name":575,"slug":576,"type":16},{"name":578,"slug":579,"type":16},{"name":14,"slug":15,"type":16},{"slug":19,"name":19,"fn":583,"description":584,"org":682,"tags":683,"stars":26,"repoUrl":27,"updatedAt":593},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[684,685,686,687],{"name":18,"slug":19,"type":16},{"name":534,"slug":535,"type":16},{"name":590,"slug":591,"type":16},{"name":14,"slug":15,"type":16},{"slug":595,"name":595,"fn":596,"description":597,"org":689,"tags":690,"stars":26,"repoUrl":27,"updatedAt":601},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[691],{"name":21,"slug":22,"type":16},{"slug":603,"name":603,"fn":604,"description":605,"org":693,"tags":694,"stars":26,"repoUrl":27,"updatedAt":612},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[695,696],{"name":609,"slug":610,"type":16},{"name":9,"slug":8,"type":16},28]