wegho-agentes 7.0.4 → 7.0.6

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 (1185) hide show
  1. package/.agent/agents/documentation-writer.md +1 -1
  2. package/.agent/agents/orchestrator.md +1 -1
  3. package/.agent/mcp_config.md +30 -0
  4. package/.agent/skills/database-design/SKILL.md +52 -1
  5. package/.agent/skills/database-design/github-benchmarks.md +35 -0
  6. package/.agent/skills/database-design/supabase-security-egress.md +42 -0
  7. package/.agent/skills/file-doc-sync/SKILL.md +44 -0
  8. package/.agent/skills/file-doc-sync/references/document-structure.md +20 -0
  9. package/.agent/skills/file-doc-sync/scripts/sync-file-docs.md +45 -0
  10. package/.agent/skills/file-doc-sync/scripts/sync-file-docs.ts +349 -0
  11. package/.agent/skills/vulnerability-scanner/SKILL.md +48 -2
  12. package/.agent/skills/vulnerability-scanner/github-benchmarks.md +32 -0
  13. package/.agent/skills/wegho-global-rules/SKILL.md +11 -9
  14. package/.agent/workflows/PROMPT_GUIDE.md +21 -220
  15. package/.agent/workflows/auto-run-orchestrator.md +3 -3
  16. package/.agent/workflows/run-agents-workflow.md +15 -198
  17. package/.agents/AGENT_WORKFLOW.md +36 -528
  18. package/.agents/CLI.md +42 -222
  19. package/.agents/README.md +18 -130
  20. package/.agents/antigravity-preflight.md +36 -0
  21. package/.agents/antigravity-preflight.ts +9 -108
  22. package/.agents/auto-runner.md +36 -0
  23. package/.agents/auto-runner.ts +2 -2
  24. package/.agents/cli.ts +2 -2
  25. package/.agents/code-auditor-agent.md +38 -0
  26. package/.agents/config.md +34 -0
  27. package/.agents/config.ts +15 -29
  28. package/.agents/context-loader.md +37 -0
  29. package/.agents/core/agent-parallelizer.md +33 -0
  30. package/.agents/core/ai-agents-agent.md +35 -0
  31. package/.agents/core/architecture-agent.md +39 -0
  32. package/.agents/core/architecture-agent.ts +1 -1
  33. package/.agents/core/automation-agent.md +33 -0
  34. package/.agents/core/backend-agent.md +35 -0
  35. package/.agents/core/base-agent.md +36 -0
  36. package/.agents/core/base-agent.ts +132 -337
  37. package/.agents/core/build-manager.md +35 -0
  38. package/.agents/core/cache-manager.md +32 -0
  39. package/.agents/core/checkpoint-manager.md +36 -0
  40. package/.agents/core/cloud-agent.md +33 -0
  41. package/.agents/core/cro-agent.md +33 -0
  42. package/.agents/core/database-agent.md +35 -0
  43. package/.agents/core/devops-agent.md +33 -0
  44. package/.agents/core/documentation-agent.md +36 -0
  45. package/.agents/core/documentation-agent.ts +1 -1
  46. package/.agents/core/file-generator.md +42 -0
  47. package/.agents/core/frontend-agent.md +36 -0
  48. package/.agents/core/frontend-agent.ts +1 -1
  49. package/.agents/core/nextjs-agent.md +35 -0
  50. package/.agents/core/pentest-agent.md +35 -0
  51. package/.agents/core/performance-tracker.md +33 -0
  52. package/.agents/core/planning-agent.md +33 -0
  53. package/.agents/core/planning-agent.ts +77 -388
  54. package/.agents/core/quality-agent.md +36 -0
  55. package/.agents/core/quality-agent.ts +1 -1
  56. package/.agents/core/rag-agent.md +36 -0
  57. package/.agents/core/report-generator.md +35 -0
  58. package/.agents/core/retry-utility.md +34 -0
  59. package/.agents/core/security-agent.md +39 -0
  60. package/.agents/core/security-agent.ts +1 -1
  61. package/.agents/core/skill-manager.md +36 -0
  62. package/.agents/core/stack-boundary-agent.md +38 -0
  63. package/.agents/core/testing-agent.md +33 -0
  64. package/.agents/core/ui-data-map-agent.md +38 -0
  65. package/.agents/core/uiux-agent.md +35 -0
  66. package/.agents/core/workflow-validator.md +33 -0
  67. package/.agents/core/workflow-validator.ts +98 -158
  68. package/.agents/domains/README.md +10 -53
  69. package/.agents/domains/logistics/route-agent.md +34 -0
  70. package/.agents/domains/logistics/route-agent.ts +1 -1
  71. package/.agents/domains/news/cms-agent.md +35 -0
  72. package/.agents/domains/news/cms-agent.ts +1 -1
  73. package/.agents/domains/news/seo-agent.md +34 -0
  74. package/.agents/domains/news/seo-agent.ts +1 -1
  75. package/.agents/domains/production/production-control-agent.md +34 -0
  76. package/.agents/domains/production/production-control-agent.ts +1 -1
  77. package/.agents/init.md +40 -0
  78. package/.agents/init.ts +81 -168
  79. package/.agents/install.md +34 -0
  80. package/.agents/install.ts +115 -138
  81. package/.agents/orchestrator.md +43 -0
  82. package/.agents/orchestrator.ts +322 -764
  83. package/.agents/project-discovery-agent.md +40 -0
  84. package/.agents/reference-repositories.json +5 -0
  85. package/.agents/reference-repositories.md +30 -0
  86. package/.agents/security/vulnerability-db.md +42 -0
  87. package/.agents/sync-docs.md +32 -0
  88. package/.agents/sync-docs.ts +15 -0
  89. package/.agents/task-analyzer-agent.md +36 -0
  90. package/.agents/task-analyzer-agent.ts +122 -478
  91. package/.agents/validate.md +36 -0
  92. package/.agents/validate.ts +1 -1
  93. package/INSTALL.md +18 -300
  94. package/README.md +20 -332
  95. package/package.json +16 -4
  96. package/skills/algorithmic-art/templates/generator_template.md +31 -0
  97. package/skills/algorithmic-art/templates/viewer.md +31 -0
  98. package/skills/app-store-optimization/expected_output.md +30 -0
  99. package/skills/app-store-optimization/sample_input.md +30 -0
  100. package/skills/cc-skill-continuous-learning/config.md +30 -0
  101. package/skills/claude-d3js-skill/assets/chart-template.md +32 -0
  102. package/skills/claude-d3js-skill/assets/interactive-template.md +32 -0
  103. package/skills/claude-d3js-skill/assets/sample-data.md +30 -0
  104. package/skills/loki-mode/scripts/take-screenshots.md +33 -0
  105. package/skills/playwright-skill/lib/helpers.md +34 -0
  106. package/skills/playwright-skill/package.md +30 -0
  107. package/skills/playwright-skill/run.md +36 -0
  108. package/skills/postgres-best-practices/metadata.md +31 -0
  109. package/skills/pptx-official/scripts/html2pptx.md +38 -0
  110. package/skills/react-best-practices/metadata.md +30 -0
  111. package/skills/remotion-best-practices/rules/assets/charts-bar-chart.md +33 -0
  112. package/skills/remotion-best-practices/rules/assets/text-animations-typewriter.md +32 -0
  113. package/skills/remotion-best-practices/rules/assets/text-animations-word-highlight.md +34 -0
  114. package/skills/systematic-debugging/condition-based-waiting-example.md +34 -0
  115. package/skills/typescript-expert/references/tsconfig-strict.md +30 -0
  116. package/skills/typescript-expert/references/utility-types.md +32 -0
  117. package/skills/writing-skills/render-graphs.md +32 -0
  118. package/.agents/AI_COMPATIBILITY.md +0 -333
  119. package/.agents/core/feedback-collector.ts +0 -207
  120. package/.agents/core/inventory-agent.ts +0 -757
  121. package/.agents/core/memory-system.ts +0 -429
  122. package/docs/LEARNING_SYSTEM.md +0 -326
  123. package/docs/SYSTEM_FLOW_AUDIT.md +0 -115
  124. package/skills/loki-mode/.github/workflows/claude-code-review.yml +0 -57
  125. package/skills/loki-mode/.github/workflows/claude.yml +0 -50
  126. package/skills/loki-mode/.github/workflows/release.yml +0 -128
  127. package/skills/loki-mode/autonomy/.loki/dashboard/index.html +0 -497
  128. package/skills/loki-mode/benchmarks/datasets/humaneval.jsonl +0 -164
  129. package/skills/loki-mode/benchmarks/datasets/swebench-lite.json +0 -10
  130. package/skills/loki-mode/benchmarks/prepare-submission.sh +0 -215
  131. package/skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/SUMMARY.md +0 -48
  132. package/skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/humaneval-results.json +0 -15
  133. package/skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/swebench-results.json +0 -10
  134. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/SUMMARY.md +0 -50
  135. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-results.json +0 -1000
  136. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/0.py +0 -16
  137. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/1.py +0 -28
  138. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/10.py +0 -25
  139. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/100.py +0 -20
  140. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/101.py +0 -15
  141. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/102.py +0 -16
  142. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/103.py +0 -15
  143. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/104.py +0 -22
  144. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/105.py +0 -39
  145. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/106.py +0 -21
  146. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/107.py +0 -35
  147. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/108.py +0 -22
  148. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/109.py +0 -41
  149. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/11.py +0 -16
  150. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/110.py +0 -20
  151. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/111.py +0 -28
  152. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/112.py +0 -14
  153. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/113.py +0 -19
  154. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/114.py +0 -16
  155. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/115.py +0 -41
  156. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/116.py +0 -12
  157. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/117.py +0 -25
  158. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/118.py +0 -26
  159. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/119.py +0 -30
  160. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/12.py +0 -21
  161. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/120.py +0 -28
  162. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/121.py +0 -10
  163. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/122.py +0 -19
  164. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/123.py +0 -31
  165. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/124.py +0 -56
  166. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/125.py +0 -20
  167. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/126.py +0 -29
  168. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/127.py +0 -47
  169. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/128.py +0 -25
  170. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/129.py +0 -61
  171. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/13.py +0 -10
  172. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/130.py +0 -29
  173. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/131.py +0 -18
  174. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/132.py +0 -36
  175. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/133.py +0 -16
  176. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/134.py +0 -27
  177. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/135.py +0 -15
  178. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/136.py +0 -19
  179. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/137.py +0 -26
  180. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/138.py +0 -8
  181. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/139.py +0 -18
  182. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/14.py +0 -9
  183. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/140.py +0 -30
  184. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/141.py +0 -35
  185. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/142.py +0 -20
  186. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/143.py +0 -35
  187. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/144.py +0 -19
  188. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/145.py +0 -22
  189. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/146.py +0 -21
  190. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/147.py +0 -22
  191. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/148.py +0 -28
  192. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/149.py +0 -17
  193. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/15.py +0 -8
  194. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/150.py +0 -15
  195. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/151.py +0 -20
  196. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/152.py +0 -16
  197. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/153.py +0 -30
  198. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/154.py +0 -15
  199. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/155.py +0 -15
  200. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/156.py +0 -32
  201. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/157.py +0 -12
  202. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/158.py +0 -11
  203. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/159.py +0 -33
  204. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/16.py +0 -8
  205. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/160.py +0 -29
  206. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/161.py +0 -24
  207. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/162.py +0 -11
  208. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/163.py +0 -14
  209. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/17.py +0 -27
  210. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/18.py +0 -23
  211. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/19.py +0 -21
  212. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/2.py +0 -10
  213. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/20.py +0 -22
  214. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/21.py +0 -13
  215. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/22.py +0 -11
  216. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/23.py +0 -8
  217. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/24.py +0 -9
  218. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/25.py +0 -24
  219. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/26.py +0 -12
  220. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/27.py +0 -6
  221. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/28.py +0 -11
  222. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/29.py +0 -11
  223. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/3.py +0 -18
  224. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/30.py +0 -8
  225. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/31.py +0 -27
  226. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/32.py +0 -50
  227. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/33.py +0 -20
  228. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/34.py +0 -6
  229. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/35.py +0 -8
  230. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/36.py +0 -14
  231. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/37.py +0 -14
  232. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/38.py +0 -11
  233. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/39.py +0 -35
  234. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/4.py +0 -14
  235. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/40.py +0 -24
  236. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/41.py +0 -13
  237. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/42.py +0 -8
  238. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/43.py +0 -22
  239. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/44.py +0 -18
  240. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/45.py +0 -6
  241. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/46.py +0 -23
  242. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/47.py +0 -14
  243. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/48.py +0 -13
  244. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/49.py +0 -14
  245. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/5.py +0 -19
  246. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/50.py +0 -12
  247. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/51.py +0 -18
  248. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/52.py +0 -8
  249. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/53.py +0 -8
  250. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/54.py +0 -17
  251. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/55.py +0 -18
  252. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/56.py +0 -22
  253. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/57.py +0 -16
  254. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/58.py +0 -9
  255. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/59.py +0 -22
  256. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/6.py +0 -26
  257. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/60.py +0 -14
  258. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/61.py +0 -22
  259. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/62.py +0 -10
  260. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/63.py +0 -25
  261. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/64.py +0 -20
  262. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/65.py +0 -14
  263. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/66.py +0 -14
  264. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/67.py +0 -16
  265. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/68.py +0 -50
  266. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/69.py +0 -21
  267. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/7.py +0 -11
  268. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/70.py +0 -26
  269. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/71.py +0 -17
  270. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/72.py +0 -21
  271. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/73.py +0 -17
  272. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/74.py +0 -21
  273. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/75.py +0 -30
  274. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/76.py +0 -20
  275. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/77.py +0 -17
  276. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/78.py +0 -24
  277. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/79.py +0 -13
  278. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/8.py +0 -17
  279. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/80.py +0 -18
  280. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/81.py +0 -54
  281. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/82.py +0 -20
  282. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/83.py +0 -21
  283. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/84.py +0 -16
  284. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/85.py +0 -12
  285. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/86.py +0 -16
  286. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/87.py +0 -29
  287. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/88.py +0 -24
  288. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/89.py +0 -23
  289. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/9.py +0 -20
  290. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/90.py +0 -20
  291. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/91.py +0 -20
  292. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/92.py +0 -25
  293. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/93.py +0 -34
  294. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/94.py +0 -33
  295. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/95.py +0 -27
  296. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/96.py +0 -28
  297. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/97.py +0 -13
  298. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/98.py +0 -15
  299. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/99.py +0 -30
  300. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/SUMMARY.md +0 -48
  301. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-12907.patch +0 -16
  302. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14182.patch +0 -59
  303. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14365.patch +0 -21
  304. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14995.patch +0 -15
  305. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-6938.patch +0 -20
  306. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-7746.patch +0 -31
  307. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-10914.patch +0 -72
  308. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-10924.patch +0 -41
  309. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11001.patch +0 -80
  310. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11019.patch +0 -489
  311. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11039.patch +0 -87
  312. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11049.patch +0 -24
  313. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11099.patch +0 -28
  314. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11133.patch +0 -20
  315. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11179.patch +0 -49
  316. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11283.patch +0 -47
  317. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11422.patch +0 -25
  318. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11564.patch +0 -285
  319. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11583.patch +0 -22
  320. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11620.patch +0 -21
  321. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11630.patch +0 -45
  322. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11742.patch +0 -32
  323. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11797.patch +0 -38
  324. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11815.patch +0 -20
  325. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11848.patch +0 -21
  326. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11905.patch +0 -16
  327. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11910.patch +0 -29
  328. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11964.patch +0 -54
  329. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11999.patch +0 -15
  330. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12113.patch +0 -31
  331. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12125.patch +0 -27
  332. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12184.patch +0 -28
  333. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12284.patch +0 -31
  334. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12286.patch +0 -29
  335. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12308.patch +0 -22
  336. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12453.patch +0 -31
  337. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12470.patch +0 -53
  338. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12497.patch +0 -26
  339. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12589.patch +0 -157
  340. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12700.patch +0 -27
  341. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12708.patch +0 -64
  342. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12747.patch +0 -15
  343. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12856.patch +0 -16
  344. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12908.patch +0 -15
  345. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12915.patch +0 -82
  346. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12983.patch +0 -21
  347. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13028.patch +0 -13
  348. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13033.patch +0 -17
  349. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13158.patch +0 -14
  350. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13220.patch +0 -57
  351. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13230.patch +0 -14
  352. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13265.patch +0 -44
  353. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13315.patch +0 -53
  354. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13321.patch +0 -33
  355. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13401.patch +0 -30
  356. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13447.patch +0 -40
  357. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13448.patch +0 -203
  358. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13551.patch +0 -17
  359. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13590.patch +0 -17
  360. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13658.patch +0 -19
  361. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13660.patch +0 -27
  362. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13710.patch +0 -23
  363. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13757.patch +0 -51
  364. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13768.patch +0 -32
  365. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13925.patch +0 -116
  366. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13933.patch +0 -62
  367. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13964.patch +0 -17
  368. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14016.patch +0 -138
  369. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14017.patch +0 -88
  370. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14155.patch +0 -74
  371. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14238.patch +0 -132
  372. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14382.patch +0 -17
  373. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14411.patch +0 -16
  374. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14534.patch +0 -29
  375. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14580.patch +0 -15
  376. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14608.patch +0 -32
  377. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14667.patch +0 -33
  378. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14672.patch +0 -59
  379. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14730.patch +0 -80
  380. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14752.patch +0 -35
  381. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14787.patch +0 -24
  382. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14855.patch +0 -23
  383. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14915.patch +0 -19
  384. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14997.patch +0 -40
  385. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14999.patch +0 -26
  386. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15061.patch +0 -24
  387. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15202.patch +0 -18
  388. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15213.patch +0 -70
  389. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15252.patch +0 -63
  390. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15320.patch +0 -36
  391. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15347.patch +0 -36
  392. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15388.patch +0 -26
  393. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15400.patch +0 -14
  394. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15498.patch +0 -14
  395. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15695.patch +0 -32
  396. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15738.patch +0 -251
  397. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15781.patch +0 -18
  398. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15789.patch +0 -50
  399. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15790.patch +0 -34
  400. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15814.patch +0 -18
  401. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15819.patch +0 -127
  402. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15851.patch +0 -16
  403. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15902.patch +0 -15
  404. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15996.patch +0 -33
  405. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16041.patch +0 -30
  406. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16046.patch +0 -16
  407. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16139.patch +0 -19
  408. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16229.patch +0 -142
  409. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16255.patch +0 -21
  410. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16379.patch +0 -32
  411. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16400.patch +0 -34
  412. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16408.patch +0 -27
  413. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16527.patch +0 -14
  414. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16595.patch +0 -14
  415. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16816.patch +0 -30
  416. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16820.patch +0 -188
  417. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16873.patch +0 -37
  418. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-17051.patch +0 -51
  419. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-17087.patch +0 -21
  420. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-18869.patch +0 -75
  421. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-22711.patch +0 -42
  422. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-22835.patch +0 -58
  423. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23299.patch +0 -92
  424. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23314.patch +0 -16
  425. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23476.patch +0 -73
  426. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23562.patch +0 -33
  427. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23563.patch +0 -22
  428. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23913.patch +0 -207
  429. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23964.patch +0 -29
  430. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23987.patch +0 -43
  431. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24149.patch +0 -27
  432. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24265.patch +0 -76
  433. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24334.patch +0 -17
  434. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24970.patch +0 -24
  435. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25079.patch +0 -15
  436. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25311.patch +0 -29
  437. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25332.patch +0 -28
  438. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25433.patch +0 -240
  439. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25442.patch +0 -28
  440. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25498.patch +0 -79
  441. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-26011.patch +0 -90
  442. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-26020.patch +0 -35
  443. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-2848.patch +0 -55
  444. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3010.patch +0 -60
  445. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3190.patch +0 -18
  446. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3407.patch +0 -28
  447. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-4045.patch +0 -23
  448. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-4992.patch +0 -33
  449. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-5063.patch +0 -99
  450. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-1963.patch +0 -117
  451. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2148.patch +0 -37
  452. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2317.patch +0 -54
  453. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2674.patch +0 -157
  454. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-3362.patch +0 -19
  455. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-863.patch +0 -35
  456. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-3364.patch +0 -392
  457. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4094.patch +0 -40
  458. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4248.patch +0 -124
  459. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4493.patch +0 -39
  460. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-5131.patch +0 -45
  461. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-5859.patch +0 -13
  462. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-6506.patch +0 -25
  463. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7080.patch +0 -33
  464. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7114.patch +0 -161
  465. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7228.patch +0 -34
  466. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7993.patch +0 -21
  467. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-11143.patch +0 -25
  468. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-11148.patch +0 -57
  469. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5103.patch +0 -345
  470. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5221.patch +0 -28
  471. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5227.patch +0 -16
  472. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5413.patch +0 -35
  473. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5495.patch +0 -24
  474. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5692.patch +0 -33
  475. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-6116.patch +0 -12
  476. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7168.patch +0 -28
  477. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7220.patch +0 -535
  478. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7373.patch +0 -47
  479. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7432.patch +0 -76
  480. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7490.patch +0 -61
  481. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-8365.patch +0 -123
  482. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-8906.patch +0 -38
  483. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-9359.patch +0 -22
  484. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10297.patch +0 -53
  485. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10508.patch +0 -17
  486. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10949.patch +0 -94
  487. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-11040.patch +0 -39
  488. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-11281.patch +0 -65
  489. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-12471.patch +0 -54
  490. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13142.patch +0 -35
  491. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13241.patch +0 -29
  492. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13439.patch +0 -34
  493. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13496.patch +0 -59
  494. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13497.patch +0 -15
  495. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13584.patch +0 -25
  496. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13779.patch +0 -16
  497. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14087.patch +0 -33
  498. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14092.patch +0 -35
  499. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14894.patch +0 -24
  500. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14983.patch +0 -23
  501. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-15512.patch +0 -77
  502. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-15535.patch +0 -44
  503. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25500.patch +0 -64
  504. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25570.patch +0 -96
  505. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25638.patch +0 -52
  506. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25747.patch +0 -29
  507. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-10325.patch +0 -185
  508. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-10451.patch +0 -129
  509. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-11445.patch +0 -119
  510. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7686.patch +0 -19
  511. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7738.patch +0 -37
  512. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7975.patch +0 -89
  513. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8273.patch +0 -38
  514. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8282.patch +0 -95
  515. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8435.patch +0 -104
  516. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8474.patch +0 -73
  517. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8506.patch +0 -49
  518. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8595.patch +0 -15
  519. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8627.patch +0 -50
  520. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8713.patch +0 -41
  521. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8721.patch +0 -25
  522. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8801.patch +0 -73
  523. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11400.patch +0 -27
  524. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11870.patch +0 -96
  525. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11897.patch +0 -134
  526. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12171.patch +0 -17
  527. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12236.patch +0 -20
  528. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12419.patch +0 -35
  529. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12454.patch +0 -55
  530. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12481.patch +0 -68
  531. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13031.patch +0 -33
  532. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13043.patch +0 -35
  533. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13146.patch +0 -32
  534. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13177.patch +0 -36
  535. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13437.patch +0 -15
  536. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13471.patch +0 -26
  537. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13480.patch +0 -13
  538. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13647.patch +0 -41
  539. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13773.patch +0 -22
  540. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13895.patch +0 -28
  541. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13915.patch +0 -97
  542. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13971.patch +0 -19
  543. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14024.patch +0 -27
  544. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14308.patch +0 -20
  545. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14317.patch +0 -42
  546. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14396.patch +0 -38
  547. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14774.patch +0 -13
  548. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14817.patch +0 -54
  549. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15011.patch +0 -38
  550. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15308.patch +0 -21
  551. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15345.patch +0 -27
  552. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15346.patch +0 -26
  553. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15609.patch +0 -29
  554. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15678.patch +0 -92
  555. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16106.patch +0 -78
  556. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16281.patch +0 -141
  557. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16503.patch +0 -69
  558. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16792.patch +0 -16
  559. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16988.patch +0 -16
  560. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17022.patch +0 -65
  561. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17139.patch +0 -33
  562. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17630.patch +0 -90
  563. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17655.patch +0 -23
  564. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18057.patch +0 -28
  565. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18087.patch +0 -81
  566. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18189.patch +0 -13
  567. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18199.patch +0 -23
  568. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18532.patch +0 -130
  569. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18621.patch +0 -15
  570. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18698.patch +0 -105
  571. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18835.patch +0 -30
  572. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19007.patch +0 -66
  573. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19254.patch +0 -72
  574. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19487.patch +0 -23
  575. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20049.patch +0 -125
  576. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20154.patch +0 -46
  577. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20212.patch +0 -17
  578. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20322.patch +0 -24
  579. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20442.patch +0 -27
  580. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20590.patch +0 -23
  581. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20639.patch +0 -66
  582. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21055.patch +0 -56
  583. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21171.patch +0 -36
  584. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21379.patch +0 -36
  585. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21612.patch +0 -26
  586. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21614.patch +0 -37
  587. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21627.patch +0 -26
  588. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21847.patch +0 -24
  589. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22005.patch +0 -36
  590. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22714.patch +0 -486
  591. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22840.patch +0 -76
  592. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23117.patch +0 -24
  593. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23191.patch +0 -302
  594. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23262.patch +0 -13
  595. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24066.patch +0 -66
  596. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24102.patch +0 -12
  597. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24152.patch +0 -25
  598. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24213.patch +0 -25
  599. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24909.patch +0 -19
  600. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-predictions.json +0 -1502
  601. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-results.json +0 -1516
  602. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/SUMMARY.md +0 -48
  603. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-12907.patch +0 -31
  604. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14182.patch +0 -42
  605. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14365.patch +0 -50
  606. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14995.patch +0 -17
  607. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-6938.patch +0 -13
  608. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-7746.patch +0 -21
  609. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-10914.patch +0 -76
  610. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-10924.patch +0 -33
  611. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11001.patch +0 -35
  612. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11019.patch +0 -90
  613. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11039.patch +0 -37
  614. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11049.patch +0 -10
  615. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11099.patch +0 -24
  616. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11133.patch +0 -21
  617. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11179.patch +0 -47
  618. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11283.patch +0 -35
  619. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11422.patch +0 -18
  620. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11564.patch +0 -62
  621. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11583.patch +0 -25
  622. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11620.patch +0 -19
  623. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11630.patch +0 -79
  624. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11742.patch +0 -38
  625. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11797.patch +0 -15
  626. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11815.patch +0 -20
  627. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11848.patch +0 -19
  628. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11905.patch +0 -18
  629. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11910.patch +0 -17
  630. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11964.patch +0 -31
  631. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11999.patch +0 -26
  632. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12113.patch +0 -27
  633. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12125.patch +0 -17
  634. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12184.patch +0 -83
  635. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12284.patch +0 -21
  636. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12286.patch +0 -21
  637. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12308.patch +0 -24
  638. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12453.patch +0 -31
  639. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12470.patch +0 -137
  640. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12497.patch +0 -21
  641. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12589.patch +0 -28
  642. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12700.patch +0 -17
  643. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12708.patch +0 -22
  644. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12747.patch +0 -43
  645. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12856.patch +0 -61
  646. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12908.patch +0 -19
  647. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12915.patch +0 -39
  648. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12983.patch +0 -21
  649. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13028.patch +0 -13
  650. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13033.patch +0 -26
  651. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13158.patch +0 -12
  652. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13220.patch +0 -55
  653. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-predictions.json +0 -252
  654. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-results.json +0 -266
  655. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/SUMMARY.md +0 -32
  656. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-12907.patch +0 -23
  657. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14182.patch +0 -19
  658. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14365.patch +0 -44
  659. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14995.patch +0 -19
  660. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-6938.patch +0 -14
  661. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-7746.patch +0 -28
  662. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-10914.patch +0 -76
  663. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-10924.patch +0 -25
  664. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11001.patch +0 -20
  665. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11019.patch +0 -158
  666. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11039.patch +0 -38
  667. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11049.patch +0 -18
  668. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11099.patch +0 -24
  669. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11133.patch +0 -15
  670. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11179.patch +0 -14
  671. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11283.patch +0 -29
  672. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11422.patch +0 -21
  673. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11564.patch +0 -140
  674. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11583.patch +0 -24
  675. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11620.patch +0 -18
  676. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11630.patch +0 -38
  677. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11742.patch +0 -49
  678. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11797.patch +0 -18
  679. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11815.patch +0 -22
  680. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11848.patch +0 -24
  681. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11905.patch +0 -32
  682. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11910.patch +0 -100
  683. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11964.patch +0 -62
  684. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11999.patch +0 -20
  685. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12113.patch +0 -24
  686. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12125.patch +0 -17
  687. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12184.patch +0 -82
  688. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12284.patch +0 -15
  689. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12286.patch +0 -41
  690. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12308.patch +0 -31
  691. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12453.patch +0 -32
  692. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12470.patch +0 -21
  693. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12497.patch +0 -17
  694. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12589.patch +0 -56
  695. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12700.patch +0 -28
  696. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12708.patch +0 -61
  697. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12747.patch +0 -15
  698. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12856.patch +0 -62
  699. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12908.patch +0 -21
  700. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12915.patch +0 -18
  701. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12983.patch +0 -21
  702. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13028.patch +0 -18
  703. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13033.patch +0 -15
  704. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13158.patch +0 -15
  705. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13220.patch +0 -126
  706. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13230.patch +0 -24
  707. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13265.patch +0 -87
  708. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13315.patch +0 -16
  709. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13321.patch +0 -29
  710. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13401.patch +0 -31
  711. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13447.patch +0 -42
  712. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13448.patch +0 -94
  713. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13551.patch +0 -16
  714. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13590.patch +0 -15
  715. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13658.patch +0 -22
  716. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13660.patch +0 -22
  717. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13710.patch +0 -42
  718. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13757.patch +0 -32
  719. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13768.patch +0 -32
  720. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13925.patch +0 -20
  721. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13933.patch +0 -31
  722. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13964.patch +0 -15
  723. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14016.patch +0 -103
  724. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14017.patch +0 -20
  725. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14155.patch +0 -121
  726. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14238.patch +0 -14
  727. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14382.patch +0 -15
  728. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14411.patch +0 -16
  729. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14534.patch +0 -15
  730. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14580.patch +0 -15
  731. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14608.patch +0 -34
  732. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14667.patch +0 -29
  733. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14672.patch +0 -12
  734. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14730.patch +0 -43
  735. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14752.patch +0 -32
  736. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14787.patch +0 -35
  737. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14855.patch +0 -23
  738. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14915.patch +0 -21
  739. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14997.patch +0 -15
  740. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14999.patch +0 -28
  741. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15061.patch +0 -19
  742. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15202.patch +0 -22
  743. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15213.patch +0 -16
  744. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15252.patch +0 -59
  745. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15320.patch +0 -13
  746. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15347.patch +0 -15
  747. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15388.patch +0 -25
  748. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15400.patch +0 -19
  749. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15498.patch +0 -14
  750. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15695.patch +0 -39
  751. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15738.patch +0 -185
  752. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15781.patch +0 -20
  753. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15789.patch +0 -69
  754. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15790.patch +0 -38
  755. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15814.patch +0 -14
  756. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15819.patch +0 -101
  757. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15851.patch +0 -40
  758. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15902.patch +0 -17
  759. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15996.patch +0 -28
  760. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16041.patch +0 -27
  761. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16046.patch +0 -17
  762. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16139.patch +0 -15
  763. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16229.patch +0 -19
  764. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16255.patch +0 -17
  765. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16379.patch +0 -21
  766. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16400.patch +0 -29
  767. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16408.patch +0 -39
  768. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16527.patch +0 -14
  769. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16595.patch +0 -39
  770. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16816.patch +0 -27
  771. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16820.patch +0 -98
  772. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16873.patch +0 -23
  773. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16910.patch +0 -39
  774. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-17051.patch +0 -15
  775. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-17087.patch +0 -19
  776. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-18869.patch +0 -29
  777. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-22711.patch +0 -38
  778. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-22835.patch +0 -27
  779. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23299.patch +0 -65
  780. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23314.patch +0 -15
  781. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23476.patch +0 -19
  782. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23562.patch +0 -23
  783. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23563.patch +0 -14
  784. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23913.patch +0 -95
  785. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23964.patch +0 -14
  786. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23987.patch +0 -55
  787. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24149.patch +0 -20
  788. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24265.patch +0 -52
  789. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24334.patch +0 -23
  790. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24970.patch +0 -24
  791. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25079.patch +0 -38
  792. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25311.patch +0 -62
  793. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25332.patch +0 -42
  794. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25433.patch +0 -126
  795. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25442.patch +0 -27
  796. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25498.patch +0 -67
  797. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-26011.patch +0 -55
  798. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-26020.patch +0 -42
  799. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-2848.patch +0 -95
  800. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3010.patch +0 -17
  801. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3190.patch +0 -73
  802. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3407.patch +0 -31
  803. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-4045.patch +0 -21
  804. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-4992.patch +0 -47
  805. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-5063.patch +0 -90
  806. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-1963.patch +0 -29
  807. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2148.patch +0 -79
  808. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2317.patch +0 -38
  809. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2674.patch +0 -58
  810. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-3362.patch +0 -17
  811. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-863.patch +0 -20
  812. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-3364.patch +0 -159
  813. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4094.patch +0 -17
  814. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4248.patch +0 -134
  815. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4493.patch +0 -20
  816. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-5131.patch +0 -23
  817. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-5859.patch +0 -15
  818. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-6506.patch +0 -36
  819. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7080.patch +0 -31
  820. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7114.patch +0 -51
  821. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7228.patch +0 -80
  822. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7993.patch +0 -54
  823. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-11143.patch +0 -17
  824. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-11148.patch +0 -27
  825. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5103.patch +0 -350
  826. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5221.patch +0 -18
  827. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5227.patch +0 -15
  828. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5413.patch +0 -20
  829. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5495.patch +0 -44
  830. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5692.patch +0 -69
  831. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-6116.patch +0 -17
  832. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7168.patch +0 -14
  833. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7220.patch +0 -391
  834. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7373.patch +0 -48
  835. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7432.patch +0 -99
  836. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7490.patch +0 -4
  837. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-8365.patch +0 -27
  838. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-8906.patch +0 -23
  839. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-9359.patch +0 -89
  840. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10297.patch +0 -22
  841. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10508.patch +0 -37
  842. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10949.patch +0 -66
  843. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-11040.patch +0 -147
  844. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-11281.patch +0 -107
  845. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-12471.patch +0 -22
  846. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13142.patch +0 -19
  847. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13241.patch +0 -26
  848. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13439.patch +0 -29
  849. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13496.patch +0 -62
  850. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13497.patch +0 -23
  851. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13584.patch +0 -38
  852. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13779.patch +0 -16
  853. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14087.patch +0 -17
  854. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14092.patch +0 -61
  855. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14894.patch +0 -45
  856. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14983.patch +0 -36
  857. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-15512.patch +0 -143
  858. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-15535.patch +0 -17
  859. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25500.patch +0 -79
  860. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25570.patch +0 -71
  861. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25638.patch +0 -70
  862. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25747.patch +0 -14
  863. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-10325.patch +0 -153
  864. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-10451.patch +0 -99
  865. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-11445.patch +0 -67
  866. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7686.patch +0 -50
  867. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7738.patch +0 -22
  868. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7975.patch +0 -92
  869. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8273.patch +0 -103
  870. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8282.patch +0 -45
  871. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8435.patch +0 -56
  872. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8474.patch +0 -21
  873. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8506.patch +0 -33
  874. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8595.patch +0 -45
  875. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8627.patch +0 -62
  876. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8713.patch +0 -19
  877. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8721.patch +0 -17
  878. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8801.patch +0 -101
  879. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11400.patch +0 -55
  880. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11870.patch +0 -47
  881. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11897.patch +0 -152
  882. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12171.patch +0 -20
  883. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12236.patch +0 -17
  884. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12419.patch +0 -37
  885. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12454.patch +0 -22
  886. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12481.patch +0 -44
  887. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13031.patch +0 -71
  888. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13043.patch +0 -25
  889. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13146.patch +0 -54
  890. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13177.patch +0 -14
  891. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13437.patch +0 -17
  892. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13471.patch +0 -15
  893. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13480.patch +0 -19
  894. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13647.patch +0 -22
  895. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13773.patch +0 -32
  896. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13895.patch +0 -55
  897. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13915.patch +0 -70
  898. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13971.patch +0 -20
  899. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14024.patch +0 -56
  900. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14308.patch +0 -189
  901. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14317.patch +0 -41
  902. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14396.patch +0 -32
  903. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14774.patch +0 -15
  904. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14817.patch +0 -19
  905. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15011.patch +0 -31
  906. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15308.patch +0 -21
  907. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15345.patch +0 -13
  908. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15346.patch +0 -21
  909. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15609.patch +0 -11
  910. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15678.patch +0 -87
  911. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16106.patch +0 -66
  912. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16281.patch +0 -88
  913. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16503.patch +0 -18
  914. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16792.patch +0 -20
  915. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16988.patch +0 -22
  916. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17022.patch +0 -38
  917. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17139.patch +0 -48
  918. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17630.patch +0 -116
  919. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17655.patch +0 -27
  920. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18057.patch +0 -31
  921. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18087.patch +0 -55
  922. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18189.patch +0 -15
  923. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18199.patch +0 -25
  924. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18532.patch +0 -84
  925. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18621.patch +0 -21
  926. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18698.patch +0 -60
  927. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18835.patch +0 -39
  928. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19007.patch +0 -143
  929. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19254.patch +0 -79
  930. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19487.patch +0 -37
  931. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20049.patch +0 -37
  932. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20154.patch +0 -27
  933. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20212.patch +0 -15
  934. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20322.patch +0 -23
  935. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20442.patch +0 -73
  936. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20590.patch +0 -16
  937. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20639.patch +0 -20
  938. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21055.patch +0 -47
  939. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21171.patch +0 -27
  940. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21379.patch +0 -27
  941. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21612.patch +0 -46
  942. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21614.patch +0 -23
  943. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21627.patch +0 -28
  944. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21847.patch +0 -24
  945. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22005.patch +0 -36
  946. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22714.patch +0 -19
  947. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22840.patch +0 -19
  948. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23117.patch +0 -18
  949. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23191.patch +0 -42
  950. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23262.patch +0 -18
  951. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24066.patch +0 -26
  952. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24102.patch +0 -17
  953. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24152.patch +0 -23
  954. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24213.patch +0 -18
  955. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24909.patch +0 -39
  956. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-predictions.json +0 -1802
  957. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-results.json +0 -1816
  958. package/skills/loki-mode/benchmarks/results/SUMMARY.md +0 -32
  959. package/skills/loki-mode/benchmarks/results/humaneval-loki-results.json +0 -1001
  960. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/0.py +0 -21
  961. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/1.py +0 -36
  962. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/10.py +0 -30
  963. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/100.py +0 -23
  964. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/101.py +0 -17
  965. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/102.py +0 -21
  966. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/103.py +0 -22
  967. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/104.py +0 -23
  968. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/105.py +0 -34
  969. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/106.py +0 -26
  970. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/107.py +0 -40
  971. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/108.py +0 -27
  972. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/109.py +0 -53
  973. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/11.py +0 -21
  974. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/110.py +0 -25
  975. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/111.py +0 -34
  976. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/112.py +0 -20
  977. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/113.py +0 -25
  978. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/114.py +0 -24
  979. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/115.py +0 -41
  980. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/116.py +0 -17
  981. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/117.py +0 -30
  982. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/118.py +0 -31
  983. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/119.py +0 -35
  984. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/12.py +0 -27
  985. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/120.py +0 -33
  986. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/121.py +0 -15
  987. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/122.py +0 -24
  988. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/123.py +0 -35
  989. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/124.py +0 -58
  990. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/125.py +0 -25
  991. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/126.py +0 -34
  992. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/127.py +0 -41
  993. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/128.py +0 -31
  994. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/129.py +0 -62
  995. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/13.py +0 -17
  996. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/130.py +0 -35
  997. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/131.py +0 -24
  998. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/132.py +0 -32
  999. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/133.py +0 -21
  1000. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/134.py +0 -23
  1001. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/135.py +0 -20
  1002. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/136.py +0 -24
  1003. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/137.py +0 -31
  1004. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/138.py +0 -13
  1005. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/139.py +0 -23
  1006. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/14.py +0 -14
  1007. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/140.py +0 -26
  1008. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/141.py +0 -42
  1009. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/142.py +0 -25
  1010. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/143.py +0 -40
  1011. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/144.py +0 -24
  1012. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/145.py +0 -24
  1013. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/146.py +0 -21
  1014. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/147.py +0 -32
  1015. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/148.py +0 -33
  1016. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/149.py +0 -22
  1017. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/15.py +0 -13
  1018. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/150.py +0 -26
  1019. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/151.py +0 -22
  1020. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/152.py +0 -21
  1021. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/153.py +0 -32
  1022. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/154.py +0 -25
  1023. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/155.py +0 -20
  1024. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/156.py +0 -39
  1025. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/157.py +0 -28
  1026. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/158.py +0 -16
  1027. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/159.py +0 -36
  1028. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/16.py +0 -13
  1029. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/160.py +0 -34
  1030. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/161.py +0 -29
  1031. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/162.py +0 -16
  1032. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/163.py +0 -18
  1033. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/17.py +0 -27
  1034. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/18.py +0 -23
  1035. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/19.py +0 -34
  1036. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/2.py +0 -15
  1037. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/20.py +0 -27
  1038. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/21.py +0 -18
  1039. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/22.py +0 -16
  1040. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/23.py +0 -13
  1041. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/24.py +0 -14
  1042. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/25.py +0 -29
  1043. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/26.py +0 -17
  1044. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/27.py +0 -11
  1045. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/28.py +0 -16
  1046. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/29.py +0 -16
  1047. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/3.py +0 -23
  1048. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/30.py +0 -13
  1049. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/31.py +0 -34
  1050. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/32.py +0 -37
  1051. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/33.py +0 -19
  1052. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/34.py +0 -11
  1053. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/35.py +0 -13
  1054. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/36.py +0 -19
  1055. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/37.py +0 -19
  1056. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/38.py +0 -25
  1057. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/39.py +0 -40
  1058. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/4.py +0 -23
  1059. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/40.py +0 -43
  1060. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/41.py +0 -18
  1061. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/42.py +0 -13
  1062. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/43.py +0 -27
  1063. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/44.py +0 -25
  1064. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/45.py +0 -11
  1065. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/46.py +0 -35
  1066. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/47.py +0 -19
  1067. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/48.py +0 -18
  1068. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/49.py +0 -26
  1069. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/5.py +0 -25
  1070. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/50.py +0 -10
  1071. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/51.py +0 -23
  1072. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/52.py +0 -13
  1073. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/53.py +0 -13
  1074. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/54.py +0 -22
  1075. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/55.py +0 -20
  1076. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/56.py +0 -27
  1077. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/57.py +0 -27
  1078. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/58.py +0 -14
  1079. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/59.py +0 -32
  1080. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/6.py +0 -33
  1081. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/60.py +0 -19
  1082. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/61.py +0 -27
  1083. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/62.py +0 -15
  1084. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/63.py +0 -30
  1085. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/64.py +0 -29
  1086. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/65.py +0 -18
  1087. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/66.py +0 -23
  1088. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/67.py +0 -22
  1089. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/68.py +0 -55
  1090. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/69.py +0 -26
  1091. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/7.py +0 -16
  1092. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/70.py +0 -35
  1093. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/71.py +0 -29
  1094. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/72.py +0 -24
  1095. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/73.py +0 -22
  1096. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/74.py +0 -26
  1097. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/75.py +0 -42
  1098. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/76.py +0 -25
  1099. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/77.py +0 -25
  1100. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/78.py +0 -29
  1101. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/79.py +0 -18
  1102. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/8.py +0 -24
  1103. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/80.py +0 -26
  1104. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/81.py +0 -61
  1105. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/82.py +0 -21
  1106. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/83.py +0 -13
  1107. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/84.py +0 -21
  1108. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/85.py +0 -17
  1109. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/86.py +0 -21
  1110. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/87.py +0 -31
  1111. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/88.py +0 -29
  1112. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/89.py +0 -25
  1113. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/9.py +0 -25
  1114. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/90.py +0 -21
  1115. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/91.py +0 -31
  1116. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/92.py +0 -29
  1117. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/93.py +0 -30
  1118. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/94.py +0 -32
  1119. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/95.py +0 -32
  1120. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/96.py +0 -38
  1121. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/97.py +0 -16
  1122. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/98.py +0 -20
  1123. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/99.py +0 -36
  1124. package/skills/loki-mode/benchmarks/run-benchmarks.sh +0 -1948
  1125. package/skills/loki-mode/benchmarks/submission-template/README.md +0 -111
  1126. package/skills/loki-mode/benchmarks/submission-template/metadata.yaml +0 -76
  1127. package/skills/loki-mode/demo/README.md +0 -137
  1128. package/skills/loki-mode/demo/loki-demo.gif +0 -0
  1129. package/skills/loki-mode/demo/record-demo.sh +0 -69
  1130. package/skills/loki-mode/demo/record-full-demo.sh +0 -208
  1131. package/skills/loki-mode/demo/recordings/loki-demo.cast +0 -93
  1132. package/skills/loki-mode/demo/run-demo-auto.sh +0 -293
  1133. package/skills/loki-mode/demo/run-demo.sh +0 -323
  1134. package/skills/loki-mode/demo/vhs-tape.tape +0 -223
  1135. package/skills/loki-mode/demo/voice-over-script.md +0 -246
  1136. package/skills/loki-mode/examples/api-only.md +0 -79
  1137. package/skills/loki-mode/examples/full-stack-demo.md +0 -123
  1138. package/skills/loki-mode/examples/simple-todo-app.md +0 -60
  1139. package/skills/loki-mode/examples/static-landing-page.md +0 -73
  1140. package/skills/loki-mode/examples/todo-app-generated/.loki/CONTINUITY.md +0 -59
  1141. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/completed.json +0 -1
  1142. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/dead-letter.json +0 -1
  1143. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/failed.json +0 -1
  1144. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/in-progress.json +0 -1
  1145. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/pending.json +0 -382
  1146. package/skills/loki-mode/examples/todo-app-generated/.loki/state/orchestrator.json +0 -41
  1147. package/skills/loki-mode/examples/todo-app-generated/E2E_VERIFICATION_REPORT.md +0 -668
  1148. package/skills/loki-mode/examples/todo-app-generated/PRD.md +0 -60
  1149. package/skills/loki-mode/examples/todo-app-generated/TASK_018_COMPLETION.md +0 -229
  1150. package/skills/loki-mode/examples/todo-app-generated/TESTING_DOCUMENTATION.md +0 -327
  1151. package/skills/loki-mode/examples/todo-app-generated/TEST_REPORT.md +0 -201
  1152. package/skills/loki-mode/examples/todo-app-generated/VERIFICATION_SUMMARY.txt +0 -362
  1153. package/skills/loki-mode/examples/todo-app-generated/backend/package-lock.json +0 -2698
  1154. package/skills/loki-mode/examples/todo-app-generated/backend/package.json +0 -26
  1155. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/database.ts +0 -24
  1156. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/db.ts +0 -35
  1157. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/index.ts +0 -2
  1158. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/migrations.ts +0 -31
  1159. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/schema.sql +0 -8
  1160. package/skills/loki-mode/examples/todo-app-generated/backend/src/index.ts +0 -44
  1161. package/skills/loki-mode/examples/todo-app-generated/backend/src/routes/todos.ts +0 -155
  1162. package/skills/loki-mode/examples/todo-app-generated/backend/src/types/index.ts +0 -35
  1163. package/skills/loki-mode/examples/todo-app-generated/backend/todos.db-shm +0 -0
  1164. package/skills/loki-mode/examples/todo-app-generated/backend/todos.db-wal +0 -0
  1165. package/skills/loki-mode/examples/todo-app-generated/backend/tsconfig.json +0 -30
  1166. package/skills/loki-mode/examples/todo-app-generated/frontend/index.html +0 -13
  1167. package/skills/loki-mode/examples/todo-app-generated/frontend/package-lock.json +0 -2014
  1168. package/skills/loki-mode/examples/todo-app-generated/frontend/package.json +0 -26
  1169. package/skills/loki-mode/examples/todo-app-generated/frontend/src/App.css +0 -384
  1170. package/skills/loki-mode/examples/todo-app-generated/frontend/src/App.tsx +0 -81
  1171. package/skills/loki-mode/examples/todo-app-generated/frontend/src/api/todos.ts +0 -57
  1172. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/ConfirmDialog.tsx +0 -26
  1173. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/EmptyState.tsx +0 -8
  1174. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoForm.tsx +0 -43
  1175. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoItem.tsx +0 -36
  1176. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoList.tsx +0 -27
  1177. package/skills/loki-mode/examples/todo-app-generated/frontend/src/hooks/useTodos.ts +0 -81
  1178. package/skills/loki-mode/examples/todo-app-generated/frontend/src/index.css +0 -48
  1179. package/skills/loki-mode/examples/todo-app-generated/frontend/src/main.tsx +0 -10
  1180. package/skills/loki-mode/examples/todo-app-generated/frontend/src/vite-env.d.ts +0 -1
  1181. package/skills/loki-mode/examples/todo-app-generated/frontend/tsconfig.json +0 -23
  1182. package/skills/loki-mode/examples/todo-app-generated/frontend/tsconfig.node.json +0 -10
  1183. package/skills/loki-mode/examples/todo-app-generated/frontend/vite.config.ts +0 -15
  1184. package/skills/theme-factory/theme-showcase.pdf +0 -0
  1185. package/skills/web-artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
@@ -1,33 +0,0 @@
1
- This repository doesn't seem to contain the Django source code. This is a different project. The issue is about Django's session handling. Let me understand the issue better and write a patch based on the traceback information provided.
2
-
3
- Looking at the issue, the problem is in `django/contrib/sessions/backends/base.py`. The `_legacy_decode` method is called when the normal decode fails, but `_legacy_decode` itself can fail with `binascii.Error: Incorrect padding` when the session data is corrupted or invalid.
4
-
5
- The fix should catch this exception and return an empty dictionary (like other decode errors), rather than letting it propagate and crash the application.
6
-
7
- Based on the traceback:
8
- 1. Line 118: `decode()` tries `signing.loads()` which fails with `BadSignature`
9
- 2. Line 122: Falls back to `_legacy_decode()`
10
- 3. Line 126 in `_legacy_decode`: `base64.b64decode()` fails with `binascii.Error: Incorrect padding`
11
-
12
- The fix should wrap the `_legacy_decode` method to handle `binascii.Error` exceptions and return an empty session dictionary.
13
-
14
- Let me look at the commit referenced in the hints: `d4fff711d4c97356bd6ba1273d2a5e349326eb5f` which caused the regression.
15
-
16
- Based on my understanding of the Django session code and the issue description, here's the patch:
17
-
18
- --- a/django/contrib/sessions/backends/base.py
19
- +++ b/django/contrib/sessions/backends/base.py
20
- @@ -1,3 +1,4 @@
21
- +import binascii
22
- import logging
23
- import string
24
- from datetime import datetime, timedelta
25
- @@ -121,7 +122,7 @@ class SessionBase:
26
- return signing.loads(session_data, salt=self.key_salt, serializer=self.serializer)
27
- # RemovedInDjango40Warning: when the deprecation ends, handle here
28
- # exceptions similar to what _legacy_decode() does now.
29
- - except signing.BadSignature:
30
- + except (signing.BadSignature, binascii.Error):
31
- try:
32
- return self._legacy_decode(session_data)
33
- except Exception:
@@ -1,30 +0,0 @@
1
- Based on my knowledge of Django's source code and the issue description, I can create the patch. The Field class is in `django/db/models/fields/__init__.py` and the comparison methods use `creation_counter`. The fix needs to incorporate `self.model` into the comparison.
2
-
3
- --- a/django/db/models/fields/__init__.py
4
- +++ b/django/db/models/fields/__init__.py
5
- @@ -516,17 +516,21 @@ class Field(RegisterLookupMixin):
6
- def __eq__(self, other):
7
- # Needed for @total_ordering
8
- if isinstance(other, Field):
9
- - return self.creation_counter == other.creation_counter
10
- + return (
11
- + self.creation_counter == other.creation_counter and
12
- + self.model == other.model
13
- + )
14
- return NotImplemented
15
-
16
- def __lt__(self, other):
17
- # This is needed because bisect does not take a comparison function.
18
- if isinstance(other, Field):
19
- - return self.creation_counter < other.creation_counter
20
- + if self.creation_counter == other.creation_counter:
21
- + return (self.model._meta.app_label, self.model._meta.model_name) < (other.model._meta.app_label, other.model._meta.model_name)
22
- + return self.creation_counter < other.creation_counter
23
- return NotImplemented
24
-
25
- def __hash__(self):
26
- - return hash(self.creation_counter)
27
- + return hash((self.creation_counter, self.model))
28
-
29
- def __deepcopy__(self, memodict):
30
- # We don't have to deepcopy very much here, since most things are not
@@ -1,40 +0,0 @@
1
- Based on my knowledge of Django's admin codebase (specifically Django 3.x/4.x era when this issue was likely filed), I'll generate the patch. The `_build_app_dict` method in `django/contrib/admin/sites.py` builds a dictionary for apps and their models for the admin index and app_index views. The issue requests:
2
-
3
- 1. Adding the `model` class to the model info dictionary in `app_list`
4
- 2. Making `_build_app_dict` public by renaming it to `build_app_dict`
5
-
6
- Here's the patch:
7
-
8
- --- a/django/contrib/admin/sites.py
9
- +++ b/django/contrib/admin/sites.py
10
- @@ -433,6 +433,7 @@ class AdminSite:
11
- 'admin_url': admin_url,
12
- 'add_url': add_url,
13
- 'view_only': view_only,
14
- + 'model': model,
15
- })
16
-
17
- if app_dict:
18
- @@ -486,7 +487,7 @@ class AdminSite:
19
-
20
- return app_dict
21
-
22
- - def _build_app_dict(self, request, label=None):
23
- + def build_app_dict(self, request, label=None):
24
- """
25
- Build the app dictionary. The optional `label` parameter filters models
26
- of a specific app.
27
- @@ -514,13 +515,13 @@ class AdminSite:
28
-
29
- return app_dict
30
-
31
- def get_app_list(self, request, app_label=None):
32
- """
33
- Return a sorted list of all the installed apps that have been
34
- registered in this site.
35
- """
36
- - app_dict = self._build_app_dict(request, app_label)
37
- + app_dict = self.build_app_dict(request, app_label)
38
-
39
- # Sort the apps alphabetically.
40
- app_list = sorted(app_dict.values(), key=lambda x: x['name'].lower())
@@ -1,203 +0,0 @@
1
- Let me understand the issue from the problem statement and hints:
2
-
3
- 1. **Issue**: When `TEST: {"MIGRATE": False}` is set, the test runner crashes because:
4
- - It tries to serialize the database contents via `serialize_db_to_string()`
5
- - But since migrations weren't run, tables like `django_admin_log` don't exist
6
- - This causes a `ProgrammingError: relation "django_admin_log" does not exist`
7
-
8
- 2. **Root cause from hints**: When `MIGRATE` is `False`, Django should still synchronize all apps (create tables) using `run_syncdb=True`, but it currently only does this when `MIGRATE` is `True`.
9
-
10
- 3. **Fix from hints**: Run `migrate --run-syncdb` with `MIGRATION_MODULES` set to `None` for all apps, which causes Django to create tables without running actual migrations.
11
-
12
- Let me create the patch based on the Django 3.1 code structure. Looking at the traceback:
13
-
14
- ```python
15
- # In django/db/backends/base/creation.py, line 78
16
- self.connection._test_serialized_contents = self.serialize_db_to_string()
17
- ```
18
-
19
- The issue is in `create_test_db()` method. When `MIGRATE` is `False`, Django still tries to serialize the database, but the tables don't exist because migrations weren't run. The fix needs to:
20
- 1. When `MIGRATE` is `False`, still run `syncdb` to create tables (just without actual migrations)
21
- 2. This is done by setting `MIGRATION_MODULES` to `{app.label: None}` for all apps and running `migrate --run-syncdb`
22
-
23
- Based on the traceback and hints, here's the patch for `django/db/backends/base/creation.py`:
24
-
25
- --- a/django/db/backends/base/creation.py
26
- +++ b/django/db/backends/base/creation.py
27
- @@ -58,6 +58,7 @@ class BaseDatabaseCreation:
28
- test_database_name = self._get_test_db_name()
29
-
30
- if verbosity >= 1:
31
- + from django.apps import apps
32
- action = 'Creating'
33
- if keepdb:
34
- action = "Using existing"
35
- @@ -71,14 +72,28 @@ class BaseDatabaseCreation:
36
- # We then serialize the current state of the database into a string
37
- # and store it on the connection. This slightly horrific process is so
38
- # people who are testing on databases without transactions or instantiate
39
- - # a test database from a .sql script can still use TransactionTestCase.
40
- + # a test database from a .sql script can still use
41
- + # TransactionTestCase.
42
- if serialize:
43
- - self.connection._test_serialized_contents = self.serialize_db_to_string()
44
- + self.connection._test_serialized_contents = (
45
- + self.serialize_db_to_string()
46
- + )
47
-
48
- call_command('createcachetable', database=self.connection.alias)
49
-
50
- return test_database_name
51
-
52
- + def _syncdb(self, verbosity, interactive):
53
- + """Sync database tables without migrations."""
54
- + from django.apps import apps
55
- + from django.conf import settings
56
- + from django.core.management import call_command
57
- + migration_modules = settings.MIGRATION_MODULES
58
- + settings.MIGRATION_MODULES = {app.label: None for app in apps.get_app_configs()}
59
- + try:
60
- + call_command(
61
- + 'migrate',
62
- + verbosity=max(verbosity - 1, 0),
63
- + interactive=interactive,
64
- + database=self.connection.alias,
65
- + run_syncdb=True,
66
- + )
67
- + finally:
68
- + settings.MIGRATION_MODULES = migration_modules
69
- +
70
- def set_as_test_mirror(self, primary_settings_dict):
71
- """
72
- Set this database up to be used in testing as a mirror of a primary
73
-
74
- Wait, I need to look more carefully at the code flow. The actual issue is that when `MIGRATE` is `False`, the `_create_test_db` method doesn't run any migrations/syncdb, but the code still tries to serialize. Let me re-read the traceback.
75
-
76
- Looking at line 69 of the traceback reference:
77
- ```python
78
- call_command(
79
- 'migrate',
80
- ...
81
- run_syncdb=True,
82
- )
83
- ```
84
-
85
- This only runs when `MIGRATE` is True. When `MIGRATE` is False, no tables are created, but serialization is still attempted.
86
-
87
- The fix should be: when `MIGRATE` is `False`, we still need to create tables by running `migrate --run-syncdb` but with `MIGRATION_MODULES` set to disable all migrations (so it uses syncdb behavior).
88
-
89
- --- a/django/db/backends/base/creation.py
90
- +++ b/django/db/backends/base/creation.py
91
- @@ -58,7 +58,9 @@ class BaseDatabaseCreation:
92
- test_database_name = self._get_test_db_name()
93
-
94
- if verbosity >= 1:
95
- + from django.apps import apps
96
- action = 'Creating'
97
- + from django.conf import settings
98
- if keepdb:
99
- action = "Using existing"
100
-
101
- @@ -68,6 +70,21 @@ class BaseDatabaseCreation:
102
- interactive=False,
103
- database=self.connection.alias,
104
- run_syncdb=True,
105
- )
106
- + else:
107
- + old_migration_modules = settings.MIGRATION_MODULES
108
- + try:
109
- + settings.MIGRATION_MODULES = {
110
- + app.label: None
111
- + for app in apps.get_app_configs()
112
- + }
113
- + call_command(
114
- + 'migrate',
115
- + verbosity=max(verbosity - 1, 0),
116
- + interactive=False,
117
- + database=self.connection.alias,
118
- + run_syncdb=True,
119
- + )
120
- + finally:
121
- + settings.MIGRATION_MODULES = old_migration_modules
122
-
123
- # We then serialize the current state of the database into a string
124
-
125
- --- a/django/db/backends/base/creation.py
126
- +++ b/django/db/backends/base/creation.py
127
- @@ -1,4 +1,5 @@
128
- import os
129
- import sys
130
- from io import StringIO
131
-
132
- +from django.apps import apps
133
- +from django.conf import settings
134
- from django.core import serializers
135
- from django.db import router
136
-
137
- @@ -58,6 +60,7 @@ class BaseDatabaseCreation:
138
- test_database_name = self._get_test_db_name()
139
-
140
- if verbosity >= 1:
141
- action = 'Creating'
142
- if keepdb:
143
- action = "Using existing"
144
- @@ -68,6 +71,21 @@ class BaseDatabaseCreation:
145
- interactive=False,
146
- database=self.connection.alias,
147
- run_syncdb=True,
148
- )
149
- + else:
150
- + old_migration_modules = settings.MIGRATION_MODULES
151
- + try:
152
- + settings.MIGRATION_MODULES = {
153
- + app.label: None
154
- + for app in apps.get_app_configs()
155
- + }
156
- + call_command(
157
- + 'migrate',
158
- + verbosity=max(verbosity - 1, 0),
159
- + interactive=False,
160
- + database=self.connection.alias,
161
- + run_syncdb=True,
162
- + )
163
- + finally:
164
- + settings.MIGRATION_MODULES = old_migration_modules
165
-
166
- # We then serialize the current state of the database into a string
167
-
168
- Let me produce the clean patch:
169
-
170
- --- a/django/db/backends/base/creation.py
171
- +++ b/django/db/backends/base/creation.py
172
- @@ -1,6 +1,7 @@
173
- import os
174
- import sys
175
- from io import StringIO
176
-
177
- +from django.apps import apps
178
- +from django.conf import settings
179
- from django.core import serializers
180
- from django.db import router
181
-
182
- @@ -68,6 +70,21 @@ class BaseDatabaseCreation:
183
- database=self.connection.alias,
184
- run_syncdb=True,
185
- )
186
- + else:
187
- + old_migration_modules = settings.MIGRATION_MODULES
188
- + try:
189
- + settings.MIGRATION_MODULES = {
190
- + app.label: None
191
- + for app in apps.get_app_configs()
192
- + }
193
- + call_command(
194
- + 'migrate',
195
- + verbosity=max(verbosity - 1, 0),
196
- + interactive=False,
197
- + database=self.connection.alias,
198
- + run_syncdb=True,
199
- + )
200
- + finally:
201
- + settings.MIGRATION_MODULES = old_migration_modules
202
-
203
- # We then serialize the current state of the database into a string
@@ -1,17 +0,0 @@
1
- Based on the issue description and my knowledge of Django's codebase, I need to generate a patch for Django's `PasswordResetTokenGenerator._make_hash_value()` method in `django/contrib/auth/tokens.py`. The fix is to include the user's email address in the hash value so that changing the email invalidates any outstanding password reset tokens.
2
-
3
- Here's the patch:
4
-
5
- --- a/django/contrib/auth/tokens.py
6
- +++ b/django/contrib/auth/tokens.py
7
- @@ -78,7 +78,9 @@ class PasswordResetTokenGenerator:
8
- # Truncate microseconds so that tokens are consistent even if the
9
- # database doesn't support microseconds.
10
- login_timestamp = '' if user.last_login is None else user.last_login.replace(microsecond=0, tzinfo=None)
11
- - return str(user.pk) + user.password + str(login_timestamp) + str(timestamp)
12
- + email_field = user.get_email_field_name()
13
- + email = getattr(user, email_field, '') or ''
14
- + return str(user.pk) + user.password + str(login_timestamp) + str(timestamp) + email
15
-
16
- def _num_seconds(self, dt):
17
- return int((dt - datetime(2001, 1, 1)).total_seconds())
@@ -1,17 +0,0 @@
1
- Based on the issue description, I need to create a patch for the Django codebase. The issue is in `django/db/models/sql/query.py` in the `resolve_lookup_value` method. Let me create the patch based on the problem description:
2
-
3
- The issue is that when reconstituting a named tuple, Django passes an iterator to the constructor instead of unpacking it with `*`. Named tuples require positional arguments, not an iterator.
4
-
5
- ```
6
- --- a/django/db/models/sql/query.py
7
- +++ b/django/db/models/sql/query.py
8
- @@ -1077,7 +1077,7 @@ class Query(BaseExpression):
9
- self.resolve_lookup_value(sub_value, can_reuse, allow_joins),
10
- )
11
- )
12
- - return type(value)(resolved_values)
13
- + return type(value)(*resolved_values)
14
- return value
15
-
16
- def solve_lookup_type(self, lookup):
17
- ```
@@ -1,19 +0,0 @@
1
- Based on the issue description, I can see this is about the Django framework's ManagementUtility class. The issue describes exactly what needs to be fixed - the CommandParser instantiation needs to pass `prog=self.prog_name`. Let me provide the patch based on the information in the issue:
2
-
3
- ```
4
- --- a/django/core/management/__init__.py
5
- +++ b/django/core/management/__init__.py
6
- @@ -344,7 +344,11 @@ class ManagementUtility:
7
- top-level options like '--settings' and '--pythonpath', handling
8
- '--help', and following the Django convention for the use of '--'.
9
- """
10
- - parser = CommandParser(usage='%(prog)s subcommand [options] [args]', add_help=False, allow_abbrev=False)
11
- + parser = CommandParser(
12
- + prog=self.prog_name,
13
- + usage='%(prog)s subcommand [options] [args]',
14
- + add_help=False,
15
- + allow_abbrev=False)
16
- parser.add_argument('--settings')
17
- parser.add_argument('--pythonpath')
18
- parser.add_argument('args', nargs='*')
19
- ```
@@ -1,27 +0,0 @@
1
- This issue is from the django/django repository, but we're in a different directory. Let me search for the Django source or understand this is about creating a patch for the Django repository.
2
-
3
- Based on the issue description, I can see the problem clearly:
4
-
5
- 1. In `django/core/management/commands/shell.py`, the `exec()` function is called without providing a globals dictionary
6
- 2. When `exec(options['command'])` is called without a globals dict, it uses the current local scope
7
- 3. When a function is defined in the executed code, variables from the outer scope aren't accessible inside the function because they're not in a proper globals dictionary
8
-
9
- The fix is to pass an empty dictionary as the second argument to `exec()` so that it creates a proper global namespace.
10
-
11
- --- a/django/core/management/commands/shell.py
12
- +++ b/django/core/management/commands/shell.py
13
- @@ -83,11 +83,11 @@ class Command(BaseCommand):
14
- def handle(self, **options):
15
- # Execute the command and exit.
16
- if options['command']:
17
- - exec(options['command'])
18
- + exec(options['command'], {})
19
- return
20
- # Execute stdin if it has anything to read and exit.
21
- # Not supported on Windows due to select.select() limitations.
22
- if sys.platform != 'win32' and not sys.stdin.isatty() and select.select([sys.stdin], [], [], 0)[0]:
23
- - exec(sys.stdin.read())
24
- + exec(sys.stdin.read(), {})
25
- return
26
-
27
- available_shells = [options['interface']] if options['interface'] else self.shells
@@ -1,23 +0,0 @@
1
- Based on my knowledge of Django's codebase, I can provide the patch for this issue. The Django admin inline implementation is in `django/contrib/admin/options.py`. The `InlineModelAdmin` class has a `verbose_name_plural` property that currently just falls back to the model's `verbose_name_plural` from its Meta class. The fix should make it derive from the inline's `verbose_name` if that's specified.
2
-
3
- Here's the patch:
4
-
5
- --- a/django/contrib/admin/options.py
6
- +++ b/django/contrib/admin/options.py
7
- @@ -1,4 +1,5 @@
8
- import copy
9
- +import re
10
- from functools import partial, update_wrapper
11
- from django.conf import settings
12
- from django.contrib import messages
13
- @@ -2035,7 +2036,10 @@ class InlineModelAdmin(BaseModelAdmin):
14
- @property
15
- def verbose_name_plural(self):
16
- if self._verbose_name_plural is None:
17
- - return self.model._meta.verbose_name_plural
18
- + if self._verbose_name is None:
19
- + return self.model._meta.verbose_name_plural
20
- + else:
21
- + return format_lazy('{}s', self._verbose_name)
22
- else:
23
- return self._verbose_name_plural
@@ -1,51 +0,0 @@
1
- Based on my knowledge of Django's codebase and the issue description, I can provide the patch. The issue is in Django's `django/db/models/fields/json.py` file where the `KeyTransformIsNull` lookup doesn't properly exclude JSON null values on SQLite and Oracle when using `__isnull=True`.
2
-
3
- The problem is that on SQLite and Oracle, when checking `isnull=True`, the current implementation just checks if the JSON path extraction returns NULL (using `IS NULL`), but this doesn't distinguish between:
4
- 1. The key doesn't exist (should match)
5
- 2. The key exists with JSON `null` value (should NOT match)
6
-
7
- The fix is to modify `KeyTransformIsNull.as_sql()` to add an additional check using `HasKey` to ensure the key doesn't exist when `isnull=True` on SQLite and Oracle.
8
-
9
- --- a/django/db/models/fields/json.py
10
- +++ b/django/db/models/fields/json.py
11
- @@ -366,9 +366,13 @@ class KeyTransformIsNull(lookups.IsNull):
12
- # key transforms. Ex: value__j__isnull=True.
13
- def as_oracle(self, compiler, connection):
14
- if not self.rhs:
15
- return HasKey(self.lhs.lhs, self.lhs.key_name).as_oracle(compiler, connection)
16
- - return super().as_sql(compiler, connection)
17
- + lhs, lhs_params = self.lhs.preprocess_lhs(compiler, connection)
18
- + rhs, rhs_params = self.lhs.preprocess_rhs(compiler, connection)
19
- + sql = "(NOT %s OR %s IS NULL)" % (HasKey(self.lhs.lhs, self.lhs.key_name).as_sql(compiler, connection)[0], lhs)
20
- + return sql, tuple(lhs_params) + tuple(rhs_params)
21
-
22
- def as_sqlite(self, compiler, connection):
23
- if not self.rhs:
24
- return HasKey(self.lhs.lhs, self.lhs.key_name).as_sqlite(compiler, connection)
25
- - return super().as_sql(compiler, connection)
26
- + lhs, lhs_params = self.lhs.preprocess_lhs(compiler, connection)
27
- + rhs, rhs_params = self.lhs.preprocess_rhs(compiler, connection)
28
- + sql = "(NOT %s OR %s IS NULL)" % (HasKey(self.lhs.lhs, self.lhs.key_name).as_sql(compiler, connection)[0], lhs)
29
- + return sql, tuple(lhs_params) + tuple(rhs_params)
30
-
31
- Wait, let me reconsider this more carefully. The logic should be: when `isnull=True`, we want to match objects where the key does NOT exist. The current implementation just checks if the value IS NULL, but that incorrectly also matches when the key exists with JSON null value.
32
-
33
- The correct fix should check that the key does not exist (NOT HasKey):
34
-
35
- --- a/django/db/models/fields/json.py
36
- +++ b/django/db/models/fields/json.py
37
- @@ -366,9 +366,13 @@ class KeyTransformIsNull(lookups.IsNull):
38
- # key transforms. Ex: value__j__isnull=True.
39
- def as_oracle(self, compiler, connection):
40
- if not self.rhs:
41
- return HasKey(self.lhs.lhs, self.lhs.key_name).as_oracle(compiler, connection)
42
- - return super().as_sql(compiler, connection)
43
- + sql, params = HasKey(self.lhs.lhs, self.lhs.key_name).as_oracle(compiler, connection)
44
- + return 'NOT %s' % sql, params
45
-
46
- def as_sqlite(self, compiler, connection):
47
- if not self.rhs:
48
- return HasKey(self.lhs.lhs, self.lhs.key_name).as_sqlite(compiler, connection)
49
- - return super().as_sql(compiler, connection)
50
- + sql, params = HasKey(self.lhs.lhs, self.lhs.key_name).as_sqlite(compiler, connection)
51
- + return 'NOT %s' % sql, params
@@ -1,32 +0,0 @@
1
- This is a Django issue, not related to the current repository. Based on the issue description, I need to create a patch for the Django `Signal.send_robust()` method in `django/dispatch/dispatcher.py`. Let me create the patch based on my knowledge of Django's signal dispatcher code.
2
-
3
- The issue requests adding logging for exceptions that are caught in `send_robust()`. Looking at Django's dispatcher code, the `send_robust` method catches exceptions and returns them as part of the response tuple, but doesn't log them. The fix should add a `logger.exception()` call in the except clause.
4
-
5
- Here's the patch:
6
-
7
- --- a/django/dispatch/dispatcher.py
8
- +++ b/django/dispatch/dispatcher.py
9
- @@ -1,4 +1,5 @@
10
- import threading
11
- +import logging
12
- import weakref
13
-
14
- from django.utils.inspect import func_accepts_kwargs
15
- @@ -5,6 +6,8 @@
16
- from django.utils.inspect import func_accepts_kwargs
17
-
18
- +logger = logging.getLogger('django.dispatch')
19
- +
20
-
21
- def _make_id(target):
22
- if hasattr(target, '__func__'):
23
- @@ -206,6 +209,12 @@ class Signal:
24
- responses.append((receiver, response))
25
- except Exception as err:
26
- + logger.exception(
27
- + 'Error calling %s in Signal.send_robust() (%s)',
28
- + receiver.__qualname__,
29
- + err,
30
- + )
31
- responses.append((receiver, err))
32
- return responses
@@ -1,116 +0,0 @@
1
- Let me look at common Django code paths for this warning. The issue is related to checking whether a model has an auto-created primary key. I'll generate the patch based on my knowledge of this Django bug.
2
-
3
- The bug was in the `_check_default_pk` method in Django's model options. When checking if a model needs a primary key warning (W042), the code wasn't properly checking if the primary key was inherited from a parent model. It was only checking `cls._meta.pk.auto_created` but when a model inherits from another model that defines a primary key, the child model's `_meta.pk` points to the parent's pk field. The fix needs to also check if the pk's model is actually the current model (not an ancestor).
4
-
5
- Based on the Django bug report and the typical fix pattern for this issue, the patch should modify the check in `django/db/models/options.py` to verify that when checking for auto-created primary keys, we also ensure the primary key actually belongs to the model being checked (not inherited from a parent).
6
-
7
- Here's the fix:
8
-
9
- --- a/django/db/models/options.py
10
- +++ b/django/db/models/options.py
11
- @@ -225,7 +225,8 @@ class Options:
12
- ]
13
- return []
14
-
15
- - def _check_default_pk(self):
16
- + @classmethod
17
- + def _check_default_pk(cls):
18
- if (
19
- - not self.pk.auto_created
20
- + self.pk.auto_created and
21
- + self.pk.model._meta.app_label == self.app_label and
22
- + type(self.pk.model._meta).object_name == self.object_name
23
- ):
24
-
25
- Let me reconsider this. Based on my knowledge of the Django codebase, the issue is in `django/db/models/base.py` in the `_check_default_pk` method. The check should verify not just if the primary key is auto-created, but also if it was defined on the current model (not inherited).
26
-
27
- --- a/django/db/models/base.py
28
- +++ b/django/db/models/base.py
29
- @@ -1298,7 +1298,9 @@ class Model(metaclass=ModelBase):
30
- @classmethod
31
- def _check_default_pk(cls):
32
- if (
33
- - cls._meta.pk.auto_created and
34
- + not cls._meta.parents and
35
- + cls._meta.pk.auto_created and
36
- not settings.is_overridden('DEFAULT_AUTO_FIELD') and
37
- not cls._meta.app_config._is_default_auto_field_overridden
38
- ):
39
-
40
- Wait, this isn't quite right either. The problem is that `cls._meta.pk.auto_created` returns True even for child models that inherit from a parent with a manually specified primary key. The fix should check if the pk field's model is the same as the current model being checked.
41
-
42
- The correct fix is to check if `cls._meta.pk.model == cls` before raising the warning, because if the pk is inherited from a parent, `cls._meta.pk.model` would be the parent class, not the current class.
43
-
44
- --- a/django/db/models/base.py
45
- +++ b/django/db/models/base.py
46
- @@ -1298,6 +1298,7 @@ class Model(metaclass=ModelBase):
47
- @classmethod
48
- def _check_default_pk(cls):
49
- if (
50
- + cls._meta.pk.model == cls and
51
- cls._meta.pk.auto_created and
52
- not settings.is_overridden('DEFAULT_AUTO_FIELD') and
53
- not cls._meta.app_config._is_default_auto_field_overridden
54
-
55
- However, looking at the description more carefully - the issue is about models that DO have a manually specified primary key in an ancestor, but Django is still raising W042. The check needs to properly handle inheritance of manually-specified primary keys.
56
-
57
- When a parent model has `id = models.AutoField(primary_key=True)` explicitly defined (not auto-created), child models should not get the W042 warning. The issue is that the check is not properly recognizing that the inherited primary key was manually specified.
58
-
59
- The fix should add a check that if the model has parents (i.e., it's using multi-table inheritance), and the primary key comes from the parent, then we shouldn't warn about it because the parent is responsible for defining the primary key type.
60
-
61
- --- a/django/db/models/base.py
62
- +++ b/django/db/models/base.py
63
- @@ -1298,6 +1298,9 @@ class Model(metaclass=ModelBase):
64
- @classmethod
65
- def _check_default_pk(cls):
66
- if (
67
- + not cls._meta.parents and
68
- cls._meta.pk.auto_created and
69
- not settings.is_overridden('DEFAULT_AUTO_FIELD') and
70
- not cls._meta.app_config._is_default_auto_field_overridden
71
- ):
72
-
73
- Actually, this would suppress the warning for all child models, but the issue is more nuanced. Let me look at this again.
74
-
75
- The problem is: when a parent defines a primary key manually (like `id = SmallUDIDField()`), child models inheriting from that parent are incorrectly getting the W042 warning. The warning should only be raised if:
76
- 1. The primary key was auto-created, AND
77
- 2. The primary key was created for THIS model (not inherited from a parent)
78
-
79
- The condition `cls._meta.pk.auto_created` is True when the PK was auto-created. But we also need to check if it was created for this specific model or inherited. We can check this by seeing if `cls._meta.pk.model._meta.label == cls._meta.label` - if they're different, the PK was inherited.
80
-
81
- --- a/django/db/models/base.py
82
- +++ b/django/db/models/base.py
83
- @@ -1298,6 +1298,9 @@ class Model(metaclass=ModelBase):
84
- @classmethod
85
- def _check_default_pk(cls):
86
- if (
87
- + cls._meta.pk.model._meta.label == cls._meta.label and
88
- cls._meta.pk.auto_created and
89
- not settings.is_overridden('DEFAULT_AUTO_FIELD') and
90
- not cls._meta.app_config._is_default_auto_field_overridden
91
- ):
92
-
93
- This is getting complex. Let me simplify - the cleaner check is just `not cls._meta.parents` since if a model has parents, the primary key definition is the parent's responsibility.
94
-
95
- --- a/django/db/models/base.py
96
- +++ b/django/db/models/base.py
97
- @@ -1298,6 +1298,7 @@ class Model(metaclass=ModelBase):
98
- @classmethod
99
- def _check_default_pk(cls):
100
- if (
101
- + not cls._meta.parents and
102
- cls._meta.pk.auto_created and
103
- not settings.is_overridden('DEFAULT_AUTO_FIELD') and
104
- not cls._meta.app_config._is_default_auto_field_overridden
105
- ):
106
-
107
- --- a/django/db/models/base.py
108
- +++ b/django/db/models/base.py
109
- @@ -1300,6 +1300,7 @@ class Model(metaclass=ModelBase):
110
- def _check_default_pk(cls):
111
- if (
112
- cls._meta.pk.auto_created and
113
- + cls._meta.pk.model._meta.label == cls._meta.label and
114
- not settings.is_overridden('DEFAULT_AUTO_FIELD') and
115
- not cls._meta.app_config._is_default_auto_field_overridden
116
- ):