namnam-skills 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1981) hide show
  1. package/package.json +2 -2
  2. package/src/cli.js +8 -3
  3. package/src/templates/antigravity-skills/3d-web-experience/SKILL.md +254 -0
  4. package/src/templates/antigravity-skills/README.md +201 -0
  5. package/src/templates/antigravity-skills/ab-test-setup/SKILL.md +508 -0
  6. package/src/templates/antigravity-skills/active-directory-attacks/SKILL.md +383 -0
  7. package/src/templates/antigravity-skills/active-directory-attacks/references/advanced-attacks.md +382 -0
  8. package/src/templates/antigravity-skills/address-github-comments/SKILL.md +55 -0
  9. package/src/templates/antigravity-skills/agent-evaluation/SKILL.md +64 -0
  10. package/src/templates/antigravity-skills/agent-manager-skill/SKILL.md +40 -0
  11. package/src/templates/antigravity-skills/agent-memory-mcp/SKILL.md +82 -0
  12. package/src/templates/antigravity-skills/agent-memory-systems/SKILL.md +67 -0
  13. package/src/templates/antigravity-skills/agent-tool-builder/SKILL.md +53 -0
  14. package/src/templates/antigravity-skills/ai-agents-architect/SKILL.md +90 -0
  15. package/src/templates/antigravity-skills/ai-product/SKILL.md +54 -0
  16. package/src/templates/antigravity-skills/ai-wrapper-product/SKILL.md +273 -0
  17. package/src/templates/antigravity-skills/algolia-search/SKILL.md +66 -0
  18. package/src/templates/antigravity-skills/algorithmic-art/LICENSE.txt +202 -0
  19. package/src/templates/antigravity-skills/algorithmic-art/SKILL.md +405 -0
  20. package/src/templates/antigravity-skills/algorithmic-art/templates/generator_template.js +223 -0
  21. package/src/templates/antigravity-skills/algorithmic-art/templates/viewer.html +599 -0
  22. package/src/templates/antigravity-skills/analytics-tracking/SKILL.md +539 -0
  23. package/src/templates/antigravity-skills/api-documentation-generator/SKILL.md +484 -0
  24. package/src/templates/antigravity-skills/api-fuzzing-bug-bounty/SKILL.md +433 -0
  25. package/src/templates/antigravity-skills/api-patterns/SKILL.md +81 -0
  26. package/src/templates/antigravity-skills/api-patterns/api-style.md +42 -0
  27. package/src/templates/antigravity-skills/api-patterns/auth.md +24 -0
  28. package/src/templates/antigravity-skills/api-patterns/documentation.md +26 -0
  29. package/src/templates/antigravity-skills/api-patterns/graphql.md +41 -0
  30. package/src/templates/antigravity-skills/api-patterns/rate-limiting.md +31 -0
  31. package/src/templates/antigravity-skills/api-patterns/response.md +37 -0
  32. package/src/templates/antigravity-skills/api-patterns/rest.md +40 -0
  33. package/src/templates/antigravity-skills/api-patterns/scripts/api_validator.py +211 -0
  34. package/src/templates/antigravity-skills/api-patterns/security-testing.md +122 -0
  35. package/src/templates/antigravity-skills/api-patterns/trpc.md +41 -0
  36. package/src/templates/antigravity-skills/api-patterns/versioning.md +22 -0
  37. package/src/templates/antigravity-skills/api-security-best-practices/SKILL.md +907 -0
  38. package/src/templates/antigravity-skills/app-builder/SKILL.md +75 -0
  39. package/src/templates/antigravity-skills/app-builder/agent-coordination.md +71 -0
  40. package/src/templates/antigravity-skills/app-builder/feature-building.md +53 -0
  41. package/src/templates/antigravity-skills/app-builder/project-detection.md +34 -0
  42. package/src/templates/antigravity-skills/app-builder/scaffolding.md +118 -0
  43. package/src/templates/antigravity-skills/app-builder/tech-stack.md +40 -0
  44. package/src/templates/antigravity-skills/app-builder/templates/SKILL.md +39 -0
  45. package/src/templates/antigravity-skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  46. package/src/templates/antigravity-skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  47. package/src/templates/antigravity-skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  48. package/src/templates/antigravity-skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  49. package/src/templates/antigravity-skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  50. package/src/templates/antigravity-skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  51. package/src/templates/antigravity-skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  52. package/src/templates/antigravity-skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +82 -0
  53. package/src/templates/antigravity-skills/app-builder/templates/nextjs-saas/TEMPLATE.md +100 -0
  54. package/src/templates/antigravity-skills/app-builder/templates/nextjs-static/TEMPLATE.md +106 -0
  55. package/src/templates/antigravity-skills/app-builder/templates/nuxt-app/TEMPLATE.md +101 -0
  56. package/src/templates/antigravity-skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  57. package/src/templates/antigravity-skills/app-builder/templates/react-native-app/TEMPLATE.md +93 -0
  58. package/src/templates/antigravity-skills/app-store-optimization/HOW_TO_USE.md +281 -0
  59. package/src/templates/antigravity-skills/app-store-optimization/README.md +430 -0
  60. package/src/templates/antigravity-skills/app-store-optimization/SKILL.md +403 -0
  61. package/src/templates/antigravity-skills/app-store-optimization/ab_test_planner.py +662 -0
  62. package/src/templates/antigravity-skills/app-store-optimization/aso_scorer.py +482 -0
  63. package/src/templates/antigravity-skills/app-store-optimization/competitor_analyzer.py +577 -0
  64. package/src/templates/antigravity-skills/app-store-optimization/expected_output.json +170 -0
  65. package/src/templates/antigravity-skills/app-store-optimization/keyword_analyzer.py +406 -0
  66. package/src/templates/antigravity-skills/app-store-optimization/launch_checklist.py +739 -0
  67. package/src/templates/antigravity-skills/app-store-optimization/localization_helper.py +588 -0
  68. package/src/templates/antigravity-skills/app-store-optimization/metadata_optimizer.py +581 -0
  69. package/src/templates/antigravity-skills/app-store-optimization/review_analyzer.py +714 -0
  70. package/src/templates/antigravity-skills/app-store-optimization/sample_input.json +30 -0
  71. package/src/templates/antigravity-skills/architecture/SKILL.md +55 -0
  72. package/src/templates/antigravity-skills/architecture/context-discovery.md +43 -0
  73. package/src/templates/antigravity-skills/architecture/examples.md +94 -0
  74. package/src/templates/antigravity-skills/architecture/pattern-selection.md +68 -0
  75. package/src/templates/antigravity-skills/architecture/patterns-reference.md +50 -0
  76. package/src/templates/antigravity-skills/architecture/trade-off-analysis.md +77 -0
  77. package/src/templates/antigravity-skills/autonomous-agent-patterns/SKILL.md +761 -0
  78. package/src/templates/antigravity-skills/autonomous-agents/SKILL.md +68 -0
  79. package/src/templates/antigravity-skills/avalonia-layout-zafiro/SKILL.md +59 -0
  80. package/src/templates/antigravity-skills/avalonia-layout-zafiro/behaviors.md +35 -0
  81. package/src/templates/antigravity-skills/avalonia-layout-zafiro/components.md +41 -0
  82. package/src/templates/antigravity-skills/avalonia-layout-zafiro/containers.md +50 -0
  83. package/src/templates/antigravity-skills/avalonia-layout-zafiro/icons.md +53 -0
  84. package/src/templates/antigravity-skills/avalonia-layout-zafiro/themes.md +51 -0
  85. package/src/templates/antigravity-skills/avalonia-viewmodels-zafiro/SKILL.md +29 -0
  86. package/src/templates/antigravity-skills/avalonia-viewmodels-zafiro/composition.md +75 -0
  87. package/src/templates/antigravity-skills/avalonia-viewmodels-zafiro/navigation_sections.md +53 -0
  88. package/src/templates/antigravity-skills/avalonia-viewmodels-zafiro/viewmodels.md +68 -0
  89. package/src/templates/antigravity-skills/avalonia-viewmodels-zafiro/wizards.md +47 -0
  90. package/src/templates/antigravity-skills/avalonia-zafiro-development/SKILL.md +29 -0
  91. package/src/templates/antigravity-skills/avalonia-zafiro-development/avalonia-reactive-rules.md +49 -0
  92. package/src/templates/antigravity-skills/avalonia-zafiro-development/core-technical-skills.md +19 -0
  93. package/src/templates/antigravity-skills/avalonia-zafiro-development/naming-standards.md +15 -0
  94. package/src/templates/antigravity-skills/avalonia-zafiro-development/patterns.md +45 -0
  95. package/src/templates/antigravity-skills/avalonia-zafiro-development/zafiro-shortcuts.md +43 -0
  96. package/src/templates/antigravity-skills/aws-penetration-testing/SKILL.md +405 -0
  97. package/src/templates/antigravity-skills/aws-penetration-testing/references/advanced-aws-pentesting.md +469 -0
  98. package/src/templates/antigravity-skills/aws-serverless/SKILL.md +323 -0
  99. package/src/templates/antigravity-skills/azure-functions/SKILL.md +42 -0
  100. package/src/templates/antigravity-skills/backend-dev-guidelines/SKILL.md +302 -0
  101. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/architecture-overview.md +451 -0
  102. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/async-and-errors.md +307 -0
  103. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/complete-examples.md +638 -0
  104. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/configuration.md +275 -0
  105. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/database-patterns.md +224 -0
  106. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/middleware-guide.md +213 -0
  107. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/routing-and-controllers.md +756 -0
  108. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/sentry-and-monitoring.md +336 -0
  109. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/services-and-repositories.md +789 -0
  110. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/testing-guide.md +235 -0
  111. package/src/templates/antigravity-skills/backend-dev-guidelines/resources/validation-patterns.md +754 -0
  112. package/src/templates/antigravity-skills/bash-linux/SKILL.md +199 -0
  113. package/src/templates/antigravity-skills/behavioral-modes/SKILL.md +242 -0
  114. package/src/templates/antigravity-skills/blockrun/SKILL.md +292 -0
  115. package/src/templates/antigravity-skills/brainstorming/SKILL.md +54 -0
  116. package/src/templates/antigravity-skills/brand-guidelines-anthropic/LICENSE.txt +202 -0
  117. package/src/templates/antigravity-skills/brand-guidelines-anthropic/SKILL.md +73 -0
  118. package/src/templates/antigravity-skills/brand-guidelines-community/LICENSE.txt +202 -0
  119. package/src/templates/antigravity-skills/brand-guidelines-community/SKILL.md +73 -0
  120. package/src/templates/antigravity-skills/broken-authentication/SKILL.md +476 -0
  121. package/src/templates/antigravity-skills/browser-automation/SKILL.md +70 -0
  122. package/src/templates/antigravity-skills/browser-extension-builder/SKILL.md +261 -0
  123. package/src/templates/antigravity-skills/bullmq-specialist/SKILL.md +57 -0
  124. package/src/templates/antigravity-skills/bun-development/SKILL.md +691 -0
  125. package/src/templates/antigravity-skills/burp-suite-testing/SKILL.md +380 -0
  126. package/src/templates/antigravity-skills/busybox-on-windows/SKILL.md +30 -0
  127. package/src/templates/antigravity-skills/canvas-design/LICENSE.txt +202 -0
  128. package/src/templates/antigravity-skills/canvas-design/SKILL.md +130 -0
  129. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +93 -0
  130. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  131. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  132. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt +93 -0
  133. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  134. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Boldonse-OFL.txt +93 -0
  135. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
  136. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  137. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
  138. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  139. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  140. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  141. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +93 -0
  142. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  143. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/DMMono-OFL.txt +93 -0
  144. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
  145. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/EricaOne-OFL.txt +94 -0
  146. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
  147. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
  148. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/GeistMono-OFL.txt +93 -0
  149. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
  150. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Gloock-OFL.txt +93 -0
  151. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
  152. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  153. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
  154. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  155. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  156. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  157. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  158. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  159. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  160. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  161. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  162. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +93 -0
  163. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  164. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  165. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  166. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Italiana-OFL.txt +93 -0
  167. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
  168. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  169. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
  170. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  171. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
  172. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
  173. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Jura-OFL.txt +93 -0
  174. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
  175. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  176. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
  177. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  178. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
  179. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Lora-OFL.txt +93 -0
  180. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
  181. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
  182. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/NationalPark-OFL.txt +93 -0
  183. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
  184. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
  185. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  186. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
  187. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Outfit-OFL.txt +93 -0
  188. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
  189. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  190. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt +93 -0
  191. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt +93 -0
  192. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  193. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  194. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt +93 -0
  195. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  196. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt +93 -0
  197. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  198. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  199. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt +93 -0
  200. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
  201. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Tektur-OFL.txt +93 -0
  202. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
  203. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
  204. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  205. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
  206. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/WorkSans-OFL.txt +93 -0
  207. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
  208. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +93 -0
  209. package/src/templates/antigravity-skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  210. package/src/templates/antigravity-skills/cc-skill-backend-patterns/SKILL.md +584 -0
  211. package/src/templates/antigravity-skills/cc-skill-clickhouse-io/SKILL.md +431 -0
  212. package/src/templates/antigravity-skills/cc-skill-coding-standards/SKILL.md +522 -0
  213. package/src/templates/antigravity-skills/cc-skill-continuous-learning/SKILL.md +10 -0
  214. package/src/templates/antigravity-skills/cc-skill-continuous-learning/config.json +18 -0
  215. package/src/templates/antigravity-skills/cc-skill-continuous-learning/evaluate-session.sh +60 -0
  216. package/src/templates/antigravity-skills/cc-skill-frontend-patterns/SKILL.md +633 -0
  217. package/src/templates/antigravity-skills/cc-skill-project-guidelines-example/SKILL.md +352 -0
  218. package/src/templates/antigravity-skills/cc-skill-security-review/SKILL.md +496 -0
  219. package/src/templates/antigravity-skills/cc-skill-strategic-compact/SKILL.md +10 -0
  220. package/src/templates/antigravity-skills/cc-skill-strategic-compact/suggest-compact.sh +52 -0
  221. package/src/templates/antigravity-skills/claude-code-guide/SKILL.md +68 -0
  222. package/src/templates/antigravity-skills/claude-d3js-skill/SKILL.md +820 -0
  223. package/src/templates/antigravity-skills/claude-d3js-skill/assets/chart-template.jsx +106 -0
  224. package/src/templates/antigravity-skills/claude-d3js-skill/assets/interactive-template.jsx +227 -0
  225. package/src/templates/antigravity-skills/claude-d3js-skill/assets/sample-data.json +115 -0
  226. package/src/templates/antigravity-skills/claude-d3js-skill/references/colour-schemes.md +564 -0
  227. package/src/templates/antigravity-skills/claude-d3js-skill/references/d3-patterns.md +869 -0
  228. package/src/templates/antigravity-skills/claude-d3js-skill/references/scale-reference.md +509 -0
  229. package/src/templates/antigravity-skills/clean-code/SKILL.md +201 -0
  230. package/src/templates/antigravity-skills/clerk-auth/SKILL.md +56 -0
  231. package/src/templates/antigravity-skills/cloud-penetration-testing/SKILL.md +501 -0
  232. package/src/templates/antigravity-skills/cloud-penetration-testing/references/advanced-cloud-scripts.md +318 -0
  233. package/src/templates/antigravity-skills/code-review-checklist/SKILL.md +444 -0
  234. package/src/templates/antigravity-skills/codex-review/SKILL.md +37 -0
  235. package/src/templates/antigravity-skills/competitor-alternatives/SKILL.md +750 -0
  236. package/src/templates/antigravity-skills/computer-use-agents/SKILL.md +315 -0
  237. package/src/templates/antigravity-skills/concise-planning/SKILL.md +62 -0
  238. package/src/templates/antigravity-skills/content-creator/SKILL.md +248 -0
  239. package/src/templates/antigravity-skills/content-creator/assets/content_calendar_template.md +99 -0
  240. package/src/templates/antigravity-skills/content-creator/references/brand_guidelines.md +199 -0
  241. package/src/templates/antigravity-skills/content-creator/references/content_frameworks.md +534 -0
  242. package/src/templates/antigravity-skills/content-creator/references/social_media_optimization.md +317 -0
  243. package/src/templates/antigravity-skills/content-creator/scripts/brand_voice_analyzer.py +185 -0
  244. package/src/templates/antigravity-skills/content-creator/scripts/seo_optimizer.py +419 -0
  245. package/src/templates/antigravity-skills/context-window-management/SKILL.md +53 -0
  246. package/src/templates/antigravity-skills/context7-auto-research/SKILL.md +36 -0
  247. package/src/templates/antigravity-skills/conversation-memory/SKILL.md +61 -0
  248. package/src/templates/antigravity-skills/copy-editing/SKILL.md +439 -0
  249. package/src/templates/antigravity-skills/copywriting/SKILL.md +455 -0
  250. package/src/templates/antigravity-skills/core-components/SKILL.md +264 -0
  251. package/src/templates/antigravity-skills/crewai/SKILL.md +243 -0
  252. package/src/templates/antigravity-skills/database-design/SKILL.md +52 -0
  253. package/src/templates/antigravity-skills/database-design/database-selection.md +43 -0
  254. package/src/templates/antigravity-skills/database-design/indexing.md +39 -0
  255. package/src/templates/antigravity-skills/database-design/migrations.md +48 -0
  256. package/src/templates/antigravity-skills/database-design/optimization.md +36 -0
  257. package/src/templates/antigravity-skills/database-design/orm-selection.md +30 -0
  258. package/src/templates/antigravity-skills/database-design/schema-design.md +56 -0
  259. package/src/templates/antigravity-skills/database-design/scripts/schema_validator.py +172 -0
  260. package/src/templates/antigravity-skills/deployment-procedures/SKILL.md +241 -0
  261. package/src/templates/antigravity-skills/discord-bot-architect/SKILL.md +277 -0
  262. package/src/templates/antigravity-skills/dispatching-parallel-agents/SKILL.md +180 -0
  263. package/src/templates/antigravity-skills/doc-coauthoring/SKILL.md +375 -0
  264. package/src/templates/antigravity-skills/docker-expert/SKILL.md +409 -0
  265. package/src/templates/antigravity-skills/documentation-templates/SKILL.md +194 -0
  266. package/src/templates/antigravity-skills/docx +1 -0
  267. package/src/templates/antigravity-skills/docx-official/LICENSE.txt +30 -0
  268. package/src/templates/antigravity-skills/docx-official/SKILL.md +197 -0
  269. package/src/templates/antigravity-skills/docx-official/docx-js.md +350 -0
  270. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  271. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  272. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  273. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  274. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  275. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  276. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  277. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  278. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  279. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  280. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  281. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  282. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  283. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  284. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  285. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  286. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  287. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  288. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  289. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  290. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  291. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  292. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  293. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  294. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  295. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  296. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  297. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  298. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  299. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  300. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  301. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/mce/mc.xsd +75 -0
  302. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  303. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  304. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  305. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  306. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  307. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  308. package/src/templates/antigravity-skills/docx-official/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  309. package/src/templates/antigravity-skills/docx-official/ooxml/scripts/pack.py +159 -0
  310. package/src/templates/antigravity-skills/docx-official/ooxml/scripts/unpack.py +29 -0
  311. package/src/templates/antigravity-skills/docx-official/ooxml/scripts/validate.py +69 -0
  312. package/src/templates/antigravity-skills/docx-official/ooxml/scripts/validation/__init__.py +15 -0
  313. package/src/templates/antigravity-skills/docx-official/ooxml/scripts/validation/base.py +951 -0
  314. package/src/templates/antigravity-skills/docx-official/ooxml/scripts/validation/docx.py +274 -0
  315. package/src/templates/antigravity-skills/docx-official/ooxml/scripts/validation/pptx.py +315 -0
  316. package/src/templates/antigravity-skills/docx-official/ooxml/scripts/validation/redlining.py +279 -0
  317. package/src/templates/antigravity-skills/docx-official/ooxml.md +610 -0
  318. package/src/templates/antigravity-skills/docx-official/scripts/__init__.py +1 -0
  319. package/src/templates/antigravity-skills/docx-official/scripts/document.py +1276 -0
  320. package/src/templates/antigravity-skills/docx-official/scripts/templates/comments.xml +3 -0
  321. package/src/templates/antigravity-skills/docx-official/scripts/templates/commentsExtended.xml +3 -0
  322. package/src/templates/antigravity-skills/docx-official/scripts/templates/commentsExtensible.xml +3 -0
  323. package/src/templates/antigravity-skills/docx-official/scripts/templates/commentsIds.xml +3 -0
  324. package/src/templates/antigravity-skills/docx-official/scripts/templates/people.xml +3 -0
  325. package/src/templates/antigravity-skills/docx-official/scripts/utilities.py +374 -0
  326. package/src/templates/antigravity-skills/email-sequence/SKILL.md +925 -0
  327. package/src/templates/antigravity-skills/email-systems/SKILL.md +54 -0
  328. package/src/templates/antigravity-skills/environment-setup-guide/SKILL.md +479 -0
  329. package/src/templates/antigravity-skills/ethical-hacking-methodology/SKILL.md +466 -0
  330. package/src/templates/antigravity-skills/exa-search/SKILL.md +36 -0
  331. package/src/templates/antigravity-skills/executing-plans/SKILL.md +76 -0
  332. package/src/templates/antigravity-skills/file-organizer/SKILL.md +250 -0
  333. package/src/templates/antigravity-skills/file-path-traversal/SKILL.md +486 -0
  334. package/src/templates/antigravity-skills/file-uploads/SKILL.md +22 -0
  335. package/src/templates/antigravity-skills/finishing-a-development-branch/SKILL.md +200 -0
  336. package/src/templates/antigravity-skills/firebase/SKILL.md +56 -0
  337. package/src/templates/antigravity-skills/firecrawl-scraper/SKILL.md +37 -0
  338. package/src/templates/antigravity-skills/form-cro/SKILL.md +425 -0
  339. package/src/templates/antigravity-skills/free-tool-strategy/SKILL.md +576 -0
  340. package/src/templates/antigravity-skills/frontend-design/LICENSE.txt +177 -0
  341. package/src/templates/antigravity-skills/frontend-design/SKILL.md +42 -0
  342. package/src/templates/antigravity-skills/frontend-dev-guidelines/SKILL.md +399 -0
  343. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/common-patterns.md +331 -0
  344. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/complete-examples.md +872 -0
  345. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/component-patterns.md +502 -0
  346. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/data-fetching.md +767 -0
  347. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/file-organization.md +502 -0
  348. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/loading-and-error-states.md +501 -0
  349. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/performance.md +406 -0
  350. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/routing-guide.md +364 -0
  351. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/styling-guide.md +428 -0
  352. package/src/templates/antigravity-skills/frontend-dev-guidelines/resources/typescript-standards.md +418 -0
  353. package/src/templates/antigravity-skills/game-development/2d-games/SKILL.md +119 -0
  354. package/src/templates/antigravity-skills/game-development/3d-games/SKILL.md +135 -0
  355. package/src/templates/antigravity-skills/game-development/SKILL.md +167 -0
  356. package/src/templates/antigravity-skills/game-development/game-art/SKILL.md +185 -0
  357. package/src/templates/antigravity-skills/game-development/game-audio/SKILL.md +190 -0
  358. package/src/templates/antigravity-skills/game-development/game-design/SKILL.md +129 -0
  359. package/src/templates/antigravity-skills/game-development/mobile-games/SKILL.md +108 -0
  360. package/src/templates/antigravity-skills/game-development/multiplayer/SKILL.md +132 -0
  361. package/src/templates/antigravity-skills/game-development/pc-games/SKILL.md +144 -0
  362. package/src/templates/antigravity-skills/game-development/vr-ar/SKILL.md +123 -0
  363. package/src/templates/antigravity-skills/game-development/web-games/SKILL.md +150 -0
  364. package/src/templates/antigravity-skills/gcp-cloud-run/SKILL.md +288 -0
  365. package/src/templates/antigravity-skills/geo-fundamentals/SKILL.md +156 -0
  366. package/src/templates/antigravity-skills/geo-fundamentals/scripts/geo_checker.py +289 -0
  367. package/src/templates/antigravity-skills/git-pushing/SKILL.md +33 -0
  368. package/src/templates/antigravity-skills/git-pushing/scripts/smart_commit.sh +19 -0
  369. package/src/templates/antigravity-skills/github-workflow-automation/SKILL.md +846 -0
  370. package/src/templates/antigravity-skills/graphql/SKILL.md +68 -0
  371. package/src/templates/antigravity-skills/html-injection-testing/SKILL.md +498 -0
  372. package/src/templates/antigravity-skills/hubspot-integration/SKILL.md +42 -0
  373. package/src/templates/antigravity-skills/i18n-localization/SKILL.md +154 -0
  374. package/src/templates/antigravity-skills/i18n-localization/scripts/i18n_checker.py +241 -0
  375. package/src/templates/antigravity-skills/idor-testing/SKILL.md +442 -0
  376. package/src/templates/antigravity-skills/inngest/SKILL.md +55 -0
  377. package/src/templates/antigravity-skills/interactive-portfolio/SKILL.md +223 -0
  378. package/src/templates/antigravity-skills/internal-comms-anthropic/LICENSE.txt +202 -0
  379. package/src/templates/antigravity-skills/internal-comms-anthropic/SKILL.md +32 -0
  380. package/src/templates/antigravity-skills/internal-comms-anthropic/examples/3p-updates.md +47 -0
  381. package/src/templates/antigravity-skills/internal-comms-anthropic/examples/company-newsletter.md +65 -0
  382. package/src/templates/antigravity-skills/internal-comms-anthropic/examples/faq-answers.md +30 -0
  383. package/src/templates/antigravity-skills/internal-comms-anthropic/examples/general-comms.md +16 -0
  384. package/src/templates/antigravity-skills/internal-comms-community/LICENSE.txt +202 -0
  385. package/src/templates/antigravity-skills/internal-comms-community/SKILL.md +32 -0
  386. package/src/templates/antigravity-skills/javascript-mastery/SKILL.md +645 -0
  387. package/src/templates/antigravity-skills/kaizen/SKILL.md +730 -0
  388. package/src/templates/antigravity-skills/langfuse/SKILL.md +238 -0
  389. package/src/templates/antigravity-skills/langgraph/SKILL.md +287 -0
  390. package/src/templates/antigravity-skills/launch-strategy/SKILL.md +344 -0
  391. package/src/templates/antigravity-skills/lint-and-validate/SKILL.md +45 -0
  392. package/src/templates/antigravity-skills/lint-and-validate/scripts/lint_runner.py +172 -0
  393. package/src/templates/antigravity-skills/lint-and-validate/scripts/type_coverage.py +173 -0
  394. package/src/templates/antigravity-skills/linux-privilege-escalation/SKILL.md +504 -0
  395. package/src/templates/antigravity-skills/linux-shell-scripting/SKILL.md +504 -0
  396. package/src/templates/antigravity-skills/llm-app-patterns/SKILL.md +760 -0
  397. package/src/templates/antigravity-skills/loki-mode/.github/workflows/claude-code-review.yml +57 -0
  398. package/src/templates/antigravity-skills/loki-mode/.github/workflows/claude.yml +50 -0
  399. package/src/templates/antigravity-skills/loki-mode/.github/workflows/release.yml +128 -0
  400. package/src/templates/antigravity-skills/loki-mode/ACKNOWLEDGEMENTS.md +184 -0
  401. package/src/templates/antigravity-skills/loki-mode/CHANGELOG.md +1822 -0
  402. package/src/templates/antigravity-skills/loki-mode/CLAUDE.md +120 -0
  403. package/src/templates/antigravity-skills/loki-mode/CONTEXT-EXPORT.md +206 -0
  404. package/src/templates/antigravity-skills/loki-mode/INSTALLATION.md +384 -0
  405. package/src/templates/antigravity-skills/loki-mode/LICENSE +21 -0
  406. package/src/templates/antigravity-skills/loki-mode/README.md +548 -0
  407. package/src/templates/antigravity-skills/loki-mode/SKILL.md +721 -0
  408. package/src/templates/antigravity-skills/loki-mode/VERSION +1 -0
  409. package/src/templates/antigravity-skills/loki-mode/autonomy/.loki/dashboard/index.html +497 -0
  410. package/src/templates/antigravity-skills/loki-mode/autonomy/CONSTITUTION.md +402 -0
  411. package/src/templates/antigravity-skills/loki-mode/autonomy/README.md +201 -0
  412. package/src/templates/antigravity-skills/loki-mode/autonomy/run.sh +1991 -0
  413. package/src/templates/antigravity-skills/loki-mode/benchmarks/datasets/humaneval.jsonl +164 -0
  414. package/src/templates/antigravity-skills/loki-mode/benchmarks/datasets/swebench-lite.json +10 -0
  415. package/src/templates/antigravity-skills/loki-mode/benchmarks/prepare-submission.sh +215 -0
  416. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/SUMMARY.md +48 -0
  417. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/humaneval-results.json +15 -0
  418. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/swebench-results.json +10 -0
  419. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/SUMMARY.md +50 -0
  420. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-results.json +1000 -0
  421. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/0.py +16 -0
  422. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/1.py +28 -0
  423. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/10.py +25 -0
  424. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/100.py +20 -0
  425. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/101.py +15 -0
  426. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/102.py +16 -0
  427. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/103.py +15 -0
  428. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/104.py +22 -0
  429. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/105.py +39 -0
  430. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/106.py +21 -0
  431. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/107.py +35 -0
  432. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/108.py +22 -0
  433. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/109.py +41 -0
  434. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/11.py +16 -0
  435. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/110.py +20 -0
  436. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/111.py +28 -0
  437. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/112.py +14 -0
  438. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/113.py +19 -0
  439. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/114.py +16 -0
  440. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/115.py +41 -0
  441. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/116.py +12 -0
  442. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/117.py +25 -0
  443. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/118.py +26 -0
  444. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/119.py +30 -0
  445. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/12.py +21 -0
  446. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/120.py +28 -0
  447. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/121.py +10 -0
  448. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/122.py +19 -0
  449. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/123.py +31 -0
  450. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/124.py +56 -0
  451. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/125.py +20 -0
  452. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/126.py +29 -0
  453. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/127.py +47 -0
  454. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/128.py +25 -0
  455. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/129.py +61 -0
  456. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/13.py +10 -0
  457. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/130.py +29 -0
  458. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/131.py +18 -0
  459. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/132.py +36 -0
  460. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/133.py +16 -0
  461. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/134.py +27 -0
  462. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/135.py +15 -0
  463. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/136.py +19 -0
  464. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/137.py +26 -0
  465. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/138.py +8 -0
  466. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/139.py +18 -0
  467. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/14.py +9 -0
  468. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/140.py +30 -0
  469. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/141.py +35 -0
  470. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/142.py +20 -0
  471. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/143.py +35 -0
  472. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/144.py +19 -0
  473. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/145.py +22 -0
  474. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/146.py +21 -0
  475. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/147.py +22 -0
  476. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/148.py +28 -0
  477. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/149.py +17 -0
  478. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/15.py +8 -0
  479. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/150.py +15 -0
  480. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/151.py +20 -0
  481. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/152.py +16 -0
  482. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/153.py +30 -0
  483. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/154.py +15 -0
  484. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/155.py +15 -0
  485. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/156.py +32 -0
  486. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/157.py +12 -0
  487. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/158.py +11 -0
  488. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/159.py +33 -0
  489. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/16.py +8 -0
  490. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/160.py +29 -0
  491. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/161.py +24 -0
  492. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/162.py +11 -0
  493. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/163.py +14 -0
  494. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/17.py +27 -0
  495. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/18.py +23 -0
  496. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/19.py +21 -0
  497. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/2.py +10 -0
  498. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/20.py +22 -0
  499. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/21.py +13 -0
  500. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/22.py +11 -0
  501. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/23.py +8 -0
  502. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/24.py +9 -0
  503. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/25.py +24 -0
  504. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/26.py +12 -0
  505. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/27.py +6 -0
  506. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/28.py +11 -0
  507. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/29.py +11 -0
  508. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/3.py +18 -0
  509. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/30.py +8 -0
  510. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/31.py +27 -0
  511. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/32.py +50 -0
  512. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/33.py +20 -0
  513. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/34.py +6 -0
  514. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/35.py +8 -0
  515. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/36.py +14 -0
  516. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/37.py +14 -0
  517. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/38.py +11 -0
  518. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/39.py +35 -0
  519. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/4.py +14 -0
  520. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/40.py +24 -0
  521. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/41.py +13 -0
  522. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/42.py +8 -0
  523. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/43.py +22 -0
  524. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/44.py +18 -0
  525. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/45.py +6 -0
  526. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/46.py +23 -0
  527. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/47.py +14 -0
  528. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/48.py +13 -0
  529. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/49.py +14 -0
  530. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/5.py +19 -0
  531. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/50.py +12 -0
  532. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/51.py +18 -0
  533. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/52.py +8 -0
  534. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/53.py +8 -0
  535. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/54.py +17 -0
  536. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/55.py +18 -0
  537. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/56.py +22 -0
  538. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/57.py +16 -0
  539. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/58.py +9 -0
  540. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/59.py +22 -0
  541. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/6.py +26 -0
  542. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/60.py +14 -0
  543. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/61.py +22 -0
  544. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/62.py +10 -0
  545. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/63.py +25 -0
  546. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/64.py +20 -0
  547. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/65.py +14 -0
  548. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/66.py +14 -0
  549. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/67.py +16 -0
  550. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/68.py +50 -0
  551. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/69.py +21 -0
  552. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/7.py +11 -0
  553. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/70.py +26 -0
  554. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/71.py +17 -0
  555. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/72.py +21 -0
  556. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/73.py +17 -0
  557. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/74.py +21 -0
  558. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/75.py +30 -0
  559. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/76.py +20 -0
  560. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/77.py +17 -0
  561. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/78.py +24 -0
  562. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/79.py +13 -0
  563. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/8.py +17 -0
  564. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/80.py +18 -0
  565. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/81.py +54 -0
  566. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/82.py +20 -0
  567. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/83.py +21 -0
  568. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/84.py +16 -0
  569. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/85.py +12 -0
  570. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/86.py +16 -0
  571. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/87.py +29 -0
  572. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/88.py +24 -0
  573. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/89.py +23 -0
  574. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/9.py +20 -0
  575. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/90.py +20 -0
  576. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/91.py +20 -0
  577. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/92.py +25 -0
  578. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/93.py +34 -0
  579. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/94.py +33 -0
  580. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/95.py +27 -0
  581. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/96.py +28 -0
  582. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/97.py +13 -0
  583. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/98.py +15 -0
  584. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/99.py +30 -0
  585. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/SUMMARY.md +48 -0
  586. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-12907.patch +16 -0
  587. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14182.patch +59 -0
  588. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14365.patch +21 -0
  589. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14995.patch +15 -0
  590. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-6938.patch +20 -0
  591. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-7746.patch +31 -0
  592. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-10914.patch +72 -0
  593. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-10924.patch +41 -0
  594. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11001.patch +80 -0
  595. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11019.patch +489 -0
  596. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11039.patch +87 -0
  597. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11049.patch +24 -0
  598. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11099.patch +28 -0
  599. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11133.patch +20 -0
  600. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11179.patch +49 -0
  601. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11283.patch +47 -0
  602. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11422.patch +25 -0
  603. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11564.patch +285 -0
  604. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11583.patch +22 -0
  605. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11620.patch +21 -0
  606. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11630.patch +45 -0
  607. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11742.patch +32 -0
  608. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11797.patch +38 -0
  609. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11815.patch +20 -0
  610. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11848.patch +21 -0
  611. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11905.patch +16 -0
  612. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11910.patch +29 -0
  613. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11964.patch +54 -0
  614. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11999.patch +15 -0
  615. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12113.patch +31 -0
  616. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12125.patch +27 -0
  617. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12184.patch +28 -0
  618. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12284.patch +31 -0
  619. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12286.patch +29 -0
  620. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12308.patch +22 -0
  621. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12453.patch +31 -0
  622. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12470.patch +53 -0
  623. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12497.patch +26 -0
  624. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12589.patch +157 -0
  625. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12700.patch +27 -0
  626. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12708.patch +64 -0
  627. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12747.patch +15 -0
  628. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12856.patch +16 -0
  629. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12908.patch +15 -0
  630. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12915.patch +82 -0
  631. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12983.patch +21 -0
  632. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13028.patch +13 -0
  633. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13033.patch +17 -0
  634. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13158.patch +14 -0
  635. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13220.patch +57 -0
  636. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13230.patch +14 -0
  637. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13265.patch +44 -0
  638. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13315.patch +53 -0
  639. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13321.patch +33 -0
  640. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13401.patch +30 -0
  641. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13447.patch +40 -0
  642. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13448.patch +203 -0
  643. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13551.patch +17 -0
  644. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13590.patch +17 -0
  645. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13658.patch +19 -0
  646. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13660.patch +27 -0
  647. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13710.patch +23 -0
  648. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13757.patch +51 -0
  649. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13768.patch +32 -0
  650. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13925.patch +116 -0
  651. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13933.patch +62 -0
  652. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13964.patch +17 -0
  653. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14016.patch +138 -0
  654. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14017.patch +88 -0
  655. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14155.patch +74 -0
  656. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14238.patch +132 -0
  657. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14382.patch +17 -0
  658. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14411.patch +16 -0
  659. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14534.patch +29 -0
  660. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14580.patch +15 -0
  661. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14608.patch +32 -0
  662. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14667.patch +33 -0
  663. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14672.patch +59 -0
  664. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14730.patch +80 -0
  665. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14752.patch +35 -0
  666. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14787.patch +24 -0
  667. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14855.patch +23 -0
  668. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14915.patch +19 -0
  669. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14997.patch +40 -0
  670. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14999.patch +26 -0
  671. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15061.patch +24 -0
  672. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15202.patch +18 -0
  673. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15213.patch +70 -0
  674. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15252.patch +63 -0
  675. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15320.patch +36 -0
  676. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15347.patch +36 -0
  677. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15388.patch +26 -0
  678. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15400.patch +14 -0
  679. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15498.patch +14 -0
  680. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15695.patch +32 -0
  681. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15738.patch +251 -0
  682. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15781.patch +18 -0
  683. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15789.patch +50 -0
  684. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15790.patch +34 -0
  685. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15814.patch +18 -0
  686. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15819.patch +127 -0
  687. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15851.patch +16 -0
  688. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15902.patch +15 -0
  689. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15996.patch +33 -0
  690. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16041.patch +30 -0
  691. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16046.patch +16 -0
  692. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16139.patch +19 -0
  693. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16229.patch +142 -0
  694. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16255.patch +21 -0
  695. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16379.patch +32 -0
  696. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16400.patch +34 -0
  697. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16408.patch +27 -0
  698. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16527.patch +14 -0
  699. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16595.patch +14 -0
  700. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16816.patch +30 -0
  701. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16820.patch +188 -0
  702. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16873.patch +37 -0
  703. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-17051.patch +51 -0
  704. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-17087.patch +21 -0
  705. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-18869.patch +75 -0
  706. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-22711.patch +42 -0
  707. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-22835.patch +58 -0
  708. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23299.patch +92 -0
  709. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23314.patch +16 -0
  710. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23476.patch +73 -0
  711. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23562.patch +33 -0
  712. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23563.patch +22 -0
  713. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23913.patch +207 -0
  714. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23964.patch +29 -0
  715. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23987.patch +43 -0
  716. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24149.patch +27 -0
  717. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24265.patch +76 -0
  718. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24334.patch +17 -0
  719. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24970.patch +24 -0
  720. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25079.patch +15 -0
  721. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25311.patch +29 -0
  722. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25332.patch +28 -0
  723. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25433.patch +240 -0
  724. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25442.patch +28 -0
  725. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25498.patch +79 -0
  726. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-26011.patch +90 -0
  727. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-26020.patch +35 -0
  728. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-2848.patch +55 -0
  729. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3010.patch +60 -0
  730. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3190.patch +18 -0
  731. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3407.patch +28 -0
  732. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-4045.patch +23 -0
  733. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-4992.patch +33 -0
  734. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-5063.patch +99 -0
  735. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-1963.patch +117 -0
  736. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2148.patch +37 -0
  737. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2317.patch +54 -0
  738. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2674.patch +157 -0
  739. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-3362.patch +19 -0
  740. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-863.patch +35 -0
  741. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-3364.patch +392 -0
  742. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4094.patch +40 -0
  743. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4248.patch +124 -0
  744. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4493.patch +39 -0
  745. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-5131.patch +45 -0
  746. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-5859.patch +13 -0
  747. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-6506.patch +25 -0
  748. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7080.patch +33 -0
  749. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7114.patch +161 -0
  750. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7228.patch +34 -0
  751. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7993.patch +21 -0
  752. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-11143.patch +25 -0
  753. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-11148.patch +57 -0
  754. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5103.patch +345 -0
  755. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5221.patch +28 -0
  756. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5227.patch +16 -0
  757. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5413.patch +35 -0
  758. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5495.patch +24 -0
  759. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5692.patch +33 -0
  760. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-6116.patch +12 -0
  761. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7168.patch +28 -0
  762. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7220.patch +535 -0
  763. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7373.patch +47 -0
  764. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7432.patch +76 -0
  765. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7490.patch +61 -0
  766. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-8365.patch +123 -0
  767. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-8906.patch +38 -0
  768. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-9359.patch +22 -0
  769. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10297.patch +53 -0
  770. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10508.patch +17 -0
  771. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10949.patch +94 -0
  772. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-11040.patch +39 -0
  773. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-11281.patch +65 -0
  774. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-12471.patch +54 -0
  775. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13142.patch +35 -0
  776. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13241.patch +29 -0
  777. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13439.patch +34 -0
  778. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13496.patch +59 -0
  779. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13497.patch +15 -0
  780. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13584.patch +25 -0
  781. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13779.patch +16 -0
  782. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14087.patch +33 -0
  783. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14092.patch +35 -0
  784. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14894.patch +24 -0
  785. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14983.patch +23 -0
  786. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-15512.patch +77 -0
  787. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-15535.patch +44 -0
  788. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25500.patch +64 -0
  789. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25570.patch +96 -0
  790. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25638.patch +52 -0
  791. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25747.patch +29 -0
  792. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-10325.patch +185 -0
  793. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-10451.patch +129 -0
  794. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-11445.patch +119 -0
  795. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7686.patch +19 -0
  796. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7738.patch +37 -0
  797. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7975.patch +89 -0
  798. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8273.patch +38 -0
  799. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8282.patch +95 -0
  800. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8435.patch +104 -0
  801. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8474.patch +73 -0
  802. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8506.patch +49 -0
  803. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8595.patch +15 -0
  804. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8627.patch +50 -0
  805. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8713.patch +41 -0
  806. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8721.patch +25 -0
  807. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8801.patch +73 -0
  808. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11400.patch +27 -0
  809. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11870.patch +96 -0
  810. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11897.patch +134 -0
  811. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12171.patch +17 -0
  812. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12236.patch +20 -0
  813. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12419.patch +35 -0
  814. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12454.patch +55 -0
  815. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12481.patch +68 -0
  816. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13031.patch +33 -0
  817. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13043.patch +35 -0
  818. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13146.patch +32 -0
  819. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13177.patch +36 -0
  820. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13437.patch +15 -0
  821. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13471.patch +26 -0
  822. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13480.patch +13 -0
  823. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13647.patch +41 -0
  824. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13773.patch +22 -0
  825. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13895.patch +28 -0
  826. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13915.patch +97 -0
  827. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13971.patch +19 -0
  828. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14024.patch +27 -0
  829. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14308.patch +20 -0
  830. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14317.patch +42 -0
  831. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14396.patch +38 -0
  832. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14774.patch +13 -0
  833. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14817.patch +54 -0
  834. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15011.patch +38 -0
  835. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15308.patch +21 -0
  836. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15345.patch +27 -0
  837. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15346.patch +26 -0
  838. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15609.patch +29 -0
  839. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15678.patch +92 -0
  840. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16106.patch +78 -0
  841. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16281.patch +141 -0
  842. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16503.patch +69 -0
  843. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16792.patch +16 -0
  844. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16988.patch +16 -0
  845. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17022.patch +65 -0
  846. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17139.patch +33 -0
  847. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17630.patch +90 -0
  848. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17655.patch +23 -0
  849. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18057.patch +28 -0
  850. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18087.patch +81 -0
  851. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18189.patch +13 -0
  852. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18199.patch +23 -0
  853. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18532.patch +130 -0
  854. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18621.patch +15 -0
  855. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18698.patch +105 -0
  856. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18835.patch +30 -0
  857. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19007.patch +66 -0
  858. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19254.patch +72 -0
  859. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19487.patch +23 -0
  860. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20049.patch +125 -0
  861. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20154.patch +46 -0
  862. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20212.patch +17 -0
  863. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20322.patch +24 -0
  864. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20442.patch +27 -0
  865. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20590.patch +23 -0
  866. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20639.patch +66 -0
  867. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21055.patch +56 -0
  868. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21171.patch +36 -0
  869. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21379.patch +36 -0
  870. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21612.patch +26 -0
  871. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21614.patch +37 -0
  872. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21627.patch +26 -0
  873. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21847.patch +24 -0
  874. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22005.patch +36 -0
  875. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22714.patch +486 -0
  876. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22840.patch +76 -0
  877. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23117.patch +24 -0
  878. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23191.patch +302 -0
  879. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23262.patch +13 -0
  880. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24066.patch +66 -0
  881. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24102.patch +12 -0
  882. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24152.patch +25 -0
  883. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24213.patch +25 -0
  884. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24909.patch +19 -0
  885. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-predictions.json +1502 -0
  886. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-results.json +1516 -0
  887. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/SUMMARY.md +48 -0
  888. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-12907.patch +31 -0
  889. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14182.patch +42 -0
  890. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14365.patch +50 -0
  891. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14995.patch +17 -0
  892. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-6938.patch +13 -0
  893. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-7746.patch +21 -0
  894. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-10914.patch +76 -0
  895. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-10924.patch +33 -0
  896. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11001.patch +35 -0
  897. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11019.patch +90 -0
  898. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11039.patch +37 -0
  899. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11049.patch +10 -0
  900. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11099.patch +24 -0
  901. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11133.patch +21 -0
  902. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11179.patch +47 -0
  903. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11283.patch +35 -0
  904. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11422.patch +18 -0
  905. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11564.patch +62 -0
  906. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11583.patch +25 -0
  907. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11620.patch +19 -0
  908. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11630.patch +79 -0
  909. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11742.patch +38 -0
  910. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11797.patch +15 -0
  911. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11815.patch +20 -0
  912. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11848.patch +19 -0
  913. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11905.patch +18 -0
  914. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11910.patch +17 -0
  915. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11964.patch +31 -0
  916. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11999.patch +26 -0
  917. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12113.patch +27 -0
  918. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12125.patch +17 -0
  919. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12184.patch +83 -0
  920. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12284.patch +21 -0
  921. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12286.patch +21 -0
  922. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12308.patch +24 -0
  923. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12453.patch +31 -0
  924. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12470.patch +137 -0
  925. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12497.patch +21 -0
  926. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12589.patch +28 -0
  927. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12700.patch +17 -0
  928. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12708.patch +22 -0
  929. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12747.patch +43 -0
  930. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12856.patch +61 -0
  931. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12908.patch +19 -0
  932. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12915.patch +39 -0
  933. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12983.patch +21 -0
  934. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13028.patch +13 -0
  935. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13033.patch +26 -0
  936. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13158.patch +12 -0
  937. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13220.patch +55 -0
  938. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-predictions.json +252 -0
  939. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-results.json +266 -0
  940. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/SUMMARY.md +32 -0
  941. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-12907.patch +23 -0
  942. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14182.patch +19 -0
  943. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14365.patch +44 -0
  944. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14995.patch +19 -0
  945. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-6938.patch +14 -0
  946. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-7746.patch +28 -0
  947. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-10914.patch +76 -0
  948. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-10924.patch +25 -0
  949. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11001.patch +20 -0
  950. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11019.patch +158 -0
  951. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11039.patch +38 -0
  952. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11049.patch +18 -0
  953. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11099.patch +24 -0
  954. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11133.patch +15 -0
  955. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11179.patch +14 -0
  956. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11283.patch +29 -0
  957. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11422.patch +21 -0
  958. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11564.patch +140 -0
  959. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11583.patch +24 -0
  960. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11620.patch +18 -0
  961. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11630.patch +38 -0
  962. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11742.patch +49 -0
  963. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11797.patch +18 -0
  964. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11815.patch +22 -0
  965. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11848.patch +24 -0
  966. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11905.patch +32 -0
  967. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11910.patch +100 -0
  968. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11964.patch +62 -0
  969. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11999.patch +20 -0
  970. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12113.patch +24 -0
  971. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12125.patch +17 -0
  972. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12184.patch +82 -0
  973. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12284.patch +15 -0
  974. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12286.patch +41 -0
  975. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12308.patch +31 -0
  976. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12453.patch +32 -0
  977. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12470.patch +21 -0
  978. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12497.patch +17 -0
  979. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12589.patch +56 -0
  980. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12700.patch +28 -0
  981. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12708.patch +61 -0
  982. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12747.patch +15 -0
  983. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12856.patch +62 -0
  984. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12908.patch +21 -0
  985. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12915.patch +18 -0
  986. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12983.patch +21 -0
  987. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13028.patch +18 -0
  988. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13033.patch +15 -0
  989. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13158.patch +15 -0
  990. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13220.patch +126 -0
  991. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13230.patch +24 -0
  992. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13265.patch +87 -0
  993. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13315.patch +16 -0
  994. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13321.patch +29 -0
  995. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13401.patch +31 -0
  996. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13447.patch +42 -0
  997. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13448.patch +94 -0
  998. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13551.patch +16 -0
  999. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13590.patch +15 -0
  1000. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13658.patch +22 -0
  1001. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13660.patch +22 -0
  1002. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13710.patch +42 -0
  1003. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13757.patch +32 -0
  1004. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13768.patch +32 -0
  1005. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13925.patch +20 -0
  1006. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13933.patch +31 -0
  1007. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13964.patch +15 -0
  1008. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14016.patch +103 -0
  1009. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14017.patch +20 -0
  1010. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14155.patch +121 -0
  1011. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14238.patch +14 -0
  1012. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14382.patch +15 -0
  1013. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14411.patch +16 -0
  1014. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14534.patch +15 -0
  1015. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14580.patch +15 -0
  1016. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14608.patch +34 -0
  1017. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14667.patch +29 -0
  1018. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14672.patch +12 -0
  1019. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14730.patch +43 -0
  1020. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14752.patch +32 -0
  1021. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14787.patch +35 -0
  1022. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14855.patch +23 -0
  1023. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14915.patch +21 -0
  1024. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14997.patch +15 -0
  1025. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14999.patch +28 -0
  1026. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15061.patch +19 -0
  1027. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15202.patch +22 -0
  1028. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15213.patch +16 -0
  1029. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15252.patch +59 -0
  1030. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15320.patch +13 -0
  1031. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15347.patch +15 -0
  1032. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15388.patch +25 -0
  1033. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15400.patch +19 -0
  1034. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15498.patch +14 -0
  1035. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15695.patch +39 -0
  1036. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15738.patch +185 -0
  1037. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15781.patch +20 -0
  1038. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15789.patch +69 -0
  1039. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15790.patch +38 -0
  1040. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15814.patch +14 -0
  1041. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15819.patch +101 -0
  1042. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15851.patch +40 -0
  1043. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15902.patch +17 -0
  1044. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15996.patch +28 -0
  1045. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16041.patch +27 -0
  1046. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16046.patch +17 -0
  1047. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16139.patch +15 -0
  1048. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16229.patch +19 -0
  1049. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16255.patch +17 -0
  1050. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16379.patch +21 -0
  1051. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16400.patch +29 -0
  1052. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16408.patch +39 -0
  1053. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16527.patch +14 -0
  1054. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16595.patch +39 -0
  1055. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16816.patch +27 -0
  1056. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16820.patch +98 -0
  1057. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16873.patch +23 -0
  1058. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16910.patch +39 -0
  1059. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-17051.patch +15 -0
  1060. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-17087.patch +19 -0
  1061. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-18869.patch +29 -0
  1062. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-22711.patch +38 -0
  1063. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-22835.patch +27 -0
  1064. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23299.patch +65 -0
  1065. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23314.patch +15 -0
  1066. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23476.patch +19 -0
  1067. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23562.patch +23 -0
  1068. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23563.patch +14 -0
  1069. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23913.patch +95 -0
  1070. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23964.patch +14 -0
  1071. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23987.patch +55 -0
  1072. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24149.patch +20 -0
  1073. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24265.patch +52 -0
  1074. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24334.patch +23 -0
  1075. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24970.patch +24 -0
  1076. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25079.patch +38 -0
  1077. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25311.patch +62 -0
  1078. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25332.patch +42 -0
  1079. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25433.patch +126 -0
  1080. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25442.patch +27 -0
  1081. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25498.patch +67 -0
  1082. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-26011.patch +55 -0
  1083. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-26020.patch +42 -0
  1084. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-2848.patch +95 -0
  1085. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3010.patch +17 -0
  1086. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3190.patch +73 -0
  1087. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3407.patch +31 -0
  1088. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-4045.patch +21 -0
  1089. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-4992.patch +47 -0
  1090. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-5063.patch +90 -0
  1091. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-1963.patch +29 -0
  1092. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2148.patch +79 -0
  1093. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2317.patch +38 -0
  1094. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2674.patch +58 -0
  1095. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-3362.patch +17 -0
  1096. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-863.patch +20 -0
  1097. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-3364.patch +159 -0
  1098. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4094.patch +17 -0
  1099. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4248.patch +134 -0
  1100. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4493.patch +20 -0
  1101. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-5131.patch +23 -0
  1102. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-5859.patch +15 -0
  1103. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-6506.patch +36 -0
  1104. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7080.patch +31 -0
  1105. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7114.patch +51 -0
  1106. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7228.patch +80 -0
  1107. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7993.patch +54 -0
  1108. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-11143.patch +17 -0
  1109. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-11148.patch +27 -0
  1110. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5103.patch +350 -0
  1111. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5221.patch +18 -0
  1112. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5227.patch +15 -0
  1113. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5413.patch +20 -0
  1114. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5495.patch +44 -0
  1115. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5692.patch +69 -0
  1116. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-6116.patch +17 -0
  1117. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7168.patch +14 -0
  1118. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7220.patch +391 -0
  1119. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7373.patch +48 -0
  1120. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7432.patch +99 -0
  1121. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7490.patch +4 -0
  1122. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-8365.patch +27 -0
  1123. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-8906.patch +23 -0
  1124. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-9359.patch +89 -0
  1125. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10297.patch +22 -0
  1126. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10508.patch +37 -0
  1127. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10949.patch +66 -0
  1128. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-11040.patch +147 -0
  1129. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-11281.patch +107 -0
  1130. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-12471.patch +22 -0
  1131. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13142.patch +19 -0
  1132. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13241.patch +26 -0
  1133. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13439.patch +29 -0
  1134. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13496.patch +62 -0
  1135. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13497.patch +23 -0
  1136. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13584.patch +38 -0
  1137. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13779.patch +16 -0
  1138. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14087.patch +17 -0
  1139. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14092.patch +61 -0
  1140. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14894.patch +45 -0
  1141. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14983.patch +36 -0
  1142. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-15512.patch +143 -0
  1143. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-15535.patch +17 -0
  1144. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25500.patch +79 -0
  1145. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25570.patch +71 -0
  1146. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25638.patch +70 -0
  1147. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25747.patch +14 -0
  1148. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-10325.patch +153 -0
  1149. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-10451.patch +99 -0
  1150. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-11445.patch +67 -0
  1151. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7686.patch +50 -0
  1152. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7738.patch +22 -0
  1153. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7975.patch +92 -0
  1154. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8273.patch +103 -0
  1155. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8282.patch +45 -0
  1156. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8435.patch +56 -0
  1157. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8474.patch +21 -0
  1158. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8506.patch +33 -0
  1159. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8595.patch +45 -0
  1160. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8627.patch +62 -0
  1161. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8713.patch +19 -0
  1162. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8721.patch +17 -0
  1163. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8801.patch +101 -0
  1164. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11400.patch +55 -0
  1165. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11870.patch +47 -0
  1166. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11897.patch +152 -0
  1167. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12171.patch +20 -0
  1168. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12236.patch +17 -0
  1169. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12419.patch +37 -0
  1170. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12454.patch +22 -0
  1171. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12481.patch +44 -0
  1172. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13031.patch +71 -0
  1173. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13043.patch +25 -0
  1174. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13146.patch +54 -0
  1175. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13177.patch +14 -0
  1176. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13437.patch +17 -0
  1177. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13471.patch +15 -0
  1178. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13480.patch +19 -0
  1179. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13647.patch +22 -0
  1180. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13773.patch +32 -0
  1181. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13895.patch +55 -0
  1182. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13915.patch +70 -0
  1183. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13971.patch +20 -0
  1184. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14024.patch +56 -0
  1185. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14308.patch +189 -0
  1186. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14317.patch +41 -0
  1187. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14396.patch +32 -0
  1188. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14774.patch +15 -0
  1189. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14817.patch +19 -0
  1190. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15011.patch +31 -0
  1191. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15308.patch +21 -0
  1192. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15345.patch +13 -0
  1193. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15346.patch +21 -0
  1194. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15609.patch +11 -0
  1195. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15678.patch +87 -0
  1196. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16106.patch +66 -0
  1197. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16281.patch +88 -0
  1198. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16503.patch +18 -0
  1199. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16792.patch +20 -0
  1200. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16988.patch +22 -0
  1201. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17022.patch +38 -0
  1202. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17139.patch +48 -0
  1203. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17630.patch +116 -0
  1204. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17655.patch +27 -0
  1205. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18057.patch +31 -0
  1206. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18087.patch +55 -0
  1207. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18189.patch +15 -0
  1208. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18199.patch +25 -0
  1209. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18532.patch +84 -0
  1210. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18621.patch +21 -0
  1211. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18698.patch +60 -0
  1212. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18835.patch +39 -0
  1213. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19007.patch +143 -0
  1214. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19254.patch +79 -0
  1215. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19487.patch +37 -0
  1216. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20049.patch +37 -0
  1217. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20154.patch +27 -0
  1218. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20212.patch +15 -0
  1219. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20322.patch +23 -0
  1220. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20442.patch +73 -0
  1221. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20590.patch +16 -0
  1222. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20639.patch +20 -0
  1223. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21055.patch +47 -0
  1224. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21171.patch +27 -0
  1225. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21379.patch +27 -0
  1226. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21612.patch +46 -0
  1227. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21614.patch +23 -0
  1228. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21627.patch +28 -0
  1229. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21847.patch +24 -0
  1230. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22005.patch +36 -0
  1231. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22714.patch +19 -0
  1232. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22840.patch +19 -0
  1233. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23117.patch +18 -0
  1234. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23191.patch +42 -0
  1235. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23262.patch +18 -0
  1236. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24066.patch +26 -0
  1237. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24102.patch +17 -0
  1238. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24152.patch +23 -0
  1239. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24213.patch +18 -0
  1240. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24909.patch +39 -0
  1241. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-predictions.json +1802 -0
  1242. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-results.json +1816 -0
  1243. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/SUMMARY.md +32 -0
  1244. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-results.json +1001 -0
  1245. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/0.py +21 -0
  1246. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/1.py +36 -0
  1247. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/10.py +30 -0
  1248. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/100.py +23 -0
  1249. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/101.py +17 -0
  1250. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/102.py +21 -0
  1251. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/103.py +22 -0
  1252. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/104.py +23 -0
  1253. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/105.py +34 -0
  1254. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/106.py +26 -0
  1255. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/107.py +40 -0
  1256. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/108.py +27 -0
  1257. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/109.py +53 -0
  1258. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/11.py +21 -0
  1259. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/110.py +25 -0
  1260. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/111.py +34 -0
  1261. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/112.py +20 -0
  1262. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/113.py +25 -0
  1263. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/114.py +24 -0
  1264. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/115.py +41 -0
  1265. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/116.py +17 -0
  1266. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/117.py +30 -0
  1267. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/118.py +31 -0
  1268. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/119.py +35 -0
  1269. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/12.py +27 -0
  1270. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/120.py +33 -0
  1271. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/121.py +15 -0
  1272. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/122.py +24 -0
  1273. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/123.py +35 -0
  1274. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/124.py +58 -0
  1275. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/125.py +25 -0
  1276. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/126.py +34 -0
  1277. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/127.py +41 -0
  1278. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/128.py +31 -0
  1279. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/129.py +62 -0
  1280. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/13.py +17 -0
  1281. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/130.py +35 -0
  1282. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/131.py +24 -0
  1283. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/132.py +32 -0
  1284. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/133.py +21 -0
  1285. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/134.py +23 -0
  1286. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/135.py +20 -0
  1287. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/136.py +24 -0
  1288. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/137.py +31 -0
  1289. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/138.py +13 -0
  1290. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/139.py +23 -0
  1291. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/14.py +14 -0
  1292. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/140.py +26 -0
  1293. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/141.py +42 -0
  1294. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/142.py +25 -0
  1295. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/143.py +40 -0
  1296. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/144.py +24 -0
  1297. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/145.py +24 -0
  1298. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/146.py +21 -0
  1299. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/147.py +32 -0
  1300. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/148.py +33 -0
  1301. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/149.py +22 -0
  1302. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/15.py +13 -0
  1303. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/150.py +26 -0
  1304. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/151.py +22 -0
  1305. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/152.py +21 -0
  1306. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/153.py +32 -0
  1307. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/154.py +25 -0
  1308. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/155.py +20 -0
  1309. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/156.py +39 -0
  1310. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/157.py +28 -0
  1311. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/158.py +16 -0
  1312. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/159.py +36 -0
  1313. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/16.py +13 -0
  1314. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/160.py +34 -0
  1315. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/161.py +29 -0
  1316. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/162.py +16 -0
  1317. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/163.py +18 -0
  1318. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/17.py +27 -0
  1319. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/18.py +23 -0
  1320. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/19.py +34 -0
  1321. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/2.py +15 -0
  1322. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/20.py +27 -0
  1323. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/21.py +18 -0
  1324. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/22.py +16 -0
  1325. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/23.py +13 -0
  1326. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/24.py +14 -0
  1327. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/25.py +29 -0
  1328. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/26.py +17 -0
  1329. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/27.py +11 -0
  1330. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/28.py +16 -0
  1331. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/29.py +16 -0
  1332. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/3.py +23 -0
  1333. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/30.py +13 -0
  1334. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/31.py +34 -0
  1335. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/32.py +37 -0
  1336. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/33.py +19 -0
  1337. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/34.py +11 -0
  1338. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/35.py +13 -0
  1339. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/36.py +19 -0
  1340. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/37.py +19 -0
  1341. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/38.py +25 -0
  1342. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/39.py +40 -0
  1343. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/4.py +23 -0
  1344. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/40.py +43 -0
  1345. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/41.py +18 -0
  1346. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/42.py +13 -0
  1347. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/43.py +27 -0
  1348. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/44.py +25 -0
  1349. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/45.py +11 -0
  1350. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/46.py +35 -0
  1351. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/47.py +19 -0
  1352. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/48.py +18 -0
  1353. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/49.py +26 -0
  1354. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/5.py +25 -0
  1355. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/50.py +10 -0
  1356. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/51.py +23 -0
  1357. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/52.py +13 -0
  1358. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/53.py +13 -0
  1359. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/54.py +22 -0
  1360. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/55.py +20 -0
  1361. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/56.py +27 -0
  1362. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/57.py +27 -0
  1363. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/58.py +14 -0
  1364. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/59.py +32 -0
  1365. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/6.py +33 -0
  1366. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/60.py +19 -0
  1367. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/61.py +27 -0
  1368. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/62.py +15 -0
  1369. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/63.py +30 -0
  1370. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/64.py +29 -0
  1371. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/65.py +18 -0
  1372. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/66.py +23 -0
  1373. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/67.py +22 -0
  1374. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/68.py +55 -0
  1375. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/69.py +26 -0
  1376. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/7.py +16 -0
  1377. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/70.py +35 -0
  1378. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/71.py +29 -0
  1379. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/72.py +24 -0
  1380. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/73.py +22 -0
  1381. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/74.py +26 -0
  1382. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/75.py +42 -0
  1383. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/76.py +25 -0
  1384. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/77.py +25 -0
  1385. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/78.py +29 -0
  1386. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/79.py +18 -0
  1387. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/8.py +24 -0
  1388. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/80.py +26 -0
  1389. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/81.py +61 -0
  1390. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/82.py +21 -0
  1391. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/83.py +13 -0
  1392. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/84.py +21 -0
  1393. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/85.py +17 -0
  1394. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/86.py +21 -0
  1395. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/87.py +31 -0
  1396. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/88.py +29 -0
  1397. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/89.py +25 -0
  1398. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/9.py +25 -0
  1399. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/90.py +21 -0
  1400. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/91.py +31 -0
  1401. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/92.py +29 -0
  1402. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/93.py +30 -0
  1403. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/94.py +32 -0
  1404. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/95.py +32 -0
  1405. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/96.py +38 -0
  1406. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/97.py +16 -0
  1407. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/98.py +20 -0
  1408. package/src/templates/antigravity-skills/loki-mode/benchmarks/results/humaneval-loki-solutions/99.py +36 -0
  1409. package/src/templates/antigravity-skills/loki-mode/benchmarks/run-benchmarks.sh +1948 -0
  1410. package/src/templates/antigravity-skills/loki-mode/benchmarks/submission-template/README.md +111 -0
  1411. package/src/templates/antigravity-skills/loki-mode/benchmarks/submission-template/metadata.yaml +76 -0
  1412. package/src/templates/antigravity-skills/loki-mode/demo/README.md +137 -0
  1413. package/src/templates/antigravity-skills/loki-mode/demo/loki-demo.gif +0 -0
  1414. package/src/templates/antigravity-skills/loki-mode/demo/record-demo.sh +69 -0
  1415. package/src/templates/antigravity-skills/loki-mode/demo/record-full-demo.sh +208 -0
  1416. package/src/templates/antigravity-skills/loki-mode/demo/recordings/loki-demo.cast +93 -0
  1417. package/src/templates/antigravity-skills/loki-mode/demo/run-demo-auto.sh +293 -0
  1418. package/src/templates/antigravity-skills/loki-mode/demo/run-demo.sh +323 -0
  1419. package/src/templates/antigravity-skills/loki-mode/demo/vhs-tape.tape +223 -0
  1420. package/src/templates/antigravity-skills/loki-mode/demo/voice-over-script.md +246 -0
  1421. package/src/templates/antigravity-skills/loki-mode/docs/COMPETITIVE-ANALYSIS.md +333 -0
  1422. package/src/templates/antigravity-skills/loki-mode/docs/screenshots/README.md +149 -0
  1423. package/src/templates/antigravity-skills/loki-mode/docs/screenshots/dashboard-agents.png +0 -0
  1424. package/src/templates/antigravity-skills/loki-mode/docs/screenshots/dashboard-tasks.png +0 -0
  1425. package/src/templates/antigravity-skills/loki-mode/examples/api-only.md +79 -0
  1426. package/src/templates/antigravity-skills/loki-mode/examples/full-stack-demo.md +123 -0
  1427. package/src/templates/antigravity-skills/loki-mode/examples/simple-todo-app.md +60 -0
  1428. package/src/templates/antigravity-skills/loki-mode/examples/static-landing-page.md +73 -0
  1429. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/.loki/CONTINUITY.md +59 -0
  1430. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/.loki/queue/completed.json +1 -0
  1431. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/.loki/queue/dead-letter.json +1 -0
  1432. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/.loki/queue/failed.json +1 -0
  1433. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/.loki/queue/in-progress.json +1 -0
  1434. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/.loki/queue/pending.json +382 -0
  1435. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/.loki/state/orchestrator.json +41 -0
  1436. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/E2E_VERIFICATION_REPORT.md +668 -0
  1437. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/PRD.md +60 -0
  1438. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/TASK_018_COMPLETION.md +229 -0
  1439. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/TESTING_DOCUMENTATION.md +327 -0
  1440. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/TEST_REPORT.md +201 -0
  1441. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/VERIFICATION_SUMMARY.txt +362 -0
  1442. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/package-lock.json +2698 -0
  1443. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/package.json +26 -0
  1444. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/src/db/database.ts +24 -0
  1445. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/src/db/db.ts +35 -0
  1446. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/src/db/index.ts +2 -0
  1447. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/src/db/migrations.ts +31 -0
  1448. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/src/db/schema.sql +8 -0
  1449. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/src/index.ts +44 -0
  1450. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/src/routes/todos.ts +155 -0
  1451. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/src/types/index.ts +35 -0
  1452. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/todos.db-shm +0 -0
  1453. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/todos.db-wal +0 -0
  1454. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/backend/tsconfig.json +30 -0
  1455. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/index.html +13 -0
  1456. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/package-lock.json +2014 -0
  1457. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/package.json +26 -0
  1458. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/App.css +384 -0
  1459. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/App.tsx +81 -0
  1460. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/api/todos.ts +57 -0
  1461. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/components/ConfirmDialog.tsx +26 -0
  1462. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/components/EmptyState.tsx +8 -0
  1463. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoForm.tsx +43 -0
  1464. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoItem.tsx +36 -0
  1465. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoList.tsx +27 -0
  1466. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/hooks/useTodos.ts +81 -0
  1467. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/index.css +48 -0
  1468. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/main.tsx +10 -0
  1469. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/src/vite-env.d.ts +1 -0
  1470. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/tsconfig.json +23 -0
  1471. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/tsconfig.node.json +10 -0
  1472. package/src/templates/antigravity-skills/loki-mode/examples/todo-app-generated/frontend/vite.config.ts +15 -0
  1473. package/src/templates/antigravity-skills/loki-mode/integrations/vibe-kanban.md +194 -0
  1474. package/src/templates/antigravity-skills/loki-mode/references/advanced-patterns.md +453 -0
  1475. package/src/templates/antigravity-skills/loki-mode/references/agent-types.md +188 -0
  1476. package/src/templates/antigravity-skills/loki-mode/references/agents.md +1043 -0
  1477. package/src/templates/antigravity-skills/loki-mode/references/business-ops.md +550 -0
  1478. package/src/templates/antigravity-skills/loki-mode/references/core-workflow.md +275 -0
  1479. package/src/templates/antigravity-skills/loki-mode/references/deployment.md +604 -0
  1480. package/src/templates/antigravity-skills/loki-mode/references/lab-research-patterns.md +534 -0
  1481. package/src/templates/antigravity-skills/loki-mode/references/memory-system.md +444 -0
  1482. package/src/templates/antigravity-skills/loki-mode/references/openai-patterns.md +647 -0
  1483. package/src/templates/antigravity-skills/loki-mode/references/production-patterns.md +568 -0
  1484. package/src/templates/antigravity-skills/loki-mode/references/quality-control.md +437 -0
  1485. package/src/templates/antigravity-skills/loki-mode/references/sdlc-phases.md +410 -0
  1486. package/src/templates/antigravity-skills/loki-mode/references/task-queue.md +361 -0
  1487. package/src/templates/antigravity-skills/loki-mode/references/tool-orchestration.md +691 -0
  1488. package/src/templates/antigravity-skills/loki-mode/scripts/export-to-vibe-kanban.sh +178 -0
  1489. package/src/templates/antigravity-skills/loki-mode/scripts/loki-wrapper.sh +281 -0
  1490. package/src/templates/antigravity-skills/loki-mode/scripts/take-screenshots.js +55 -0
  1491. package/src/templates/antigravity-skills/loki-mode/tests/run-all-tests.sh +78 -0
  1492. package/src/templates/antigravity-skills/loki-mode/tests/test-agent-timeout.sh +348 -0
  1493. package/src/templates/antigravity-skills/loki-mode/tests/test-bootstrap.sh +196 -0
  1494. package/src/templates/antigravity-skills/loki-mode/tests/test-circuit-breaker.sh +389 -0
  1495. package/src/templates/antigravity-skills/loki-mode/tests/test-state-recovery.sh +393 -0
  1496. package/src/templates/antigravity-skills/loki-mode/tests/test-task-queue.sh +396 -0
  1497. package/src/templates/antigravity-skills/loki-mode/tests/test-wrapper.sh +314 -0
  1498. package/src/templates/antigravity-skills/marketing-ideas/SKILL.md +565 -0
  1499. package/src/templates/antigravity-skills/marketing-psychology/SKILL.md +451 -0
  1500. package/src/templates/antigravity-skills/mcp-builder/LICENSE.txt +202 -0
  1501. package/src/templates/antigravity-skills/mcp-builder/SKILL.md +236 -0
  1502. package/src/templates/antigravity-skills/mcp-builder/reference/evaluation.md +602 -0
  1503. package/src/templates/antigravity-skills/mcp-builder/reference/mcp_best_practices.md +249 -0
  1504. package/src/templates/antigravity-skills/mcp-builder/reference/node_mcp_server.md +970 -0
  1505. package/src/templates/antigravity-skills/mcp-builder/reference/python_mcp_server.md +719 -0
  1506. package/src/templates/antigravity-skills/mcp-builder/scripts/connections.py +151 -0
  1507. package/src/templates/antigravity-skills/mcp-builder/scripts/evaluation.py +373 -0
  1508. package/src/templates/antigravity-skills/mcp-builder/scripts/example_evaluation.xml +22 -0
  1509. package/src/templates/antigravity-skills/mcp-builder/scripts/requirements.txt +2 -0
  1510. package/src/templates/antigravity-skills/metasploit-framework/SKILL.md +478 -0
  1511. package/src/templates/antigravity-skills/micro-saas-launcher/SKILL.md +212 -0
  1512. package/src/templates/antigravity-skills/mobile-design/SKILL.md +394 -0
  1513. package/src/templates/antigravity-skills/mobile-design/decision-trees.md +516 -0
  1514. package/src/templates/antigravity-skills/mobile-design/mobile-backend.md +491 -0
  1515. package/src/templates/antigravity-skills/mobile-design/mobile-color-system.md +420 -0
  1516. package/src/templates/antigravity-skills/mobile-design/mobile-debugging.md +122 -0
  1517. package/src/templates/antigravity-skills/mobile-design/mobile-design-thinking.md +357 -0
  1518. package/src/templates/antigravity-skills/mobile-design/mobile-navigation.md +458 -0
  1519. package/src/templates/antigravity-skills/mobile-design/mobile-performance.md +767 -0
  1520. package/src/templates/antigravity-skills/mobile-design/mobile-testing.md +356 -0
  1521. package/src/templates/antigravity-skills/mobile-design/mobile-typography.md +433 -0
  1522. package/src/templates/antigravity-skills/mobile-design/platform-android.md +666 -0
  1523. package/src/templates/antigravity-skills/mobile-design/platform-ios.md +561 -0
  1524. package/src/templates/antigravity-skills/mobile-design/scripts/mobile_audit.py +670 -0
  1525. package/src/templates/antigravity-skills/mobile-design/touch-psychology.md +537 -0
  1526. package/src/templates/antigravity-skills/moodle-external-api-development/SKILL.md +597 -0
  1527. package/src/templates/antigravity-skills/neon-postgres/SKILL.md +56 -0
  1528. package/src/templates/antigravity-skills/nestjs-expert/SKILL.md +552 -0
  1529. package/src/templates/antigravity-skills/network-101/SKILL.md +342 -0
  1530. package/src/templates/antigravity-skills/nextjs-best-practices/SKILL.md +203 -0
  1531. package/src/templates/antigravity-skills/nextjs-supabase-auth/SKILL.md +56 -0
  1532. package/src/templates/antigravity-skills/nodejs-best-practices/SKILL.md +333 -0
  1533. package/src/templates/antigravity-skills/nosql-expert/SKILL.md +111 -0
  1534. package/src/templates/antigravity-skills/notebooklm/AUTHENTICATION.md +154 -0
  1535. package/src/templates/antigravity-skills/notebooklm/CHANGELOG.md +44 -0
  1536. package/src/templates/antigravity-skills/notebooklm/LICENSE +21 -0
  1537. package/src/templates/antigravity-skills/notebooklm/README.md +412 -0
  1538. package/src/templates/antigravity-skills/notebooklm/SKILL.md +269 -0
  1539. package/src/templates/antigravity-skills/notebooklm/images/example_notebookchat.png +0 -0
  1540. package/src/templates/antigravity-skills/notebooklm/references/api_reference.md +309 -0
  1541. package/src/templates/antigravity-skills/notebooklm/references/troubleshooting.md +376 -0
  1542. package/src/templates/antigravity-skills/notebooklm/references/usage_patterns.md +338 -0
  1543. package/src/templates/antigravity-skills/notebooklm/requirements.txt +10 -0
  1544. package/src/templates/antigravity-skills/notebooklm/scripts/__init__.py +81 -0
  1545. package/src/templates/antigravity-skills/notebooklm/scripts/ask_question.py +256 -0
  1546. package/src/templates/antigravity-skills/notebooklm/scripts/auth_manager.py +358 -0
  1547. package/src/templates/antigravity-skills/notebooklm/scripts/browser_session.py +255 -0
  1548. package/src/templates/antigravity-skills/notebooklm/scripts/browser_utils.py +107 -0
  1549. package/src/templates/antigravity-skills/notebooklm/scripts/cleanup_manager.py +302 -0
  1550. package/src/templates/antigravity-skills/notebooklm/scripts/config.py +44 -0
  1551. package/src/templates/antigravity-skills/notebooklm/scripts/notebook_manager.py +410 -0
  1552. package/src/templates/antigravity-skills/notebooklm/scripts/run.py +102 -0
  1553. package/src/templates/antigravity-skills/notebooklm/scripts/setup_environment.py +204 -0
  1554. package/src/templates/antigravity-skills/notion-template-business/SKILL.md +216 -0
  1555. package/src/templates/antigravity-skills/obsidian-clipper-template-creator/SKILL.md +54 -0
  1556. package/src/templates/antigravity-skills/obsidian-clipper-template-creator/assets/clipping-template.json +51 -0
  1557. package/src/templates/antigravity-skills/obsidian-clipper-template-creator/assets/recipe-template.json +48 -0
  1558. package/src/templates/antigravity-skills/obsidian-clipper-template-creator/references/analysis-workflow.md +67 -0
  1559. package/src/templates/antigravity-skills/obsidian-clipper-template-creator/references/bases-workflow.md +44 -0
  1560. package/src/templates/antigravity-skills/obsidian-clipper-template-creator/references/filters.md +51 -0
  1561. package/src/templates/antigravity-skills/obsidian-clipper-template-creator/references/json-schema.md +71 -0
  1562. package/src/templates/antigravity-skills/obsidian-clipper-template-creator/references/variables.md +59 -0
  1563. package/src/templates/antigravity-skills/onboarding-cro/SKILL.md +433 -0
  1564. package/src/templates/antigravity-skills/page-cro/SKILL.md +334 -0
  1565. package/src/templates/antigravity-skills/paid-ads/SKILL.md +551 -0
  1566. package/src/templates/antigravity-skills/parallel-agents/SKILL.md +175 -0
  1567. package/src/templates/antigravity-skills/paywall-upgrade-cro/SKILL.md +570 -0
  1568. package/src/templates/antigravity-skills/pdf +1 -0
  1569. package/src/templates/antigravity-skills/pdf-official/LICENSE.txt +30 -0
  1570. package/src/templates/antigravity-skills/pdf-official/SKILL.md +294 -0
  1571. package/src/templates/antigravity-skills/pdf-official/forms.md +205 -0
  1572. package/src/templates/antigravity-skills/pdf-official/reference.md +612 -0
  1573. package/src/templates/antigravity-skills/pdf-official/scripts/check_bounding_boxes.py +70 -0
  1574. package/src/templates/antigravity-skills/pdf-official/scripts/check_bounding_boxes_test.py +226 -0
  1575. package/src/templates/antigravity-skills/pdf-official/scripts/check_fillable_fields.py +12 -0
  1576. package/src/templates/antigravity-skills/pdf-official/scripts/convert_pdf_to_images.py +35 -0
  1577. package/src/templates/antigravity-skills/pdf-official/scripts/create_validation_image.py +41 -0
  1578. package/src/templates/antigravity-skills/pdf-official/scripts/extract_form_field_info.py +152 -0
  1579. package/src/templates/antigravity-skills/pdf-official/scripts/fill_fillable_fields.py +114 -0
  1580. package/src/templates/antigravity-skills/pdf-official/scripts/fill_pdf_form_with_annotations.py +108 -0
  1581. package/src/templates/antigravity-skills/pentest-checklist/SKILL.md +334 -0
  1582. package/src/templates/antigravity-skills/pentest-commands/SKILL.md +438 -0
  1583. package/src/templates/antigravity-skills/performance-profiling/SKILL.md +143 -0
  1584. package/src/templates/antigravity-skills/performance-profiling/scripts/lighthouse_audit.py +76 -0
  1585. package/src/templates/antigravity-skills/personal-tool-builder/SKILL.md +289 -0
  1586. package/src/templates/antigravity-skills/plaid-fintech/SKILL.md +50 -0
  1587. package/src/templates/antigravity-skills/plan-writing/SKILL.md +152 -0
  1588. package/src/templates/antigravity-skills/planning-with-files/SKILL.md +211 -0
  1589. package/src/templates/antigravity-skills/planning-with-files/examples.md +202 -0
  1590. package/src/templates/antigravity-skills/planning-with-files/reference.md +218 -0
  1591. package/src/templates/antigravity-skills/planning-with-files/scripts/check-complete.sh +44 -0
  1592. package/src/templates/antigravity-skills/planning-with-files/scripts/init-session.sh +120 -0
  1593. package/src/templates/antigravity-skills/planning-with-files/templates/findings.md +95 -0
  1594. package/src/templates/antigravity-skills/planning-with-files/templates/progress.md +114 -0
  1595. package/src/templates/antigravity-skills/planning-with-files/templates/task_plan.md +132 -0
  1596. package/src/templates/antigravity-skills/playwright-skill/API_REFERENCE.md +653 -0
  1597. package/src/templates/antigravity-skills/playwright-skill/SKILL.md +453 -0
  1598. package/src/templates/antigravity-skills/playwright-skill/lib/helpers.js +441 -0
  1599. package/src/templates/antigravity-skills/playwright-skill/package.json +26 -0
  1600. package/src/templates/antigravity-skills/playwright-skill/run.js +228 -0
  1601. package/src/templates/antigravity-skills/popup-cro/SKILL.md +449 -0
  1602. package/src/templates/antigravity-skills/postgres-best-practices/AGENTS.md +1490 -0
  1603. package/src/templates/antigravity-skills/postgres-best-practices/README.md +119 -0
  1604. package/src/templates/antigravity-skills/postgres-best-practices/SKILL.md +57 -0
  1605. package/src/templates/antigravity-skills/postgres-best-practices/metadata.json +13 -0
  1606. package/src/templates/antigravity-skills/postgres-best-practices/rules/_contributing.md +171 -0
  1607. package/src/templates/antigravity-skills/postgres-best-practices/rules/_sections.md +39 -0
  1608. package/src/templates/antigravity-skills/postgres-best-practices/rules/_template.md +34 -0
  1609. package/src/templates/antigravity-skills/postgres-best-practices/rules/advanced-full-text-search.md +55 -0
  1610. package/src/templates/antigravity-skills/postgres-best-practices/rules/advanced-jsonb-indexing.md +49 -0
  1611. package/src/templates/antigravity-skills/postgres-best-practices/rules/conn-idle-timeout.md +46 -0
  1612. package/src/templates/antigravity-skills/postgres-best-practices/rules/conn-limits.md +44 -0
  1613. package/src/templates/antigravity-skills/postgres-best-practices/rules/conn-pooling.md +41 -0
  1614. package/src/templates/antigravity-skills/postgres-best-practices/rules/conn-prepared-statements.md +46 -0
  1615. package/src/templates/antigravity-skills/postgres-best-practices/rules/data-batch-inserts.md +54 -0
  1616. package/src/templates/antigravity-skills/postgres-best-practices/rules/data-n-plus-one.md +53 -0
  1617. package/src/templates/antigravity-skills/postgres-best-practices/rules/data-pagination.md +50 -0
  1618. package/src/templates/antigravity-skills/postgres-best-practices/rules/data-upsert.md +50 -0
  1619. package/src/templates/antigravity-skills/postgres-best-practices/rules/lock-advisory.md +56 -0
  1620. package/src/templates/antigravity-skills/postgres-best-practices/rules/lock-deadlock-prevention.md +68 -0
  1621. package/src/templates/antigravity-skills/postgres-best-practices/rules/lock-short-transactions.md +50 -0
  1622. package/src/templates/antigravity-skills/postgres-best-practices/rules/lock-skip-locked.md +54 -0
  1623. package/src/templates/antigravity-skills/postgres-best-practices/rules/monitor-explain-analyze.md +45 -0
  1624. package/src/templates/antigravity-skills/postgres-best-practices/rules/monitor-pg-stat-statements.md +55 -0
  1625. package/src/templates/antigravity-skills/postgres-best-practices/rules/monitor-vacuum-analyze.md +55 -0
  1626. package/src/templates/antigravity-skills/postgres-best-practices/rules/query-composite-indexes.md +44 -0
  1627. package/src/templates/antigravity-skills/postgres-best-practices/rules/query-covering-indexes.md +40 -0
  1628. package/src/templates/antigravity-skills/postgres-best-practices/rules/query-index-types.md +45 -0
  1629. package/src/templates/antigravity-skills/postgres-best-practices/rules/query-missing-indexes.md +43 -0
  1630. package/src/templates/antigravity-skills/postgres-best-practices/rules/query-partial-indexes.md +45 -0
  1631. package/src/templates/antigravity-skills/postgres-best-practices/rules/schema-data-types.md +46 -0
  1632. package/src/templates/antigravity-skills/postgres-best-practices/rules/schema-foreign-key-indexes.md +59 -0
  1633. package/src/templates/antigravity-skills/postgres-best-practices/rules/schema-lowercase-identifiers.md +55 -0
  1634. package/src/templates/antigravity-skills/postgres-best-practices/rules/schema-partitioning.md +55 -0
  1635. package/src/templates/antigravity-skills/postgres-best-practices/rules/schema-primary-keys.md +61 -0
  1636. package/src/templates/antigravity-skills/postgres-best-practices/rules/security-privileges.md +54 -0
  1637. package/src/templates/antigravity-skills/postgres-best-practices/rules/security-rls-basics.md +50 -0
  1638. package/src/templates/antigravity-skills/postgres-best-practices/rules/security-rls-performance.md +57 -0
  1639. package/src/templates/antigravity-skills/powershell-windows/SKILL.md +167 -0
  1640. package/src/templates/antigravity-skills/pptx +1 -0
  1641. package/src/templates/antigravity-skills/pptx-official/LICENSE.txt +30 -0
  1642. package/src/templates/antigravity-skills/pptx-official/SKILL.md +484 -0
  1643. package/src/templates/antigravity-skills/pptx-official/html2pptx.md +625 -0
  1644. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  1645. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  1646. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  1647. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  1648. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  1649. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  1650. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  1651. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  1652. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  1653. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  1654. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  1655. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  1656. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  1657. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  1658. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  1659. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  1660. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  1661. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  1662. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  1663. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  1664. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  1665. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  1666. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  1667. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  1668. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  1669. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  1670. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  1671. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  1672. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  1673. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  1674. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  1675. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/mce/mc.xsd +75 -0
  1676. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  1677. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  1678. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  1679. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  1680. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  1681. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  1682. package/src/templates/antigravity-skills/pptx-official/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  1683. package/src/templates/antigravity-skills/pptx-official/ooxml/scripts/pack.py +159 -0
  1684. package/src/templates/antigravity-skills/pptx-official/ooxml/scripts/unpack.py +29 -0
  1685. package/src/templates/antigravity-skills/pptx-official/ooxml/scripts/validate.py +69 -0
  1686. package/src/templates/antigravity-skills/pptx-official/ooxml/scripts/validation/__init__.py +15 -0
  1687. package/src/templates/antigravity-skills/pptx-official/ooxml/scripts/validation/base.py +951 -0
  1688. package/src/templates/antigravity-skills/pptx-official/ooxml/scripts/validation/docx.py +274 -0
  1689. package/src/templates/antigravity-skills/pptx-official/ooxml/scripts/validation/pptx.py +315 -0
  1690. package/src/templates/antigravity-skills/pptx-official/ooxml/scripts/validation/redlining.py +279 -0
  1691. package/src/templates/antigravity-skills/pptx-official/ooxml.md +427 -0
  1692. package/src/templates/antigravity-skills/pptx-official/scripts/html2pptx.js +979 -0
  1693. package/src/templates/antigravity-skills/pptx-official/scripts/inventory.py +1020 -0
  1694. package/src/templates/antigravity-skills/pptx-official/scripts/rearrange.py +231 -0
  1695. package/src/templates/antigravity-skills/pptx-official/scripts/replace.py +385 -0
  1696. package/src/templates/antigravity-skills/pptx-official/scripts/thumbnail.py +450 -0
  1697. package/src/templates/antigravity-skills/pricing-strategy/SKILL.md +710 -0
  1698. package/src/templates/antigravity-skills/prisma-expert/SKILL.md +355 -0
  1699. package/src/templates/antigravity-skills/privilege-escalation-methods/SKILL.md +333 -0
  1700. package/src/templates/antigravity-skills/product-manager-toolkit/SKILL.md +351 -0
  1701. package/src/templates/antigravity-skills/product-manager-toolkit/references/prd_templates.md +317 -0
  1702. package/src/templates/antigravity-skills/product-manager-toolkit/scripts/customer_interview_analyzer.py +441 -0
  1703. package/src/templates/antigravity-skills/product-manager-toolkit/scripts/rice_prioritizer.py +296 -0
  1704. package/src/templates/antigravity-skills/production-code-audit/SKILL.md +540 -0
  1705. package/src/templates/antigravity-skills/programmatic-seo/SKILL.md +626 -0
  1706. package/src/templates/antigravity-skills/prompt-caching/SKILL.md +61 -0
  1707. package/src/templates/antigravity-skills/prompt-engineer/SKILL.md +93 -0
  1708. package/src/templates/antigravity-skills/prompt-engineering/SKILL.md +171 -0
  1709. package/src/templates/antigravity-skills/prompt-library/SKILL.md +322 -0
  1710. package/src/templates/antigravity-skills/python-patterns/SKILL.md +441 -0
  1711. package/src/templates/antigravity-skills/rag-engineer/SKILL.md +90 -0
  1712. package/src/templates/antigravity-skills/rag-implementation/SKILL.md +63 -0
  1713. package/src/templates/antigravity-skills/react-best-practices/AGENTS.md +2249 -0
  1714. package/src/templates/antigravity-skills/react-best-practices/README.md +123 -0
  1715. package/src/templates/antigravity-skills/react-best-practices/SKILL.md +121 -0
  1716. package/src/templates/antigravity-skills/react-best-practices/metadata.json +15 -0
  1717. package/src/templates/antigravity-skills/react-best-practices/rules/_sections.md +46 -0
  1718. package/src/templates/antigravity-skills/react-best-practices/rules/_template.md +28 -0
  1719. package/src/templates/antigravity-skills/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  1720. package/src/templates/antigravity-skills/react-best-practices/rules/advanced-use-latest.md +49 -0
  1721. package/src/templates/antigravity-skills/react-best-practices/rules/async-api-routes.md +38 -0
  1722. package/src/templates/antigravity-skills/react-best-practices/rules/async-defer-await.md +80 -0
  1723. package/src/templates/antigravity-skills/react-best-practices/rules/async-dependencies.md +36 -0
  1724. package/src/templates/antigravity-skills/react-best-practices/rules/async-parallel.md +28 -0
  1725. package/src/templates/antigravity-skills/react-best-practices/rules/async-suspense-boundaries.md +99 -0
  1726. package/src/templates/antigravity-skills/react-best-practices/rules/bundle-barrel-imports.md +59 -0
  1727. package/src/templates/antigravity-skills/react-best-practices/rules/bundle-conditional.md +31 -0
  1728. package/src/templates/antigravity-skills/react-best-practices/rules/bundle-defer-third-party.md +49 -0
  1729. package/src/templates/antigravity-skills/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  1730. package/src/templates/antigravity-skills/react-best-practices/rules/bundle-preload.md +50 -0
  1731. package/src/templates/antigravity-skills/react-best-practices/rules/client-event-listeners.md +74 -0
  1732. package/src/templates/antigravity-skills/react-best-practices/rules/client-swr-dedup.md +56 -0
  1733. package/src/templates/antigravity-skills/react-best-practices/rules/js-batch-dom-css.md +82 -0
  1734. package/src/templates/antigravity-skills/react-best-practices/rules/js-cache-function-results.md +80 -0
  1735. package/src/templates/antigravity-skills/react-best-practices/rules/js-cache-property-access.md +28 -0
  1736. package/src/templates/antigravity-skills/react-best-practices/rules/js-cache-storage.md +70 -0
  1737. package/src/templates/antigravity-skills/react-best-practices/rules/js-combine-iterations.md +32 -0
  1738. package/src/templates/antigravity-skills/react-best-practices/rules/js-early-exit.md +50 -0
  1739. package/src/templates/antigravity-skills/react-best-practices/rules/js-hoist-regexp.md +45 -0
  1740. package/src/templates/antigravity-skills/react-best-practices/rules/js-index-maps.md +37 -0
  1741. package/src/templates/antigravity-skills/react-best-practices/rules/js-length-check-first.md +49 -0
  1742. package/src/templates/antigravity-skills/react-best-practices/rules/js-min-max-loop.md +82 -0
  1743. package/src/templates/antigravity-skills/react-best-practices/rules/js-set-map-lookups.md +24 -0
  1744. package/src/templates/antigravity-skills/react-best-practices/rules/js-tosorted-immutable.md +57 -0
  1745. package/src/templates/antigravity-skills/react-best-practices/rules/rendering-activity.md +26 -0
  1746. package/src/templates/antigravity-skills/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  1747. package/src/templates/antigravity-skills/react-best-practices/rules/rendering-conditional-render.md +40 -0
  1748. package/src/templates/antigravity-skills/react-best-practices/rules/rendering-content-visibility.md +38 -0
  1749. package/src/templates/antigravity-skills/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  1750. package/src/templates/antigravity-skills/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  1751. package/src/templates/antigravity-skills/react-best-practices/rules/rendering-svg-precision.md +28 -0
  1752. package/src/templates/antigravity-skills/react-best-practices/rules/rerender-defer-reads.md +39 -0
  1753. package/src/templates/antigravity-skills/react-best-practices/rules/rerender-dependencies.md +45 -0
  1754. package/src/templates/antigravity-skills/react-best-practices/rules/rerender-derived-state.md +29 -0
  1755. package/src/templates/antigravity-skills/react-best-practices/rules/rerender-functional-setstate.md +74 -0
  1756. package/src/templates/antigravity-skills/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  1757. package/src/templates/antigravity-skills/react-best-practices/rules/rerender-memo.md +44 -0
  1758. package/src/templates/antigravity-skills/react-best-practices/rules/rerender-transitions.md +40 -0
  1759. package/src/templates/antigravity-skills/react-best-practices/rules/server-after-nonblocking.md +73 -0
  1760. package/src/templates/antigravity-skills/react-best-practices/rules/server-cache-lru.md +41 -0
  1761. package/src/templates/antigravity-skills/react-best-practices/rules/server-cache-react.md +26 -0
  1762. package/src/templates/antigravity-skills/react-best-practices/rules/server-parallel-fetching.md +79 -0
  1763. package/src/templates/antigravity-skills/react-best-practices/rules/server-serialization.md +38 -0
  1764. package/src/templates/antigravity-skills/react-patterns/SKILL.md +198 -0
  1765. package/src/templates/antigravity-skills/react-ui-patterns/SKILL.md +289 -0
  1766. package/src/templates/antigravity-skills/receiving-code-review/SKILL.md +213 -0
  1767. package/src/templates/antigravity-skills/red-team-tactics/SKILL.md +199 -0
  1768. package/src/templates/antigravity-skills/red-team-tools/SKILL.md +310 -0
  1769. package/src/templates/antigravity-skills/referral-program/SKILL.md +602 -0
  1770. package/src/templates/antigravity-skills/remotion-best-practices/SKILL.md +45 -0
  1771. package/src/templates/antigravity-skills/remotion-best-practices/rules/3d.md +86 -0
  1772. package/src/templates/antigravity-skills/remotion-best-practices/rules/animations.md +29 -0
  1773. package/src/templates/antigravity-skills/remotion-best-practices/rules/assets/charts-bar-chart.tsx +173 -0
  1774. package/src/templates/antigravity-skills/remotion-best-practices/rules/assets/text-animations-typewriter.tsx +100 -0
  1775. package/src/templates/antigravity-skills/remotion-best-practices/rules/assets/text-animations-word-highlight.tsx +108 -0
  1776. package/src/templates/antigravity-skills/remotion-best-practices/rules/assets.md +78 -0
  1777. package/src/templates/antigravity-skills/remotion-best-practices/rules/audio.md +172 -0
  1778. package/src/templates/antigravity-skills/remotion-best-practices/rules/calculate-metadata.md +104 -0
  1779. package/src/templates/antigravity-skills/remotion-best-practices/rules/can-decode.md +75 -0
  1780. package/src/templates/antigravity-skills/remotion-best-practices/rules/charts.md +58 -0
  1781. package/src/templates/antigravity-skills/remotion-best-practices/rules/compositions.md +146 -0
  1782. package/src/templates/antigravity-skills/remotion-best-practices/rules/display-captions.md +126 -0
  1783. package/src/templates/antigravity-skills/remotion-best-practices/rules/extract-frames.md +229 -0
  1784. package/src/templates/antigravity-skills/remotion-best-practices/rules/fonts.md +152 -0
  1785. package/src/templates/antigravity-skills/remotion-best-practices/rules/get-audio-duration.md +58 -0
  1786. package/src/templates/antigravity-skills/remotion-best-practices/rules/get-video-dimensions.md +68 -0
  1787. package/src/templates/antigravity-skills/remotion-best-practices/rules/get-video-duration.md +58 -0
  1788. package/src/templates/antigravity-skills/remotion-best-practices/rules/gifs.md +138 -0
  1789. package/src/templates/antigravity-skills/remotion-best-practices/rules/images.md +130 -0
  1790. package/src/templates/antigravity-skills/remotion-best-practices/rules/import-srt-captions.md +67 -0
  1791. package/src/templates/antigravity-skills/remotion-best-practices/rules/lottie.md +68 -0
  1792. package/src/templates/antigravity-skills/remotion-best-practices/rules/measuring-dom-nodes.md +35 -0
  1793. package/src/templates/antigravity-skills/remotion-best-practices/rules/measuring-text.md +143 -0
  1794. package/src/templates/antigravity-skills/remotion-best-practices/rules/sequencing.md +106 -0
  1795. package/src/templates/antigravity-skills/remotion-best-practices/rules/tailwind.md +11 -0
  1796. package/src/templates/antigravity-skills/remotion-best-practices/rules/text-animations.md +20 -0
  1797. package/src/templates/antigravity-skills/remotion-best-practices/rules/timing.md +179 -0
  1798. package/src/templates/antigravity-skills/remotion-best-practices/rules/transcribe-captions.md +19 -0
  1799. package/src/templates/antigravity-skills/remotion-best-practices/rules/transitions.md +122 -0
  1800. package/src/templates/antigravity-skills/remotion-best-practices/rules/trimming.md +53 -0
  1801. package/src/templates/antigravity-skills/remotion-best-practices/rules/videos.md +171 -0
  1802. package/src/templates/antigravity-skills/requesting-code-review/SKILL.md +105 -0
  1803. package/src/templates/antigravity-skills/requesting-code-review/code-reviewer.md +146 -0
  1804. package/src/templates/antigravity-skills/research-engineer/SKILL.md +135 -0
  1805. package/src/templates/antigravity-skills/salesforce-development/SKILL.md +51 -0
  1806. package/src/templates/antigravity-skills/scanning-tools/SKILL.md +589 -0
  1807. package/src/templates/antigravity-skills/schema-markup/SKILL.md +596 -0
  1808. package/src/templates/antigravity-skills/scroll-experience/SKILL.md +263 -0
  1809. package/src/templates/antigravity-skills/segment-cdp/SKILL.md +50 -0
  1810. package/src/templates/antigravity-skills/senior-architect/SKILL.md +209 -0
  1811. package/src/templates/antigravity-skills/senior-architect/references/architecture_patterns.md +103 -0
  1812. package/src/templates/antigravity-skills/senior-architect/references/system_design_workflows.md +103 -0
  1813. package/src/templates/antigravity-skills/senior-architect/references/tech_decision_guide.md +103 -0
  1814. package/src/templates/antigravity-skills/senior-architect/scripts/architecture_diagram_generator.py +114 -0
  1815. package/src/templates/antigravity-skills/senior-architect/scripts/dependency_analyzer.py +114 -0
  1816. package/src/templates/antigravity-skills/senior-architect/scripts/project_architect.py +114 -0
  1817. package/src/templates/antigravity-skills/senior-fullstack/SKILL.md +209 -0
  1818. package/src/templates/antigravity-skills/senior-fullstack/references/architecture_patterns.md +103 -0
  1819. package/src/templates/antigravity-skills/senior-fullstack/references/development_workflows.md +103 -0
  1820. package/src/templates/antigravity-skills/senior-fullstack/references/tech_stack_guide.md +103 -0
  1821. package/src/templates/antigravity-skills/senior-fullstack/scripts/code_quality_analyzer.py +114 -0
  1822. package/src/templates/antigravity-skills/senior-fullstack/scripts/fullstack_scaffolder.py +114 -0
  1823. package/src/templates/antigravity-skills/senior-fullstack/scripts/project_scaffolder.py +114 -0
  1824. package/src/templates/antigravity-skills/seo-audit/SKILL.md +384 -0
  1825. package/src/templates/antigravity-skills/seo-fundamentals/SKILL.md +129 -0
  1826. package/src/templates/antigravity-skills/seo-fundamentals/scripts/seo_checker.py +219 -0
  1827. package/src/templates/antigravity-skills/server-management/SKILL.md +161 -0
  1828. package/src/templates/antigravity-skills/shodan-reconnaissance/SKILL.md +503 -0
  1829. package/src/templates/antigravity-skills/shopify-apps/SKILL.md +42 -0
  1830. package/src/templates/antigravity-skills/shopify-development/README.md +60 -0
  1831. package/src/templates/antigravity-skills/shopify-development/SKILL.md +366 -0
  1832. package/src/templates/antigravity-skills/shopify-development/references/app-development.md +578 -0
  1833. package/src/templates/antigravity-skills/shopify-development/references/extensions.md +555 -0
  1834. package/src/templates/antigravity-skills/shopify-development/references/themes.md +498 -0
  1835. package/src/templates/antigravity-skills/shopify-development/scripts/requirements.txt +19 -0
  1836. package/src/templates/antigravity-skills/shopify-development/scripts/shopify_graphql.py +428 -0
  1837. package/src/templates/antigravity-skills/shopify-development/scripts/shopify_init.py +441 -0
  1838. package/src/templates/antigravity-skills/shopify-development/scripts/tests/test_shopify_init.py +379 -0
  1839. package/src/templates/antigravity-skills/signup-flow-cro/SKILL.md +355 -0
  1840. package/src/templates/antigravity-skills/skill-creator/LICENSE.txt +202 -0
  1841. package/src/templates/antigravity-skills/skill-creator/SKILL.md +356 -0
  1842. package/src/templates/antigravity-skills/skill-creator/references/output-patterns.md +82 -0
  1843. package/src/templates/antigravity-skills/skill-creator/references/workflows.md +28 -0
  1844. package/src/templates/antigravity-skills/skill-creator/scripts/init_skill.py +303 -0
  1845. package/src/templates/antigravity-skills/skill-creator/scripts/package_skill.py +110 -0
  1846. package/src/templates/antigravity-skills/skill-creator/scripts/quick_validate.py +95 -0
  1847. package/src/templates/antigravity-skills/skill-developer/ADVANCED.md +197 -0
  1848. package/src/templates/antigravity-skills/skill-developer/HOOK_MECHANISMS.md +306 -0
  1849. package/src/templates/antigravity-skills/skill-developer/PATTERNS_LIBRARY.md +152 -0
  1850. package/src/templates/antigravity-skills/skill-developer/SKILL.md +426 -0
  1851. package/src/templates/antigravity-skills/skill-developer/SKILL_RULES_REFERENCE.md +315 -0
  1852. package/src/templates/antigravity-skills/skill-developer/TRIGGER_TYPES.md +305 -0
  1853. package/src/templates/antigravity-skills/skill-developer/TROUBLESHOOTING.md +514 -0
  1854. package/src/templates/antigravity-skills/slack-bot-builder/SKILL.md +264 -0
  1855. package/src/templates/antigravity-skills/slack-gif-creator/LICENSE.txt +202 -0
  1856. package/src/templates/antigravity-skills/slack-gif-creator/SKILL.md +254 -0
  1857. package/src/templates/antigravity-skills/slack-gif-creator/core/easing.py +234 -0
  1858. package/src/templates/antigravity-skills/slack-gif-creator/core/frame_composer.py +176 -0
  1859. package/src/templates/antigravity-skills/slack-gif-creator/core/gif_builder.py +269 -0
  1860. package/src/templates/antigravity-skills/slack-gif-creator/core/validators.py +136 -0
  1861. package/src/templates/antigravity-skills/slack-gif-creator/requirements.txt +4 -0
  1862. package/src/templates/antigravity-skills/smtp-penetration-testing/SKILL.md +500 -0
  1863. package/src/templates/antigravity-skills/social-content/SKILL.md +807 -0
  1864. package/src/templates/antigravity-skills/software-architecture/SKILL.md +75 -0
  1865. package/src/templates/antigravity-skills/sql-injection-testing/SKILL.md +448 -0
  1866. package/src/templates/antigravity-skills/sqlmap-database-pentesting/SKILL.md +400 -0
  1867. package/src/templates/antigravity-skills/ssh-penetration-testing/SKILL.md +488 -0
  1868. package/src/templates/antigravity-skills/stripe-integration/SKILL.md +69 -0
  1869. package/src/templates/antigravity-skills/subagent-driven-development/SKILL.md +240 -0
  1870. package/src/templates/antigravity-skills/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
  1871. package/src/templates/antigravity-skills/subagent-driven-development/implementer-prompt.md +78 -0
  1872. package/src/templates/antigravity-skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  1873. package/src/templates/antigravity-skills/systematic-debugging/CREATION-LOG.md +119 -0
  1874. package/src/templates/antigravity-skills/systematic-debugging/SKILL.md +296 -0
  1875. package/src/templates/antigravity-skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  1876. package/src/templates/antigravity-skills/systematic-debugging/condition-based-waiting.md +115 -0
  1877. package/src/templates/antigravity-skills/systematic-debugging/defense-in-depth.md +122 -0
  1878. package/src/templates/antigravity-skills/systematic-debugging/find-polluter.sh +63 -0
  1879. package/src/templates/antigravity-skills/systematic-debugging/root-cause-tracing.md +169 -0
  1880. package/src/templates/antigravity-skills/systematic-debugging/test-academic.md +14 -0
  1881. package/src/templates/antigravity-skills/systematic-debugging/test-pressure-1.md +58 -0
  1882. package/src/templates/antigravity-skills/systematic-debugging/test-pressure-2.md +68 -0
  1883. package/src/templates/antigravity-skills/systematic-debugging/test-pressure-3.md +69 -0
  1884. package/src/templates/antigravity-skills/tailwind-patterns/SKILL.md +269 -0
  1885. package/src/templates/antigravity-skills/tavily-web/SKILL.md +36 -0
  1886. package/src/templates/antigravity-skills/tdd-workflow/SKILL.md +149 -0
  1887. package/src/templates/antigravity-skills/telegram-bot-builder/SKILL.md +254 -0
  1888. package/src/templates/antigravity-skills/telegram-mini-app/SKILL.md +279 -0
  1889. package/src/templates/antigravity-skills/test-driven-development/SKILL.md +371 -0
  1890. package/src/templates/antigravity-skills/test-driven-development/testing-anti-patterns.md +299 -0
  1891. package/src/templates/antigravity-skills/test-fixing/SKILL.md +119 -0
  1892. package/src/templates/antigravity-skills/testing-patterns/SKILL.md +259 -0
  1893. package/src/templates/antigravity-skills/theme-factory/LICENSE.txt +202 -0
  1894. package/src/templates/antigravity-skills/theme-factory/SKILL.md +59 -0
  1895. package/src/templates/antigravity-skills/theme-factory/theme-showcase.pdf +0 -0
  1896. package/src/templates/antigravity-skills/theme-factory/themes/arctic-frost.md +19 -0
  1897. package/src/templates/antigravity-skills/theme-factory/themes/botanical-garden.md +19 -0
  1898. package/src/templates/antigravity-skills/theme-factory/themes/desert-rose.md +19 -0
  1899. package/src/templates/antigravity-skills/theme-factory/themes/forest-canopy.md +19 -0
  1900. package/src/templates/antigravity-skills/theme-factory/themes/golden-hour.md +19 -0
  1901. package/src/templates/antigravity-skills/theme-factory/themes/midnight-galaxy.md +19 -0
  1902. package/src/templates/antigravity-skills/theme-factory/themes/modern-minimalist.md +19 -0
  1903. package/src/templates/antigravity-skills/theme-factory/themes/ocean-depths.md +19 -0
  1904. package/src/templates/antigravity-skills/theme-factory/themes/sunset-boulevard.md +19 -0
  1905. package/src/templates/antigravity-skills/theme-factory/themes/tech-innovation.md +19 -0
  1906. package/src/templates/antigravity-skills/top-web-vulnerabilities/SKILL.md +543 -0
  1907. package/src/templates/antigravity-skills/trigger-dev/SKILL.md +67 -0
  1908. package/src/templates/antigravity-skills/twilio-communications/SKILL.md +295 -0
  1909. package/src/templates/antigravity-skills/typescript-expert/SKILL.md +429 -0
  1910. package/src/templates/antigravity-skills/typescript-expert/references/tsconfig-strict.json +92 -0
  1911. package/src/templates/antigravity-skills/typescript-expert/references/typescript-cheatsheet.md +383 -0
  1912. package/src/templates/antigravity-skills/typescript-expert/references/utility-types.ts +335 -0
  1913. package/src/templates/antigravity-skills/typescript-expert/scripts/ts_diagnostic.py +203 -0
  1914. package/src/templates/antigravity-skills/ui-ux-pro-max/SKILL.md +351 -0
  1915. package/src/templates/antigravity-skills/ui-ux-pro-max/data/charts.csv +26 -0
  1916. package/src/templates/antigravity-skills/ui-ux-pro-max/data/colors.csv +97 -0
  1917. package/src/templates/antigravity-skills/ui-ux-pro-max/data/icons.csv +101 -0
  1918. package/src/templates/antigravity-skills/ui-ux-pro-max/data/landing.csv +31 -0
  1919. package/src/templates/antigravity-skills/ui-ux-pro-max/data/products.csv +97 -0
  1920. package/src/templates/antigravity-skills/ui-ux-pro-max/data/prompts.csv +24 -0
  1921. package/src/templates/antigravity-skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  1922. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  1923. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  1924. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  1925. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  1926. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  1927. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  1928. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  1929. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  1930. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  1931. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  1932. package/src/templates/antigravity-skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  1933. package/src/templates/antigravity-skills/ui-ux-pro-max/data/styles.csv +59 -0
  1934. package/src/templates/antigravity-skills/ui-ux-pro-max/data/typography.csv +58 -0
  1935. package/src/templates/antigravity-skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  1936. package/src/templates/antigravity-skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  1937. package/src/templates/antigravity-skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  1938. package/src/templates/antigravity-skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-314.pyc +0 -0
  1939. package/src/templates/antigravity-skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-314.pyc +0 -0
  1940. package/src/templates/antigravity-skills/ui-ux-pro-max/scripts/core.py +257 -0
  1941. package/src/templates/antigravity-skills/ui-ux-pro-max/scripts/design_system.py +487 -0
  1942. package/src/templates/antigravity-skills/ui-ux-pro-max/scripts/search.py +76 -0
  1943. package/src/templates/antigravity-skills/upstash-qstash/SKILL.md +68 -0
  1944. package/src/templates/antigravity-skills/using-git-worktrees/SKILL.md +217 -0
  1945. package/src/templates/antigravity-skills/using-superpowers/SKILL.md +87 -0
  1946. package/src/templates/antigravity-skills/vercel-deployment/SKILL.md +69 -0
  1947. package/src/templates/antigravity-skills/verification-before-completion/SKILL.md +139 -0
  1948. package/src/templates/antigravity-skills/viral-generator-builder/SKILL.md +199 -0
  1949. package/src/templates/antigravity-skills/voice-agents/SKILL.md +68 -0
  1950. package/src/templates/antigravity-skills/voice-ai-development/SKILL.md +302 -0
  1951. package/src/templates/antigravity-skills/vulnerability-scanner/SKILL.md +276 -0
  1952. package/src/templates/antigravity-skills/vulnerability-scanner/checklists.md +121 -0
  1953. package/src/templates/antigravity-skills/vulnerability-scanner/scripts/security_scan.py +458 -0
  1954. package/src/templates/antigravity-skills/web-artifacts-builder/LICENSE.txt +202 -0
  1955. package/src/templates/antigravity-skills/web-artifacts-builder/SKILL.md +74 -0
  1956. package/src/templates/antigravity-skills/web-artifacts-builder/scripts/bundle-artifact.sh +54 -0
  1957. package/src/templates/antigravity-skills/web-artifacts-builder/scripts/init-artifact.sh +322 -0
  1958. package/src/templates/antigravity-skills/web-artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
  1959. package/src/templates/antigravity-skills/web-design-guidelines/SKILL.md +36 -0
  1960. package/src/templates/antigravity-skills/web-performance-optimization/SKILL.md +646 -0
  1961. package/src/templates/antigravity-skills/webapp-testing/LICENSE.txt +202 -0
  1962. package/src/templates/antigravity-skills/webapp-testing/SKILL.md +96 -0
  1963. package/src/templates/antigravity-skills/webapp-testing/scripts/with_server.py +106 -0
  1964. package/src/templates/antigravity-skills/windows-privilege-escalation/SKILL.md +496 -0
  1965. package/src/templates/antigravity-skills/wireshark-analysis/SKILL.md +497 -0
  1966. package/src/templates/antigravity-skills/wordpress-penetration-testing/SKILL.md +485 -0
  1967. package/src/templates/antigravity-skills/workflow-automation/SKILL.md +68 -0
  1968. package/src/templates/antigravity-skills/writing-plans/SKILL.md +116 -0
  1969. package/src/templates/antigravity-skills/writing-skills/SKILL.md +737 -0
  1970. package/src/templates/antigravity-skills/writing-skills/anthropic-best-practices.md +1150 -0
  1971. package/src/templates/antigravity-skills/writing-skills/graphviz-conventions.dot +172 -0
  1972. package/src/templates/antigravity-skills/writing-skills/persuasion-principles.md +187 -0
  1973. package/src/templates/antigravity-skills/writing-skills/render-graphs.js +168 -0
  1974. package/src/templates/antigravity-skills/writing-skills/testing-skills-with-subagents.md +384 -0
  1975. package/src/templates/antigravity-skills/xlsx +1 -0
  1976. package/src/templates/antigravity-skills/xlsx-official/LICENSE.txt +30 -0
  1977. package/src/templates/antigravity-skills/xlsx-official/SKILL.md +289 -0
  1978. package/src/templates/antigravity-skills/xlsx-official/recalc.py +178 -0
  1979. package/src/templates/antigravity-skills/xss-html-injection/SKILL.md +499 -0
  1980. package/src/templates/antigravity-skills/zapier-make-patterns/SKILL.md +67 -0
  1981. package/src/templates/antigravity-skills-index.json +1508 -0
@@ -0,0 +1,1490 @@
1
+ # Postgres Best Practices
2
+
3
+ **Version 1.0.0**
4
+ Supabase
5
+ January 2026
6
+
7
+ > This document is optimized for AI agents and LLMs. Rules are prioritized by performance impact.
8
+
9
+ ---
10
+
11
+ ## Abstract
12
+
13
+ Comprehensive Postgres performance optimization guide for developers using Supabase and Postgres. Contains performance rules across 8 categories, prioritized by impact from critical (query performance, connection management) to incremental (advanced features). Each rule includes detailed explanations, incorrect vs. correct SQL examples, query plan analysis, and specific performance metrics to guide automated optimization and code generation.
14
+
15
+ ---
16
+
17
+ ## Table of Contents
18
+
19
+ 1. [Query Performance](#query-performance) - **CRITICAL**
20
+ - 1.1 [Add Indexes on WHERE and JOIN Columns](#11-add-indexes-on-where-and-join-columns)
21
+ - 1.2 [Choose the Right Index Type for Your Data](#12-choose-the-right-index-type-for-your-data)
22
+ - 1.3 [Create Composite Indexes for Multi-Column Queries](#13-create-composite-indexes-for-multi-column-queries)
23
+ - 1.4 [Use Covering Indexes to Avoid Table Lookups](#14-use-covering-indexes-to-avoid-table-lookups)
24
+ - 1.5 [Use Partial Indexes for Filtered Queries](#15-use-partial-indexes-for-filtered-queries)
25
+
26
+ 2. [Connection Management](#connection-management) - **CRITICAL**
27
+ - 2.1 [Configure Idle Connection Timeouts](#21-configure-idle-connection-timeouts)
28
+ - 2.2 [Set Appropriate Connection Limits](#22-set-appropriate-connection-limits)
29
+ - 2.3 [Use Connection Pooling for All Applications](#23-use-connection-pooling-for-all-applications)
30
+ - 2.4 [Use Prepared Statements Correctly with Pooling](#24-use-prepared-statements-correctly-with-pooling)
31
+
32
+ 3. [Security & RLS](#security-rls) - **CRITICAL**
33
+ - 3.1 [Apply Principle of Least Privilege](#31-apply-principle-of-least-privilege)
34
+ - 3.2 [Enable Row Level Security for Multi-Tenant Data](#32-enable-row-level-security-for-multi-tenant-data)
35
+ - 3.3 [Optimize RLS Policies for Performance](#33-optimize-rls-policies-for-performance)
36
+
37
+ 4. [Schema Design](#schema-design) - **HIGH**
38
+ - 4.1 [Choose Appropriate Data Types](#41-choose-appropriate-data-types)
39
+ - 4.2 [Index Foreign Key Columns](#42-index-foreign-key-columns)
40
+ - 4.3 [Partition Large Tables for Better Performance](#43-partition-large-tables-for-better-performance)
41
+ - 4.4 [Select Optimal Primary Key Strategy](#44-select-optimal-primary-key-strategy)
42
+ - 4.5 [Use Lowercase Identifiers for Compatibility](#45-use-lowercase-identifiers-for-compatibility)
43
+
44
+ 5. [Concurrency & Locking](#concurrency-locking) - **MEDIUM-HIGH**
45
+ - 5.1 [Keep Transactions Short to Reduce Lock Contention](#51-keep-transactions-short-to-reduce-lock-contention)
46
+ - 5.2 [Prevent Deadlocks with Consistent Lock Ordering](#52-prevent-deadlocks-with-consistent-lock-ordering)
47
+ - 5.3 [Use Advisory Locks for Application-Level Locking](#53-use-advisory-locks-for-application-level-locking)
48
+ - 5.4 [Use SKIP LOCKED for Non-Blocking Queue Processing](#54-use-skip-locked-for-non-blocking-queue-processing)
49
+
50
+ 6. [Data Access Patterns](#data-access-patterns) - **MEDIUM**
51
+ - 6.1 [Batch INSERT Statements for Bulk Data](#61-batch-insert-statements-for-bulk-data)
52
+ - 6.2 [Eliminate N+1 Queries with Batch Loading](#62-eliminate-n1-queries-with-batch-loading)
53
+ - 6.3 [Use Cursor-Based Pagination Instead of OFFSET](#63-use-cursor-based-pagination-instead-of-offset)
54
+ - 6.4 [Use UPSERT for Insert-or-Update Operations](#64-use-upsert-for-insert-or-update-operations)
55
+
56
+ 7. [Monitoring & Diagnostics](#monitoring-diagnostics) - **LOW-MEDIUM**
57
+ - 7.1 [Enable pg_stat_statements for Query Analysis](#71-enable-pgstatstatements-for-query-analysis)
58
+ - 7.2 [Maintain Table Statistics with VACUUM and ANALYZE](#72-maintain-table-statistics-with-vacuum-and-analyze)
59
+ - 7.3 [Use EXPLAIN ANALYZE to Diagnose Slow Queries](#73-use-explain-analyze-to-diagnose-slow-queries)
60
+
61
+ 8. [Advanced Features](#advanced-features) - **LOW**
62
+ - 8.1 [Index JSONB Columns for Efficient Querying](#81-index-jsonb-columns-for-efficient-querying)
63
+ - 8.2 [Use tsvector for Full-Text Search](#82-use-tsvector-for-full-text-search)
64
+
65
+ ---
66
+
67
+ ## 1. Query Performance
68
+
69
+ **Impact: CRITICAL**
70
+
71
+ Slow queries, missing indexes, inefficient query plans. The most common source of Postgres performance issues.
72
+
73
+ ### 1.1 Add Indexes on WHERE and JOIN Columns
74
+
75
+ **Impact: CRITICAL (100-1000x faster queries on large tables)**
76
+
77
+ Queries filtering or joining on unindexed columns cause full table scans, which become exponentially slower as tables grow.
78
+
79
+ **Incorrect (sequential scan on large table):**
80
+
81
+ ```sql
82
+ -- No index on customer_id causes full table scan
83
+ select * from orders where customer_id = 123;
84
+
85
+ -- EXPLAIN shows: Seq Scan on orders (cost=0.00..25000.00 rows=100 width=85)
86
+ ```
87
+
88
+ **Correct (index scan):**
89
+
90
+ ```sql
91
+ -- Create index on frequently filtered column
92
+ create index orders_customer_id_idx on orders (customer_id);
93
+
94
+ select * from orders where customer_id = 123;
95
+
96
+ -- EXPLAIN shows: Index Scan using orders_customer_id_idx (cost=0.42..8.44 rows=100 width=85)
97
+ -- Index the referencing column
98
+ create index orders_customer_id_idx on orders (customer_id);
99
+
100
+ select c.name, o.total
101
+ from customers c
102
+ join orders o on o.customer_id = c.id;
103
+ ```
104
+
105
+ For JOIN columns, always index the foreign key side:
106
+
107
+ Reference: https://supabase.com/docs/guides/database/query-optimization
108
+
109
+ ---
110
+
111
+ ### 1.2 Choose the Right Index Type for Your Data
112
+
113
+ **Impact: HIGH (10-100x improvement with correct index type)**
114
+
115
+ Different index types excel at different query patterns. The default B-tree isn't always optimal.
116
+
117
+ **Incorrect (B-tree for JSONB containment):**
118
+
119
+ ```sql
120
+ -- B-tree cannot optimize containment operators
121
+ create index products_attrs_idx on products (attributes);
122
+ select * from products where attributes @> '{"color": "red"}';
123
+ -- Full table scan - B-tree doesn't support @> operator
124
+ ```
125
+
126
+ **Correct (GIN for JSONB):**
127
+
128
+ ```sql
129
+ -- GIN supports @>, ?, ?&, ?| operators
130
+ create index products_attrs_idx on products using gin (attributes);
131
+ select * from products where attributes @> '{"color": "red"}';
132
+ -- B-tree (default): =, <, >, BETWEEN, IN, IS NULL
133
+ create index users_created_idx on users (created_at);
134
+
135
+ -- GIN: arrays, JSONB, full-text search
136
+ create index posts_tags_idx on posts using gin (tags);
137
+
138
+ -- BRIN: large time-series tables (10-100x smaller)
139
+ create index events_time_idx on events using brin (created_at);
140
+
141
+ -- Hash: equality-only (slightly faster than B-tree for =)
142
+ create index sessions_token_idx on sessions using hash (token);
143
+ ```
144
+
145
+ Index type guide:
146
+
147
+ Reference: https://www.postgresql.org/docs/current/indexes-types.html
148
+
149
+ ---
150
+
151
+ ### 1.3 Create Composite Indexes for Multi-Column Queries
152
+
153
+ **Impact: HIGH (5-10x faster multi-column queries)**
154
+
155
+ When queries filter on multiple columns, a composite index is more efficient than separate single-column indexes.
156
+
157
+ **Incorrect (separate indexes require bitmap scan):**
158
+
159
+ ```sql
160
+ -- Two separate indexes
161
+ create index orders_status_idx on orders (status);
162
+ create index orders_created_idx on orders (created_at);
163
+
164
+ -- Query must combine both indexes (slower)
165
+ select * from orders where status = 'pending' and created_at > '2024-01-01';
166
+ ```
167
+
168
+ **Correct (composite index):**
169
+
170
+ ```sql
171
+ -- Single composite index (leftmost column first for equality checks)
172
+ create index orders_status_created_idx on orders (status, created_at);
173
+
174
+ -- Query uses one efficient index scan
175
+ select * from orders where status = 'pending' and created_at > '2024-01-01';
176
+ -- Good: status (=) before created_at (>)
177
+ create index idx on orders (status, created_at);
178
+
179
+ -- Works for: WHERE status = 'pending'
180
+ -- Works for: WHERE status = 'pending' AND created_at > '2024-01-01'
181
+ -- Does NOT work for: WHERE created_at > '2024-01-01' (leftmost prefix rule)
182
+ ```
183
+
184
+ **Column order matters** - place equality columns first, range columns last:
185
+
186
+ Reference: https://www.postgresql.org/docs/current/indexes-multicolumn.html
187
+
188
+ ---
189
+
190
+ ### 1.4 Use Covering Indexes to Avoid Table Lookups
191
+
192
+ **Impact: MEDIUM-HIGH (2-5x faster queries by eliminating heap fetches)**
193
+
194
+ Covering indexes include all columns needed by a query, enabling index-only scans that skip the table entirely.
195
+
196
+ **Incorrect (index scan + heap fetch):**
197
+
198
+ ```sql
199
+ create index users_email_idx on users (email);
200
+
201
+ -- Must fetch name and created_at from table heap
202
+ select email, name, created_at from users where email = 'user@example.com';
203
+ ```
204
+
205
+ **Correct (index-only scan with INCLUDE):**
206
+
207
+ ```sql
208
+ -- Include non-searchable columns in the index
209
+ create index users_email_idx on users (email) include (name, created_at);
210
+
211
+ -- All columns served from index, no table access needed
212
+ select email, name, created_at from users where email = 'user@example.com';
213
+ -- Searching by status, but also need customer_id and total
214
+ create index orders_status_idx on orders (status) include (customer_id, total);
215
+
216
+ select status, customer_id, total from orders where status = 'shipped';
217
+ ```
218
+
219
+ Use INCLUDE for columns you SELECT but don't filter on:
220
+
221
+ Reference: https://www.postgresql.org/docs/current/indexes-index-only-scans.html
222
+
223
+ ---
224
+
225
+ ### 1.5 Use Partial Indexes for Filtered Queries
226
+
227
+ **Impact: HIGH (5-20x smaller indexes, faster writes and queries)**
228
+
229
+ Partial indexes only include rows matching a WHERE condition, making them smaller and faster when queries consistently filter on the same condition.
230
+
231
+ **Incorrect (full index includes irrelevant rows):**
232
+
233
+ ```sql
234
+ -- Index includes all rows, even soft-deleted ones
235
+ create index users_email_idx on users (email);
236
+
237
+ -- Query always filters active users
238
+ select * from users where email = 'user@example.com' and deleted_at is null;
239
+ ```
240
+
241
+ **Correct (partial index matches query filter):**
242
+
243
+ ```sql
244
+ -- Index only includes active users
245
+ create index users_active_email_idx on users (email)
246
+ where deleted_at is null;
247
+
248
+ -- Query uses the smaller, faster index
249
+ select * from users where email = 'user@example.com' and deleted_at is null;
250
+ -- Only pending orders (status rarely changes once completed)
251
+ create index orders_pending_idx on orders (created_at)
252
+ where status = 'pending';
253
+
254
+ -- Only non-null values
255
+ create index products_sku_idx on products (sku)
256
+ where sku is not null;
257
+ ```
258
+
259
+ Common use cases for partial indexes:
260
+
261
+ Reference: https://www.postgresql.org/docs/current/indexes-partial.html
262
+
263
+ ---
264
+
265
+ ## 2. Connection Management
266
+
267
+ **Impact: CRITICAL**
268
+
269
+ Connection pooling, limits, and serverless strategies. Critical for applications with high concurrency or serverless deployments.
270
+
271
+ ### 2.1 Configure Idle Connection Timeouts
272
+
273
+ **Impact: HIGH (Reclaim 30-50% of connection slots from idle clients)**
274
+
275
+ Idle connections waste resources. Configure timeouts to automatically reclaim them.
276
+
277
+ **Incorrect (connections held indefinitely):**
278
+
279
+ ```sql
280
+ -- No timeout configured
281
+ show idle_in_transaction_session_timeout; -- 0 (disabled)
282
+
283
+ -- Connections stay open forever, even when idle
284
+ select pid, state, state_change, query
285
+ from pg_stat_activity
286
+ where state = 'idle in transaction';
287
+ -- Shows transactions idle for hours, holding locks
288
+ ```
289
+
290
+ **Correct (automatic cleanup of idle connections):**
291
+
292
+ ```ini
293
+ -- Terminate connections idle in transaction after 30 seconds
294
+ alter system set idle_in_transaction_session_timeout = '30s';
295
+
296
+ -- Terminate completely idle connections after 10 minutes
297
+ alter system set idle_session_timeout = '10min';
298
+
299
+ -- Reload configuration
300
+ select pg_reload_conf();
301
+ # pgbouncer.ini
302
+ server_idle_timeout = 60
303
+ client_idle_timeout = 300
304
+ ```
305
+
306
+ For pooled connections, configure at the pooler level:
307
+
308
+ Reference: https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-IDLE-IN-TRANSACTION-SESSION-TIMEOUT
309
+
310
+ ---
311
+
312
+ ### 2.2 Set Appropriate Connection Limits
313
+
314
+ **Impact: CRITICAL (Prevent database crashes and memory exhaustion)**
315
+
316
+ Too many connections exhaust memory and degrade performance. Set limits based on available resources.
317
+
318
+ **Incorrect (unlimited or excessive connections):**
319
+
320
+ ```sql
321
+ -- Default max_connections = 100, but often increased blindly
322
+ show max_connections; -- 500 (way too high for 4GB RAM)
323
+
324
+ -- Each connection uses 1-3MB RAM
325
+ -- 500 connections * 2MB = 1GB just for connections!
326
+ -- Out of memory errors under load
327
+ ```
328
+
329
+ **Correct (calculate based on resources):**
330
+
331
+ ```sql
332
+ -- Formula: max_connections = (RAM in MB / 5MB per connection) - reserved
333
+ -- For 4GB RAM: (4096 / 5) - 10 = ~800 theoretical max
334
+ -- But practically, 100-200 is better for query performance
335
+
336
+ -- Recommended settings for 4GB RAM
337
+ alter system set max_connections = 100;
338
+
339
+ -- Also set work_mem appropriately
340
+ -- work_mem * max_connections should not exceed 25% of RAM
341
+ alter system set work_mem = '8MB'; -- 8MB * 100 = 800MB max
342
+ select count(*), state from pg_stat_activity group by state;
343
+ ```
344
+
345
+ Monitor connection usage:
346
+
347
+ Reference: https://supabase.com/docs/guides/platform/performance#connection-management
348
+
349
+ ---
350
+
351
+ ### 2.3 Use Connection Pooling for All Applications
352
+
353
+ **Impact: CRITICAL (Handle 10-100x more concurrent users)**
354
+
355
+ Postgres connections are expensive (1-3MB RAM each). Without pooling, applications exhaust connections under load.
356
+
357
+ **Incorrect (new connection per request):**
358
+
359
+ ```sql
360
+ -- Each request creates a new connection
361
+ -- Application code: db.connect() per request
362
+ -- Result: 500 concurrent users = 500 connections = crashed database
363
+
364
+ -- Check current connections
365
+ select count(*) from pg_stat_activity; -- 487 connections!
366
+ ```
367
+
368
+ **Correct (connection pooling):**
369
+
370
+ ```sql
371
+ -- Use a pooler like PgBouncer between app and database
372
+ -- Application connects to pooler, pooler reuses a small pool to Postgres
373
+
374
+ -- Configure pool_size based on: (CPU cores * 2) + spindle_count
375
+ -- Example for 4 cores: pool_size = 10
376
+
377
+ -- Result: 500 concurrent users share 10 actual connections
378
+ select count(*) from pg_stat_activity; -- 10 connections
379
+ ```
380
+
381
+ Pool modes:
382
+ - **Transaction mode**: connection returned after each transaction (best for most apps)
383
+ - **Session mode**: connection held for entire session (needed for prepared statements, temp tables)
384
+
385
+ Reference: https://supabase.com/docs/guides/database/connecting-to-postgres#connection-pooler
386
+
387
+ ---
388
+
389
+ ### 2.4 Use Prepared Statements Correctly with Pooling
390
+
391
+ **Impact: HIGH (Avoid prepared statement conflicts in pooled environments)**
392
+
393
+ Prepared statements are tied to individual database connections. In transaction-mode pooling, connections are shared, causing conflicts.
394
+
395
+ **Incorrect (named prepared statements with transaction pooling):**
396
+
397
+ ```sql
398
+ -- Named prepared statement
399
+ prepare get_user as select * from users where id = $1;
400
+
401
+ -- In transaction mode pooling, next request may get different connection
402
+ execute get_user(123);
403
+ -- ERROR: prepared statement "get_user" does not exist
404
+ ```
405
+
406
+ **Correct (use unnamed statements or session mode):**
407
+
408
+ ```sql
409
+ -- Option 1: Use unnamed prepared statements (most ORMs do this automatically)
410
+ -- The query is prepared and executed in a single protocol message
411
+
412
+ -- Option 2: Deallocate after use in transaction mode
413
+ prepare get_user as select * from users where id = $1;
414
+ execute get_user(123);
415
+ deallocate get_user;
416
+
417
+ -- Option 3: Use session mode pooling (port 5432 vs 6543)
418
+ -- Connection is held for entire session, prepared statements persist
419
+ -- Many drivers use prepared statements by default
420
+ -- Node.js pg: { prepare: false } to disable
421
+ -- JDBC: prepareThreshold=0 to disable
422
+ ```
423
+
424
+ Check your driver settings:
425
+
426
+ Reference: https://supabase.com/docs/guides/database/connecting-to-postgres#connection-pool-modes
427
+
428
+ ---
429
+
430
+ ## 3. Security & RLS
431
+
432
+ **Impact: CRITICAL**
433
+
434
+ Row-Level Security policies, privilege management, and authentication patterns.
435
+
436
+ ### 3.1 Apply Principle of Least Privilege
437
+
438
+ **Impact: MEDIUM (Reduced attack surface, better audit trail)**
439
+
440
+ Grant only the minimum permissions required. Never use superuser for application queries.
441
+
442
+ **Incorrect (overly broad permissions):**
443
+
444
+ ```sql
445
+ -- Application uses superuser connection
446
+ -- Or grants ALL to application role
447
+ grant all privileges on all tables in schema public to app_user;
448
+ grant all privileges on all sequences in schema public to app_user;
449
+
450
+ -- Any SQL injection becomes catastrophic
451
+ -- drop table users; cascades to everything
452
+ ```
453
+
454
+ **Correct (minimal, specific grants):**
455
+
456
+ ```sql
457
+ -- Create role with no default privileges
458
+ create role app_readonly nologin;
459
+
460
+ -- Grant only SELECT on specific tables
461
+ grant usage on schema public to app_readonly;
462
+ grant select on public.products, public.categories to app_readonly;
463
+
464
+ -- Create role for writes with limited scope
465
+ create role app_writer nologin;
466
+ grant usage on schema public to app_writer;
467
+ grant select, insert, update on public.orders to app_writer;
468
+ grant usage on sequence orders_id_seq to app_writer;
469
+ -- No DELETE permission
470
+
471
+ -- Login role inherits from these
472
+ create role app_user login password 'xxx';
473
+ grant app_writer to app_user;
474
+ -- Revoke default public access
475
+ revoke all on schema public from public;
476
+ revoke all on all tables in schema public from public;
477
+ ```
478
+
479
+ Revoke public defaults:
480
+
481
+ Reference: https://supabase.com/blog/postgres-roles-and-privileges
482
+
483
+ ---
484
+
485
+ ### 3.2 Enable Row Level Security for Multi-Tenant Data
486
+
487
+ **Impact: CRITICAL (Database-enforced tenant isolation, prevent data leaks)**
488
+
489
+ Row Level Security (RLS) enforces data access at the database level, ensuring users only see their own data.
490
+
491
+ **Incorrect (application-level filtering only):**
492
+
493
+ ```sql
494
+ -- Relying only on application to filter
495
+ select * from orders where user_id = $current_user_id;
496
+
497
+ -- Bug or bypass means all data is exposed!
498
+ select * from orders; -- Returns ALL orders
499
+ ```
500
+
501
+ **Correct (database-enforced RLS):**
502
+
503
+ ```sql
504
+ -- Enable RLS on the table
505
+ alter table orders enable row level security;
506
+
507
+ -- Create policy for users to see only their orders
508
+ create policy orders_user_policy on orders
509
+ for all
510
+ using (user_id = current_setting('app.current_user_id')::bigint);
511
+
512
+ -- Force RLS even for table owners
513
+ alter table orders force row level security;
514
+
515
+ -- Set user context and query
516
+ set app.current_user_id = '123';
517
+ select * from orders; -- Only returns orders for user 123
518
+ create policy orders_user_policy on orders
519
+ for all
520
+ to authenticated
521
+ using (user_id = auth.uid());
522
+ ```
523
+
524
+ Policy for authenticated role:
525
+
526
+ Reference: https://supabase.com/docs/guides/database/postgres/row-level-security
527
+
528
+ ---
529
+
530
+ ### 3.3 Optimize RLS Policies for Performance
531
+
532
+ **Impact: HIGH (5-10x faster RLS queries with proper patterns)**
533
+
534
+ Poorly written RLS policies can cause severe performance issues. Use subqueries and indexes strategically.
535
+
536
+ **Incorrect (function called for every row):**
537
+
538
+ ```sql
539
+ create policy orders_policy on orders
540
+ using (auth.uid() = user_id); -- auth.uid() called per row!
541
+
542
+ -- With 1M rows, auth.uid() is called 1M times
543
+ ```
544
+
545
+ **Correct (wrap functions in SELECT):**
546
+
547
+ ```sql
548
+ create policy orders_policy on orders
549
+ using ((select auth.uid()) = user_id); -- Called once, cached
550
+
551
+ -- 100x+ faster on large tables
552
+ -- Create helper function (runs as definer, bypasses RLS)
553
+ create or replace function is_team_member(team_id bigint)
554
+ returns boolean
555
+ language sql
556
+ security definer
557
+ set search_path = ''
558
+ as $$
559
+ select exists (
560
+ select 1 from public.team_members
561
+ where team_id = $1 and user_id = (select auth.uid())
562
+ );
563
+ $$;
564
+
565
+ -- Use in policy (indexed lookup, not per-row check)
566
+ create policy team_orders_policy on orders
567
+ using ((select is_team_member(team_id)));
568
+ create index orders_user_id_idx on orders (user_id);
569
+ ```
570
+
571
+ Use security definer functions for complex checks:
572
+ Always add indexes on columns used in RLS policies:
573
+
574
+ Reference: https://supabase.com/docs/guides/database/postgres/row-level-security#rls-performance-recommendations
575
+
576
+ ---
577
+
578
+ ## 4. Schema Design
579
+
580
+ **Impact: HIGH**
581
+
582
+ Table design, index strategies, partitioning, and data type selection. Foundation for long-term performance.
583
+
584
+ ### 4.1 Choose Appropriate Data Types
585
+
586
+ **Impact: HIGH (50% storage reduction, faster comparisons)**
587
+
588
+ Using the right data types reduces storage, improves query performance, and prevents bugs.
589
+
590
+ **Incorrect (wrong data types):**
591
+
592
+ ```sql
593
+ create table users (
594
+ id int, -- Will overflow at 2.1 billion
595
+ email varchar(255), -- Unnecessary length limit
596
+ created_at timestamp, -- Missing timezone info
597
+ is_active varchar(5), -- String for boolean
598
+ price varchar(20) -- String for numeric
599
+ );
600
+ ```
601
+
602
+ **Correct (appropriate data types):**
603
+
604
+ ```sql
605
+ create table users (
606
+ id bigint generated always as identity primary key, -- 9 quintillion max
607
+ email text, -- No artificial limit, same performance as varchar
608
+ created_at timestamptz, -- Always store timezone-aware timestamps
609
+ is_active boolean default true, -- 1 byte vs variable string length
610
+ price numeric(10,2) -- Exact decimal arithmetic
611
+ );
612
+ -- IDs: use bigint, not int (future-proofing)
613
+ -- Strings: use text, not varchar(n) unless constraint needed
614
+ -- Time: use timestamptz, not timestamp
615
+ -- Money: use numeric, not float (precision matters)
616
+ -- Enums: use text with check constraint or create enum type
617
+ ```
618
+
619
+ Key guidelines:
620
+
621
+ Reference: https://www.postgresql.org/docs/current/datatype.html
622
+
623
+ ---
624
+
625
+ ### 4.2 Index Foreign Key Columns
626
+
627
+ **Impact: HIGH (10-100x faster JOINs and CASCADE operations)**
628
+
629
+ Postgres does not automatically index foreign key columns. Missing indexes cause slow JOINs and CASCADE operations.
630
+
631
+ **Incorrect (unindexed foreign key):**
632
+
633
+ ```sql
634
+ create table orders (
635
+ id bigint generated always as identity primary key,
636
+ customer_id bigint references customers(id) on delete cascade,
637
+ total numeric(10,2)
638
+ );
639
+
640
+ -- No index on customer_id!
641
+ -- JOINs and ON DELETE CASCADE both require full table scan
642
+ select * from orders where customer_id = 123; -- Seq Scan
643
+ delete from customers where id = 123; -- Locks table, scans all orders
644
+ ```
645
+
646
+ **Correct (indexed foreign key):**
647
+
648
+ ```sql
649
+ create table orders (
650
+ id bigint generated always as identity primary key,
651
+ customer_id bigint references customers(id) on delete cascade,
652
+ total numeric(10,2)
653
+ );
654
+
655
+ -- Always index the FK column
656
+ create index orders_customer_id_idx on orders (customer_id);
657
+
658
+ -- Now JOINs and cascades are fast
659
+ select * from orders where customer_id = 123; -- Index Scan
660
+ delete from customers where id = 123; -- Uses index, fast cascade
661
+ select
662
+ conrelid::regclass as table_name,
663
+ a.attname as fk_column
664
+ from pg_constraint c
665
+ join pg_attribute a on a.attrelid = c.conrelid and a.attnum = any(c.conkey)
666
+ where c.contype = 'f'
667
+ and not exists (
668
+ select 1 from pg_index i
669
+ where i.indrelid = c.conrelid and a.attnum = any(i.indkey)
670
+ );
671
+ ```
672
+
673
+ Find missing FK indexes:
674
+
675
+ Reference: https://www.postgresql.org/docs/current/ddl-constraints.html#DDL-CONSTRAINTS-FK
676
+
677
+ ---
678
+
679
+ ### 4.3 Partition Large Tables for Better Performance
680
+
681
+ **Impact: MEDIUM-HIGH (5-20x faster queries and maintenance on large tables)**
682
+
683
+ Partitioning splits a large table into smaller pieces, improving query performance and maintenance operations.
684
+
685
+ **Incorrect (single large table):**
686
+
687
+ ```sql
688
+ create table events (
689
+ id bigint generated always as identity,
690
+ created_at timestamptz,
691
+ data jsonb
692
+ );
693
+
694
+ -- 500M rows, queries scan everything
695
+ select * from events where created_at > '2024-01-01'; -- Slow
696
+ vacuum events; -- Takes hours, locks table
697
+ ```
698
+
699
+ **Correct (partitioned by time range):**
700
+
701
+ ```sql
702
+ create table events (
703
+ id bigint generated always as identity,
704
+ created_at timestamptz not null,
705
+ data jsonb
706
+ ) partition by range (created_at);
707
+
708
+ -- Create partitions for each month
709
+ create table events_2024_01 partition of events
710
+ for values from ('2024-01-01') to ('2024-02-01');
711
+
712
+ create table events_2024_02 partition of events
713
+ for values from ('2024-02-01') to ('2024-03-01');
714
+
715
+ -- Queries only scan relevant partitions
716
+ select * from events where created_at > '2024-01-15'; -- Only scans events_2024_01+
717
+
718
+ -- Drop old data instantly
719
+ drop table events_2023_01; -- Instant vs DELETE taking hours
720
+ ```
721
+
722
+ When to partition:
723
+ - Tables > 100M rows
724
+ - Time-series data with date-based queries
725
+ - Need to efficiently drop old data
726
+
727
+ Reference: https://www.postgresql.org/docs/current/ddl-partitioning.html
728
+
729
+ ---
730
+
731
+ ### 4.4 Select Optimal Primary Key Strategy
732
+
733
+ **Impact: HIGH (Better index locality, reduced fragmentation)**
734
+
735
+ Primary key choice affects insert performance, index size, and replication
736
+ efficiency.
737
+
738
+ **Incorrect (problematic PK choices):**
739
+
740
+ ```sql
741
+ -- identity is the SQL-standard approach
742
+ create table users (
743
+ id serial primary key -- Works, but IDENTITY is recommended
744
+ );
745
+
746
+ -- Random UUIDs (v4) cause index fragmentation
747
+ create table orders (
748
+ id uuid default gen_random_uuid() primary key -- UUIDv4 = random = scattered inserts
749
+ );
750
+ ```
751
+
752
+ **Correct (optimal PK strategies):**
753
+
754
+ ```sql
755
+ -- Use IDENTITY for sequential IDs (SQL-standard, best for most cases)
756
+ create table users (
757
+ id bigint generated always as identity primary key
758
+ );
759
+
760
+ -- For distributed systems needing UUIDs, use UUIDv7 (time-ordered)
761
+ -- Requires pg_uuidv7 extension: create extension pg_uuidv7;
762
+ create table orders (
763
+ id uuid default uuid_generate_v7() primary key -- Time-ordered, no fragmentation
764
+ );
765
+
766
+ -- Alternative: time-prefixed IDs for sortable, distributed IDs (no extension needed)
767
+ create table events (
768
+ id text default concat(
769
+ to_char(now() at time zone 'utc', 'YYYYMMDDHH24MISSMS'),
770
+ gen_random_uuid()::text
771
+ ) primary key
772
+ );
773
+ ```
774
+
775
+ Guidelines:
776
+ - Single database: `bigint identity` (sequential, 8 bytes, SQL-standard)
777
+ - Distributed/exposed IDs: UUIDv7 (requires pg_uuidv7) or ULID (time-ordered, no
778
+ fragmentation)
779
+ - `serial` works but `identity` is SQL-standard and preferred for new
780
+ applications
781
+ - Avoid random UUIDs (v4) as primary keys on large tables (causes index
782
+ fragmentation)
783
+ [Identity Columns](https://www.postgresql.org/docs/current/sql-createtable.html#SQL-CREATETABLE-PARMS-GENERATED-IDENTITY)
784
+
785
+ ---
786
+
787
+ ### 4.5 Use Lowercase Identifiers for Compatibility
788
+
789
+ **Impact: MEDIUM (Avoid case-sensitivity bugs with tools, ORMs, and AI assistants)**
790
+
791
+ PostgreSQL folds unquoted identifiers to lowercase. Quoted mixed-case identifiers require quotes forever and cause issues with tools, ORMs, and AI assistants that may not recognize them.
792
+
793
+ **Incorrect (mixed-case identifiers):**
794
+
795
+ ```sql
796
+ -- Quoted identifiers preserve case but require quotes everywhere
797
+ CREATE TABLE "Users" (
798
+ "userId" bigint PRIMARY KEY,
799
+ "firstName" text,
800
+ "lastName" text
801
+ );
802
+
803
+ -- Must always quote or queries fail
804
+ SELECT "firstName" FROM "Users" WHERE "userId" = 1;
805
+
806
+ -- This fails - Users becomes users without quotes
807
+ SELECT firstName FROM Users;
808
+ -- ERROR: relation "users" does not exist
809
+ ```
810
+
811
+ **Correct (lowercase snake_case):**
812
+
813
+ ```sql
814
+ -- Unquoted lowercase identifiers are portable and tool-friendly
815
+ CREATE TABLE users (
816
+ user_id bigint PRIMARY KEY,
817
+ first_name text,
818
+ last_name text
819
+ );
820
+
821
+ -- Works without quotes, recognized by all tools
822
+ SELECT first_name FROM users WHERE user_id = 1;
823
+ -- ORMs often generate quoted camelCase - configure them to use snake_case
824
+ -- Migrations from other databases may preserve original casing
825
+ -- Some GUI tools quote identifiers by default - disable this
826
+
827
+ -- If stuck with mixed-case, create views as a compatibility layer
828
+ CREATE VIEW users AS SELECT "userId" AS user_id, "firstName" AS first_name FROM "Users";
829
+ ```
830
+
831
+ Common sources of mixed-case identifiers:
832
+
833
+ Reference: https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS
834
+
835
+ ---
836
+
837
+ ## 5. Concurrency & Locking
838
+
839
+ **Impact: MEDIUM-HIGH**
840
+
841
+ Transaction management, isolation levels, deadlock prevention, and lock contention patterns.
842
+
843
+ ### 5.1 Keep Transactions Short to Reduce Lock Contention
844
+
845
+ **Impact: MEDIUM-HIGH (3-5x throughput improvement, fewer deadlocks)**
846
+
847
+ Long-running transactions hold locks that block other queries. Keep transactions as short as possible.
848
+
849
+ **Incorrect (long transaction with external calls):**
850
+
851
+ ```sql
852
+ begin;
853
+ select * from orders where id = 1 for update; -- Lock acquired
854
+
855
+ -- Application makes HTTP call to payment API (2-5 seconds)
856
+ -- Other queries on this row are blocked!
857
+
858
+ update orders set status = 'paid' where id = 1;
859
+ commit; -- Lock held for entire duration
860
+ ```
861
+
862
+ **Correct (minimal transaction scope):**
863
+
864
+ ```sql
865
+ -- Validate data and call APIs outside transaction
866
+ -- Application: response = await paymentAPI.charge(...)
867
+
868
+ -- Only hold lock for the actual update
869
+ begin;
870
+ update orders
871
+ set status = 'paid', payment_id = $1
872
+ where id = $2 and status = 'pending'
873
+ returning *;
874
+ commit; -- Lock held for milliseconds
875
+ -- Abort queries running longer than 30 seconds
876
+ set statement_timeout = '30s';
877
+
878
+ -- Or per-session
879
+ set local statement_timeout = '5s';
880
+ ```
881
+
882
+ Use `statement_timeout` to prevent runaway transactions:
883
+
884
+ Reference: https://www.postgresql.org/docs/current/tutorial-transactions.html
885
+
886
+ ---
887
+
888
+ ### 5.2 Prevent Deadlocks with Consistent Lock Ordering
889
+
890
+ **Impact: MEDIUM-HIGH (Eliminate deadlock errors, improve reliability)**
891
+
892
+ Deadlocks occur when transactions lock resources in different orders. Always
893
+ acquire locks in a consistent order.
894
+
895
+ **Incorrect (inconsistent lock ordering):**
896
+
897
+ ```sql
898
+ -- Transaction A -- Transaction B
899
+ begin; begin;
900
+ update accounts update accounts
901
+ set balance = balance - 100 set balance = balance - 50
902
+ where id = 1; where id = 2; -- B locks row 2
903
+
904
+ update accounts update accounts
905
+ set balance = balance + 100 set balance = balance + 50
906
+ where id = 2; -- A waits for B where id = 1; -- B waits for A
907
+
908
+ -- DEADLOCK! Both waiting for each other
909
+ ```
910
+
911
+ **Correct (lock rows in consistent order first):**
912
+
913
+ ```sql
914
+ -- Explicitly acquire locks in ID order before updating
915
+ begin;
916
+ select * from accounts where id in (1, 2) order by id for update;
917
+
918
+ -- Now perform updates in any order - locks already held
919
+ update accounts set balance = balance - 100 where id = 1;
920
+ update accounts set balance = balance + 100 where id = 2;
921
+ commit;
922
+ -- Single statement acquires all locks atomically
923
+ begin;
924
+ update accounts
925
+ set balance = balance + case id
926
+ when 1 then -100
927
+ when 2 then 100
928
+ end
929
+ where id in (1, 2);
930
+ commit;
931
+ -- Check for recent deadlocks
932
+ select * from pg_stat_database where deadlocks > 0;
933
+
934
+ -- Enable deadlock logging
935
+ set log_lock_waits = on;
936
+ set deadlock_timeout = '1s';
937
+ ```
938
+
939
+ Alternative: use a single statement to update atomically:
940
+ Detect deadlocks in logs:
941
+ [Deadlocks](https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-DEADLOCKS)
942
+
943
+ ---
944
+
945
+ ### 5.3 Use Advisory Locks for Application-Level Locking
946
+
947
+ **Impact: MEDIUM (Efficient coordination without row-level lock overhead)**
948
+
949
+ Advisory locks provide application-level coordination without requiring database rows to lock.
950
+
951
+ **Incorrect (creating rows just for locking):**
952
+
953
+ ```sql
954
+ -- Creating dummy rows to lock on
955
+ create table resource_locks (
956
+ resource_name text primary key
957
+ );
958
+
959
+ insert into resource_locks values ('report_generator');
960
+
961
+ -- Lock by selecting the row
962
+ select * from resource_locks where resource_name = 'report_generator' for update;
963
+ ```
964
+
965
+ **Correct (advisory locks):**
966
+
967
+ ```sql
968
+ -- Session-level advisory lock (released on disconnect or unlock)
969
+ select pg_advisory_lock(hashtext('report_generator'));
970
+ -- ... do exclusive work ...
971
+ select pg_advisory_unlock(hashtext('report_generator'));
972
+
973
+ -- Transaction-level lock (released on commit/rollback)
974
+ begin;
975
+ select pg_advisory_xact_lock(hashtext('daily_report'));
976
+ -- ... do work ...
977
+ commit; -- Lock automatically released
978
+ -- Returns immediately with true/false instead of waiting
979
+ select pg_try_advisory_lock(hashtext('resource_name'));
980
+
981
+ -- Use in application
982
+ if (acquired) {
983
+ -- Do work
984
+ select pg_advisory_unlock(hashtext('resource_name'));
985
+ } else {
986
+ -- Skip or retry later
987
+ }
988
+ ```
989
+
990
+ Try-lock for non-blocking operations:
991
+
992
+ Reference: https://www.postgresql.org/docs/current/explicit-locking.html#ADVISORY-LOCKS
993
+
994
+ ---
995
+
996
+ ### 5.4 Use SKIP LOCKED for Non-Blocking Queue Processing
997
+
998
+ **Impact: MEDIUM-HIGH (10x throughput for worker queues)**
999
+
1000
+ When multiple workers process a queue, SKIP LOCKED allows workers to process different rows without waiting.
1001
+
1002
+ **Incorrect (workers block each other):**
1003
+
1004
+ ```sql
1005
+ -- Worker 1 and Worker 2 both try to get next job
1006
+ begin;
1007
+ select * from jobs where status = 'pending' order by created_at limit 1 for update;
1008
+ -- Worker 2 waits for Worker 1's lock to release!
1009
+ ```
1010
+
1011
+ **Correct (SKIP LOCKED for parallel processing):**
1012
+
1013
+ ```sql
1014
+ -- Each worker skips locked rows and gets the next available
1015
+ begin;
1016
+ select * from jobs
1017
+ where status = 'pending'
1018
+ order by created_at
1019
+ limit 1
1020
+ for update skip locked;
1021
+
1022
+ -- Worker 1 gets job 1, Worker 2 gets job 2 (no waiting)
1023
+
1024
+ update jobs set status = 'processing' where id = $1;
1025
+ commit;
1026
+ -- Atomic claim-and-update in one statement
1027
+ update jobs
1028
+ set status = 'processing', worker_id = $1, started_at = now()
1029
+ where id = (
1030
+ select id from jobs
1031
+ where status = 'pending'
1032
+ order by created_at
1033
+ limit 1
1034
+ for update skip locked
1035
+ )
1036
+ returning *;
1037
+ ```
1038
+
1039
+ Complete queue pattern:
1040
+
1041
+ Reference: https://www.postgresql.org/docs/current/sql-select.html#SQL-FOR-UPDATE-SHARE
1042
+
1043
+ ---
1044
+
1045
+ ## 6. Data Access Patterns
1046
+
1047
+ **Impact: MEDIUM**
1048
+
1049
+ N+1 query elimination, batch operations, cursor-based pagination, and efficient data fetching.
1050
+
1051
+ ### 6.1 Batch INSERT Statements for Bulk Data
1052
+
1053
+ **Impact: MEDIUM (10-50x faster bulk inserts)**
1054
+
1055
+ Individual INSERT statements have high overhead. Batch multiple rows in single statements or use COPY.
1056
+
1057
+ **Incorrect (individual inserts):**
1058
+
1059
+ ```sql
1060
+ -- Each insert is a separate transaction and round trip
1061
+ insert into events (user_id, action) values (1, 'click');
1062
+ insert into events (user_id, action) values (1, 'view');
1063
+ insert into events (user_id, action) values (2, 'click');
1064
+ -- ... 1000 more individual inserts
1065
+
1066
+ -- 1000 inserts = 1000 round trips = slow
1067
+ ```
1068
+
1069
+ **Correct (batch insert):**
1070
+
1071
+ ```sql
1072
+ -- Multiple rows in single statement
1073
+ insert into events (user_id, action) values
1074
+ (1, 'click'),
1075
+ (1, 'view'),
1076
+ (2, 'click'),
1077
+ -- ... up to ~1000 rows per batch
1078
+ (999, 'view');
1079
+
1080
+ -- One round trip for 1000 rows
1081
+ -- COPY is fastest for bulk loading
1082
+ copy events (user_id, action, created_at)
1083
+ from '/path/to/data.csv'
1084
+ with (format csv, header true);
1085
+
1086
+ -- Or from stdin in application
1087
+ copy events (user_id, action) from stdin with (format csv);
1088
+ 1,click
1089
+ 1,view
1090
+ 2,click
1091
+ \.
1092
+ ```
1093
+
1094
+ For large imports, use COPY:
1095
+
1096
+ Reference: https://www.postgresql.org/docs/current/sql-copy.html
1097
+
1098
+ ---
1099
+
1100
+ ### 6.2 Eliminate N+1 Queries with Batch Loading
1101
+
1102
+ **Impact: MEDIUM-HIGH (10-100x fewer database round trips)**
1103
+
1104
+ N+1 queries execute one query per item in a loop. Batch them into a single query using arrays or JOINs.
1105
+
1106
+ **Incorrect (N+1 queries):**
1107
+
1108
+ ```sql
1109
+ -- First query: get all users
1110
+ select id from users where active = true; -- Returns 100 IDs
1111
+
1112
+ -- Then N queries, one per user
1113
+ select * from orders where user_id = 1;
1114
+ select * from orders where user_id = 2;
1115
+ select * from orders where user_id = 3;
1116
+ -- ... 97 more queries!
1117
+
1118
+ -- Total: 101 round trips to database
1119
+ ```
1120
+
1121
+ **Correct (single batch query):**
1122
+
1123
+ ```sql
1124
+ -- Collect IDs and query once with ANY
1125
+ select * from orders where user_id = any(array[1, 2, 3, ...]);
1126
+
1127
+ -- Or use JOIN instead of loop
1128
+ select u.id, u.name, o.*
1129
+ from users u
1130
+ left join orders o on o.user_id = u.id
1131
+ where u.active = true;
1132
+
1133
+ -- Total: 1 round trip
1134
+ -- Instead of looping in application code:
1135
+ -- for user in users: db.query("SELECT * FROM orders WHERE user_id = $1", user.id)
1136
+
1137
+ -- Pass array parameter:
1138
+ select * from orders where user_id = any($1::bigint[]);
1139
+ -- Application passes: [1, 2, 3, 4, 5, ...]
1140
+ ```
1141
+
1142
+ Application pattern:
1143
+
1144
+ Reference: https://supabase.com/docs/guides/database/query-optimization
1145
+
1146
+ ---
1147
+
1148
+ ### 6.3 Use Cursor-Based Pagination Instead of OFFSET
1149
+
1150
+ **Impact: MEDIUM-HIGH (Consistent O(1) performance regardless of page depth)**
1151
+
1152
+ OFFSET-based pagination scans all skipped rows, getting slower on deeper pages. Cursor pagination is O(1).
1153
+
1154
+ **Incorrect (OFFSET pagination):**
1155
+
1156
+ ```sql
1157
+ -- Page 1: scans 20 rows
1158
+ select * from products order by id limit 20 offset 0;
1159
+
1160
+ -- Page 100: scans 2000 rows to skip 1980
1161
+ select * from products order by id limit 20 offset 1980;
1162
+
1163
+ -- Page 10000: scans 200,000 rows!
1164
+ select * from products order by id limit 20 offset 199980;
1165
+ ```
1166
+
1167
+ **Correct (cursor/keyset pagination):**
1168
+
1169
+ ```sql
1170
+ -- Page 1: get first 20
1171
+ select * from products order by id limit 20;
1172
+ -- Application stores last_id = 20
1173
+
1174
+ -- Page 2: start after last ID
1175
+ select * from products where id > 20 order by id limit 20;
1176
+ -- Uses index, always fast regardless of page depth
1177
+
1178
+ -- Page 10000: same speed as page 1
1179
+ select * from products where id > 199980 order by id limit 20;
1180
+ -- Cursor must include all sort columns
1181
+ select * from products
1182
+ where (created_at, id) > ('2024-01-15 10:00:00', 12345)
1183
+ order by created_at, id
1184
+ limit 20;
1185
+ ```
1186
+
1187
+ For multi-column sorting:
1188
+
1189
+ Reference: https://supabase.com/docs/guides/database/pagination
1190
+
1191
+ ---
1192
+
1193
+ ### 6.4 Use UPSERT for Insert-or-Update Operations
1194
+
1195
+ **Impact: MEDIUM (Atomic operation, eliminates race conditions)**
1196
+
1197
+ Using separate SELECT-then-INSERT/UPDATE creates race conditions. Use INSERT ... ON CONFLICT for atomic upserts.
1198
+
1199
+ **Incorrect (check-then-insert race condition):**
1200
+
1201
+ ```sql
1202
+ -- Race condition: two requests check simultaneously
1203
+ select * from settings where user_id = 123 and key = 'theme';
1204
+ -- Both find nothing
1205
+
1206
+ -- Both try to insert
1207
+ insert into settings (user_id, key, value) values (123, 'theme', 'dark');
1208
+ -- One succeeds, one fails with duplicate key error!
1209
+ ```
1210
+
1211
+ **Correct (atomic UPSERT):**
1212
+
1213
+ ```sql
1214
+ -- Single atomic operation
1215
+ insert into settings (user_id, key, value)
1216
+ values (123, 'theme', 'dark')
1217
+ on conflict (user_id, key)
1218
+ do update set value = excluded.value, updated_at = now();
1219
+
1220
+ -- Returns the inserted/updated row
1221
+ insert into settings (user_id, key, value)
1222
+ values (123, 'theme', 'dark')
1223
+ on conflict (user_id, key)
1224
+ do update set value = excluded.value
1225
+ returning *;
1226
+ -- Insert only if not exists (no update)
1227
+ insert into page_views (page_id, user_id)
1228
+ values (1, 123)
1229
+ on conflict (page_id, user_id) do nothing;
1230
+ ```
1231
+
1232
+ Insert-or-ignore pattern:
1233
+
1234
+ Reference: https://www.postgresql.org/docs/current/sql-insert.html#SQL-ON-CONFLICT
1235
+
1236
+ ---
1237
+
1238
+ ## 7. Monitoring & Diagnostics
1239
+
1240
+ **Impact: LOW-MEDIUM**
1241
+
1242
+ Using pg_stat_statements, EXPLAIN ANALYZE, metrics collection, and performance diagnostics.
1243
+
1244
+ ### 7.1 Enable pg_stat_statements for Query Analysis
1245
+
1246
+ **Impact: LOW-MEDIUM (Identify top resource-consuming queries)**
1247
+
1248
+ pg_stat_statements tracks execution statistics for all queries, helping identify slow and frequent queries.
1249
+
1250
+ **Incorrect (no visibility into query patterns):**
1251
+
1252
+ ```sql
1253
+ -- Database is slow, but which queries are the problem?
1254
+ -- No way to know without pg_stat_statements
1255
+ ```
1256
+
1257
+ **Correct (enable and query pg_stat_statements):**
1258
+
1259
+ ```sql
1260
+ -- Enable the extension
1261
+ create extension if not exists pg_stat_statements;
1262
+
1263
+ -- Find slowest queries by total time
1264
+ select
1265
+ calls,
1266
+ round(total_exec_time::numeric, 2) as total_time_ms,
1267
+ round(mean_exec_time::numeric, 2) as mean_time_ms,
1268
+ query
1269
+ from pg_stat_statements
1270
+ order by total_exec_time desc
1271
+ limit 10;
1272
+
1273
+ -- Find most frequent queries
1274
+ select calls, query
1275
+ from pg_stat_statements
1276
+ order by calls desc
1277
+ limit 10;
1278
+
1279
+ -- Reset statistics after optimization
1280
+ select pg_stat_statements_reset();
1281
+ -- Queries with high mean time (candidates for optimization)
1282
+ select query, mean_exec_time, calls
1283
+ from pg_stat_statements
1284
+ where mean_exec_time > 100 -- > 100ms average
1285
+ order by mean_exec_time desc;
1286
+ ```
1287
+
1288
+ Key metrics to monitor:
1289
+
1290
+ Reference: https://supabase.com/docs/guides/database/extensions/pg_stat_statements
1291
+
1292
+ ---
1293
+
1294
+ ### 7.2 Maintain Table Statistics with VACUUM and ANALYZE
1295
+
1296
+ **Impact: MEDIUM (2-10x better query plans with accurate statistics)**
1297
+
1298
+ Outdated statistics cause the query planner to make poor decisions. VACUUM reclaims space, ANALYZE updates statistics.
1299
+
1300
+ **Incorrect (stale statistics):**
1301
+
1302
+ ```sql
1303
+ -- Table has 1M rows but stats say 1000
1304
+ -- Query planner chooses wrong strategy
1305
+ explain select * from orders where status = 'pending';
1306
+ -- Shows: Seq Scan (because stats show small table)
1307
+ -- Actually: Index Scan would be much faster
1308
+ ```
1309
+
1310
+ **Correct (maintain fresh statistics):**
1311
+
1312
+ ```sql
1313
+ -- Manually analyze after large data changes
1314
+ analyze orders;
1315
+
1316
+ -- Analyze specific columns used in WHERE clauses
1317
+ analyze orders (status, created_at);
1318
+
1319
+ -- Check when tables were last analyzed
1320
+ select
1321
+ relname,
1322
+ last_vacuum,
1323
+ last_autovacuum,
1324
+ last_analyze,
1325
+ last_autoanalyze
1326
+ from pg_stat_user_tables
1327
+ order by last_analyze nulls first;
1328
+ -- Increase frequency for high-churn tables
1329
+ alter table orders set (
1330
+ autovacuum_vacuum_scale_factor = 0.05, -- Vacuum at 5% dead tuples (default 20%)
1331
+ autovacuum_analyze_scale_factor = 0.02 -- Analyze at 2% changes (default 10%)
1332
+ );
1333
+
1334
+ -- Check autovacuum status
1335
+ select * from pg_stat_progress_vacuum;
1336
+ ```
1337
+
1338
+ Autovacuum tuning for busy tables:
1339
+
1340
+ Reference: https://supabase.com/docs/guides/database/database-size#vacuum-operations
1341
+
1342
+ ---
1343
+
1344
+ ### 7.3 Use EXPLAIN ANALYZE to Diagnose Slow Queries
1345
+
1346
+ **Impact: LOW-MEDIUM (Identify exact bottlenecks in query execution)**
1347
+
1348
+ EXPLAIN ANALYZE executes the query and shows actual timings, revealing the true performance bottlenecks.
1349
+
1350
+ **Incorrect (guessing at performance issues):**
1351
+
1352
+ ```sql
1353
+ -- Query is slow, but why?
1354
+ select * from orders where customer_id = 123 and status = 'pending';
1355
+ -- "It must be missing an index" - but which one?
1356
+ ```
1357
+
1358
+ **Correct (use EXPLAIN ANALYZE):**
1359
+
1360
+ ```sql
1361
+ explain (analyze, buffers, format text)
1362
+ select * from orders where customer_id = 123 and status = 'pending';
1363
+
1364
+ -- Output reveals the issue:
1365
+ -- Seq Scan on orders (cost=0.00..25000.00 rows=50 width=100) (actual time=0.015..450.123 rows=50 loops=1)
1366
+ -- Filter: ((customer_id = 123) AND (status = 'pending'::text))
1367
+ -- Rows Removed by Filter: 999950
1368
+ -- Buffers: shared hit=5000 read=15000
1369
+ -- Planning Time: 0.150 ms
1370
+ -- Execution Time: 450.500 ms
1371
+ -- Seq Scan on large tables = missing index
1372
+ -- Rows Removed by Filter = poor selectivity or missing index
1373
+ -- Buffers: read >> hit = data not cached, needs more memory
1374
+ -- Nested Loop with high loops = consider different join strategy
1375
+ -- Sort Method: external merge = work_mem too low
1376
+ ```
1377
+
1378
+ Key things to look for:
1379
+
1380
+ Reference: https://supabase.com/docs/guides/database/inspect
1381
+
1382
+ ---
1383
+
1384
+ ## 8. Advanced Features
1385
+
1386
+ **Impact: LOW**
1387
+
1388
+ Full-text search, JSONB optimization, PostGIS, extensions, and advanced Postgres features.
1389
+
1390
+ ### 8.1 Index JSONB Columns for Efficient Querying
1391
+
1392
+ **Impact: MEDIUM (10-100x faster JSONB queries with proper indexing)**
1393
+
1394
+ JSONB queries without indexes scan the entire table. Use GIN indexes for containment queries.
1395
+
1396
+ **Incorrect (no index on JSONB):**
1397
+
1398
+ ```sql
1399
+ create table products (
1400
+ id bigint primary key,
1401
+ attributes jsonb
1402
+ );
1403
+
1404
+ -- Full table scan for every query
1405
+ select * from products where attributes @> '{"color": "red"}';
1406
+ select * from products where attributes->>'brand' = 'Nike';
1407
+ ```
1408
+
1409
+ **Correct (GIN index for JSONB):**
1410
+
1411
+ ```sql
1412
+ -- GIN index for containment operators (@>, ?, ?&, ?|)
1413
+ create index products_attrs_gin on products using gin (attributes);
1414
+
1415
+ -- Now containment queries use the index
1416
+ select * from products where attributes @> '{"color": "red"}';
1417
+
1418
+ -- For specific key lookups, use expression index
1419
+ create index products_brand_idx on products ((attributes->>'brand'));
1420
+ select * from products where attributes->>'brand' = 'Nike';
1421
+ -- jsonb_ops (default): supports all operators, larger index
1422
+ create index idx1 on products using gin (attributes);
1423
+
1424
+ -- jsonb_path_ops: only @> operator, but 2-3x smaller index
1425
+ create index idx2 on products using gin (attributes jsonb_path_ops);
1426
+ ```
1427
+
1428
+ Choose the right operator class:
1429
+
1430
+ Reference: https://www.postgresql.org/docs/current/datatype-json.html#JSON-INDEXING
1431
+
1432
+ ---
1433
+
1434
+ ### 8.2 Use tsvector for Full-Text Search
1435
+
1436
+ **Impact: MEDIUM (100x faster than LIKE, with ranking support)**
1437
+
1438
+ LIKE with wildcards can't use indexes. Full-text search with tsvector is orders of magnitude faster.
1439
+
1440
+ **Incorrect (LIKE pattern matching):**
1441
+
1442
+ ```sql
1443
+ -- Cannot use index, scans all rows
1444
+ select * from articles where content like '%postgresql%';
1445
+
1446
+ -- Case-insensitive makes it worse
1447
+ select * from articles where lower(content) like '%postgresql%';
1448
+ ```
1449
+
1450
+ **Correct (full-text search with tsvector):**
1451
+
1452
+ ```sql
1453
+ -- Add tsvector column and index
1454
+ alter table articles add column search_vector tsvector
1455
+ generated always as (to_tsvector('english', coalesce(title,'') || ' ' || coalesce(content,''))) stored;
1456
+
1457
+ create index articles_search_idx on articles using gin (search_vector);
1458
+
1459
+ -- Fast full-text search
1460
+ select * from articles
1461
+ where search_vector @@ to_tsquery('english', 'postgresql & performance');
1462
+
1463
+ -- With ranking
1464
+ select *, ts_rank(search_vector, query) as rank
1465
+ from articles, to_tsquery('english', 'postgresql') query
1466
+ where search_vector @@ query
1467
+ order by rank desc;
1468
+ -- AND: both terms required
1469
+ to_tsquery('postgresql & performance')
1470
+
1471
+ -- OR: either term
1472
+ to_tsquery('postgresql | mysql')
1473
+
1474
+ -- Prefix matching
1475
+ to_tsquery('post:*')
1476
+ ```
1477
+
1478
+ Search multiple terms:
1479
+
1480
+ Reference: https://supabase.com/docs/guides/database/full-text-search
1481
+
1482
+ ---
1483
+
1484
+ ## References
1485
+
1486
+ - https://www.postgresql.org/docs/current/
1487
+ - https://supabase.com/docs
1488
+ - https://wiki.postgresql.org/wiki/Performance_Optimization
1489
+ - https://supabase.com/docs/guides/database/overview
1490
+ - https://supabase.com/docs/guides/auth/row-level-security