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,25 +0,0 @@
1
- # django__django-15388
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the architect's analysis and my knowledge of Django's autoreload functionality, I can generate the patch. The `template_changed` function in `django/template/autoreload.py` is a signal listener that handles file changes. When it returns `True`, it indicates the change was handled and prevents normal reload. The fix is to ensure Python files are never treated as template files.
6
-
7
- ```
8
- --- a/django/template/autoreload.py
9
- +++ b/django/template/autoreload.py
10
- @@ -48,6 +48,9 @@ def reset_loaders():
11
-
12
- @receiver(autoreload_started, dispatch_uid="template_loaders_watch_changes")
13
- def watch_for_template_changes(sender, **kwargs):
14
- for directory in get_template_directories():
15
- sender.watch_dir(directory, "**/*")
16
-
17
-
18
- @receiver(file_changed, dispatch_uid="template_loaders_file_changed")
19
- def template_changed(sender, file_path, **kwargs):
20
- + if file_path.suffix.lower() in {'.py', '.pyc', '.pyo'}:
21
- + return None
22
- for template_dir in get_template_directories():
23
- if template_dir in file_path.parents:
24
- reset_loaders()
25
- ```
@@ -1,19 +0,0 @@
1
- # django__django-15400
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the analysis provided and standard Django source code structure, I can generate the patch for the `SimpleLazyObject.__radd__` issue. The fix adds the `__radd__` method using the `new_method_proxy` pattern with a lambda that reverses the operand order.
6
-
7
- ```
8
- --- a/django/utils/functional.py
9
- +++ b/django/utils/functional.py
10
- @@ -396,6 +396,8 @@ class SimpleLazyObject(LazyObject):
11
- # SimpleLazyObject to int.
12
- __copy__ = new_method_proxy(copy.copy)
13
-
14
- + __radd__ = new_method_proxy(lambda self, other: other + self)
15
- +
16
- def __deepcopy__(self, memo):
17
- if self._wrapped is empty:
18
- # We have to use SimpleLazyObject, not self.__class__, because the
19
- ```
@@ -1,14 +0,0 @@
1
- # django__django-15498
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/django/views/static.py
6
- +++ b/django/views/static.py
7
- @@ -75,6 +75,8 @@ def was_modified_since(header=None, mtime=0, size=0):
8
- """
9
- try:
10
- + if header is None or len(header) == 0:
11
- + raise ValueError("Empty or missing header")
12
- matches = re.match(
13
- r"^([^;]+)(; length=([0-9]+))?$",
14
- header,
@@ -1,39 +0,0 @@
1
- # django__django-15695
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the issue description and architect's analysis, I can generate the patch. The issue is in the `database_backwards()` method of `RenameIndex` - when `old_name` is not provided (unnamed index from `unique_together`), the backward operation should restore the auto-generated name rather than being a noop.
6
-
7
- ```
8
- --- a/django/db/migrations/operations/models.py
9
- +++ b/django/db/migrations/operations/models.py
10
- @@ -967,12 +967,28 @@ class RenameIndex(IndexOperation):
11
-
12
- def database_backwards(self, app_label, schema_editor, from_state, to_state):
13
- if self.old_fields:
14
- - # Backward operation with unnamed index is a no-op.
15
- - return
16
- + model = to_state.apps.get_model(app_label, self.model_name)
17
- + if not self.allow_migrate_model(schema_editor.connection.alias, model):
18
- + return
19
- +
20
- + to_model_state = to_state.models[app_label, self.model_name_lower]
21
- + old_index = to_model_state.get_index_by_name(self.new_name)
22
- + # Restore the old auto-generated name.
23
- + old_index.name = schema_editor._create_index_name(
24
- + model._meta.db_table,
25
- + self.old_fields,
26
- + )
27
- + from_model_state = from_state.models[app_label, self.model_name_lower]
28
- + new_index = from_model_state.get_index_by_name(self.new_name)
29
- + schema_editor.rename_index(model, new_index, old_index)
30
- + # Swap back.
31
- + old_index.name = self.new_name
32
- + return
33
-
34
- self.new_name, self.old_name = self.old_name, self.new_name
35
- self.database_forwards(app_label, schema_editor, from_state, to_state)
36
- self.new_name, self.old_name = self.old_name, self.new_name
37
-
38
- def describe(self):
39
- ```
@@ -1,185 +0,0 @@
1
- # django__django-15738
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on my knowledge of Django's migration autodetector and the issue described, I can generate the patch. The problem is that when a ForeignKey field is changed to a ManyToManyField with the same name while removing `unique_together`, the autodetector doesn't properly handle the dependency ordering. The `AlterUniqueTogether` operation tries to reference a constraint that includes the field being changed, but the field type change affects how constraints are looked up.
6
-
7
- ```
8
- --- a/django/db/migrations/autodetector.py
9
- +++ b/django/db/migrations/autodetector.py
10
- @@ -166,6 +166,12 @@ class MigrationAutodetector:
11
- self.renamed_models = {}
12
- self.renamed_models_rel = {}
13
- self.renamed_fields = {}
14
- + # Track fields that are being replaced (same name, different type)
15
- + # This happens when e.g. a ForeignKey is changed to ManyToManyField
16
- + # We need to track these to ensure proper operation ordering:
17
- + # AlterUniqueTogether/AlterIndexTogether must happen before RemoveField,
18
- + # and RemoveField must happen before AddField for replaced fields.
19
- + self.replaced_fields = {}
20
-
21
- def _detect_changes(self, convert_apps=None, graph=None):
22
- """
23
- @@ -228,6 +234,7 @@ class MigrationAutodetector:
24
- # This avoids the same computation in generate_removed_fields()
25
- # and generate_added_fields().
26
- self.old_field_keys = set()
27
- + self.new_field_keys = set()
28
- for app_label, model_name in sorted(self.kept_model_keys):
29
- old_model_name = self.renamed_models.get((app_label, model_name), model_name)
30
- old_model_state = self.from_state.models[app_label, old_model_name]
31
- @@ -238,6 +245,15 @@ class MigrationAutodetector:
32
- self.old_field_keys.update(
33
- (app_label, model_name, field_name) for field_name in old_field_names
34
- )
35
- + self.new_field_keys.update(
36
- + (app_label, model_name, field_name) for field_name in new_field_names
37
- + )
38
- + # Detect replaced fields (same name exists in both but will be removed and re-added
39
- + # due to type change - this is detected later when generate_added/removed_fields run)
40
- + for field_name in old_field_names & new_field_names:
41
- + old_field = old_model_state.fields[field_name]
42
- + new_field = new_model_state.fields[field_name]
43
- + # Check will be done in generate_altered_fields or the add/remove detection
44
- self.generate_renamed_fields()
45
- self.generate_removed_fields()
46
- self.generate_added_fields()
47
- @@ -422,8 +438,21 @@ class MigrationAutodetector:
48
- dependencies.append(
49
- (app_label, model_name, field_name, "order_wrt_unset")
50
- )
51
- - # Skip making creation depend on removal, since removal
52
- - # is handled distinctly
53
- + # If this is a field being replaced (same name, different type),
54
- + # the AddField must depend on the RemoveField of the old field.
55
- + # This handles cases like ForeignKey -> ManyToManyField.
56
- + if (app_label, model_name, field_name) in self.old_field_keys:
57
- + # Check if the old field is actually being removed (different type)
58
- + old_model_name = self.renamed_models.get(
59
- + (app_label, model_name), model_name
60
- + )
61
- + old_model_state = self.from_state.models[app_label, old_model_name]
62
- + if field_name in old_model_state.fields:
63
- + old_field = old_model_state.fields[field_name]
64
- + if not old_field.many_to_many and field.many_to_many:
65
- + dependencies.append(
66
- + (app_label, model_name, field_name, "removed")
67
- + )
68
- dependencies.append(
69
- (related_app_label, related_model_name, None, "model_state")
70
- )
71
- @@ -901,6 +930,21 @@ class MigrationAutodetector:
72
- old_model_state = self.from_state.models[app_label, old_model_name]
73
- new_model_state = self.to_state.models[app_label, model_name]
74
- if old_model_state.options.get(option_name) != new_model_state.options.get(option_name):
75
- + # Add dependencies for fields that are being removed as part of a
76
- + # field type change (e.g., ForeignKey -> ManyToManyField).
77
- + # The constraint alteration must happen before the field is removed.
78
- + dependencies = []
79
- + old_value = old_model_state.options.get(option_name)
80
- + if old_value:
81
- + for field_names in old_value:
82
- + for field_name in field_names:
83
- + # If this field exists in old but will be replaced (removed then re-added
84
- + # with different type), we need to depend on it still existing
85
- + if (app_label, model_name, field_name) in self.old_field_keys:
86
- + old_field = old_model_state.fields.get(field_name)
87
- + new_field = new_model_state.fields.get(field_name)
88
- + if old_field and new_field and type(old_field) != type(new_field):
89
- + dependencies.append((app_label, model_name, field_name, "alter"))
90
- self.add_operation(
91
- app_label,
92
- getattr(operations, operation_name)(
93
- @@ -908,6 +952,7 @@ class MigrationAutodetector:
94
- option_name: new_model_state.options.get(option_name),
95
- **{option_name: new_model_state.options.get(option_name)},
96
- },
97
- + dependencies=dependencies,
98
- )
99
-
100
- def generate_alter_order_with_respect_to(self):
101
- @@ -934,6 +979,25 @@ class MigrationAutodetector:
102
- new_field = new_model_state.fields.get(field_name)
103
- if not old_field.is_relation or not new_field.is_relation:
104
- continue
105
- + # Handle case where a field is being replaced (same name, different type)
106
- + # E.g., ForeignKey -> ManyToManyField. In this case, we need to:
107
- + # 1. Remove the old field first
108
- + # 2. Then add the new field
109
- + # The dependency chain should be: AlterUniqueTogether -> RemoveField -> AddField
110
- + old_is_fk = isinstance(old_field, models.ForeignKey) if hasattr(models, 'ForeignKey') else (
111
- + old_field.many_to_many == False and old_field.one_to_one == False and old_field.is_relation
112
- + )
113
- + new_is_m2m = new_field.many_to_many if hasattr(new_field, 'many_to_many') else False
114
- + # This is handled as remove+add, not as an alter
115
- + if type(old_field) != type(new_field):
116
- + # Different field types - will be handled by generate_removed_fields
117
- + # and generate_added_fields, not here
118
- + # Mark it as a replaced field so proper dependencies are set up
119
- + if (app_label, model_name) not in self.replaced_fields:
120
- + self.replaced_fields[(app_label, model_name)] = set()
121
- + self.replaced_fields[(app_label, model_name)].add(field_name)
122
- + continue
123
- old_rel = old_field.remote_field if hasattr(old_field, 'remote_field') else old_field.rel
124
- new_rel = new_field.remote_field if hasattr(new_field, 'remote_field') else new_field.rel
125
- if old_rel.model != new_rel.model:
126
- ```
127
-
128
- Wait, I need to provide a cleaner, more focused patch based on the actual Django codebase structure. Let me generate a proper patch:
129
-
130
- --- a/django/db/migrations/autodetector.py
131
- +++ b/django/db/migrations/autodetector.py
132
- @@ -160,6 +160,7 @@ class MigrationAutodetector:
133
- self.renamed_models = {}
134
- self.renamed_models_rel = {}
135
- self.renamed_fields = {}
136
- + self.replaced_fields = set()
137
-
138
- def _detect_changes(self, convert_apps=None, graph=None):
139
- """
140
- @@ -217,6 +218,20 @@ class MigrationAutodetector:
141
- self.old_field_keys.update(
142
- (app_label, model_name, field_name) for field_name in old_field_names
143
- )
144
- + # Detect fields that exist in both old and new but with incompatible types
145
- + # (e.g., ForeignKey -> ManyToManyField). These need special handling for
146
- + # operation ordering.
147
- + for field_name in old_field_names & new_field_names:
148
- + old_field = old_model_state.fields[field_name]
149
- + new_field = new_model_state.fields[field_name]
150
- + # A ForeignKey changing to ManyToManyField (or vice versa) is not
151
- + # a simple alteration - it requires remove + add. Track these fields
152
- + # so we can ensure proper dependency ordering with unique_together.
153
- + old_is_m2m = old_field.many_to_many if hasattr(old_field, 'many_to_many') else False
154
- + new_is_m2m = new_field.many_to_many if hasattr(new_field, 'many_to_many') else False
155
- + if old_is_m2m != new_is_m2m:
156
- + self.replaced_fields.add((app_label, model_name, field_name))
157
- +
158
- self.generate_renamed_fields()
159
- self.generate_removed_fields()
160
- self.generate_added_fields()
161
- @@ -900,6 +915,16 @@ class MigrationAutodetector:
162
- old_model_state = self.from_state.models[app_label, old_model_name]
163
- new_model_state = self.to_state.models[app_label, model_name]
164
- if old_model_state.options.get(option_name) != new_model_state.options.get(option_name):
165
- + # When removing unique_together that includes a field being replaced
166
- + # (e.g., ForeignKey -> ManyToManyField), ensure the operation runs
167
- + # before the field removal.
168
- + dependencies = []
169
- + old_value = old_model_state.options.get(option_name) or set()
170
- + for field_names in old_value:
171
- + for field_name in field_names:
172
- + if (app_label, model_name, field_name) in self.replaced_fields:
173
- + dependencies.append((app_label, model_name, field_name, "foo"))
174
- + break
175
- self.add_operation(
176
- app_label,
177
- getattr(operations, operation_name)(
178
- @@ -907,6 +932,7 @@ class MigrationAutodetector:
179
- option_name: new_model_state.options.get(option_name),
180
- **{option_name: new_model_state.options.get(option_name)},
181
- },
182
- + dependencies=dependencies,
183
- )
184
-
185
- def generate_alter_order_with_respect_to(self):
@@ -1,20 +0,0 @@
1
- # django__django-15781
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/django/core/management/base.py
6
- +++ b/django/core/management/base.py
7
- @@ -285,10 +285,11 @@ class BaseCommand:
8
- """
9
- Create and return the ``ArgumentParser`` which will be used to
10
- parse the arguments to this command.
11
- """
12
- + kwargs.setdefault("formatter_class", DjangoHelpFormatter)
13
- parser = CommandParser(
14
- prog="%s %s" % (os.path.basename(prog_name), subcommand),
15
- description=self.help or None,
16
- - formatter_class=DjangoHelpFormatter,
17
- missing_args_message=getattr(self, "missing_args_message", None),
18
- called_from_command_line=getattr(self, "_called_from_command_line", None),
19
- **kwargs,
20
- )
@@ -1,69 +0,0 @@
1
- # django__django-15789
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the architect's analysis and standard Django codebase structure, I can generate the patch for adding an encoder parameter to `django.utils.html.json_script()`:
6
-
7
- ```
8
- --- a/django/utils/html.py
9
- +++ b/django/utils/html.py
10
- @@ -62,12 +62,15 @@ _json_script_escapes = {
11
- }
12
-
13
-
14
- -def json_script(value, element_id=None):
15
- +def json_script(value, element_id=None, encoder=DjangoJSONEncoder):
16
- """
17
- Escape all the HTML/XML special characters with their unicode escapes, so
18
- value is safe to be output anywhere except for inside a tag attribute. Wrap
19
- the escaped JSON in a script tag.
20
- """
21
- + from django.core.serializers.json import DjangoJSONEncoder
22
- + if encoder is None:
23
- + encoder = DjangoJSONEncoder
24
- - json_str = json.dumps(value, cls=DjangoJSONEncoder).translate(_json_script_escapes)
25
- + json_str = json.dumps(value, cls=encoder).translate(_json_script_escapes)
26
- if element_id:
27
- template = '<script id="{}" type="application/json">{}</script>'
28
- args = (element_id, mark_safe(json_str))
29
- ```
30
-
31
- Let me provide a cleaner, correct patch:
32
-
33
- --- a/django/utils/html.py
34
- +++ b/django/utils/html.py
35
- @@ -62,12 +62,13 @@ _json_script_escapes = {
36
- }
37
-
38
-
39
- -def json_script(value, element_id=None):
40
- +def json_script(value, element_id=None, encoder=DjangoJSONEncoder):
41
- """
42
- Escape all the HTML/XML special characters with their unicode escapes, so
43
- value is safe to be output anywhere except for inside a tag attribute. Wrap
44
- the escaped JSON in a script tag.
45
- """
46
- - json_str = json.dumps(value, cls=DjangoJSONEncoder).translate(_json_script_escapes)
47
- + json_str = json.dumps(value, cls=encoder).translate(_json_script_escapes)
48
- if element_id:
49
- template = '<script id="{}" type="application/json">{}</script>'
50
- args = (element_id, mark_safe(json_str))
51
- --- a/docs/ref/utils.txt
52
- +++ b/docs/ref/utils.txt
53
- @@ -263,6 +263,17 @@ escaping HTML.
54
- recommended over :tfilter:`escape` due to its stronger safety
55
- guarantees.
56
-
57
- +``django.utils.html``
58
- +=====================
59
- +
60
- +.. module:: django.utils.html
61
- + :synopsis: HTML helper functions
62
- +
63
- +.. function:: json_script(value, element_id=None, encoder=DjangoJSONEncoder)
64
- +
65
- + Escapes all HTML/XML special characters with their unicode escapes, so
66
- + value is safe to be output anywhere except for inside a tag attribute.
67
- + Wraps the escaped JSON in a script tag. The optional ``encoder`` parameter
68
- + allows specifying a custom JSON encoder class, defaulting to
69
- + ``DjangoJSONEncoder``.
@@ -1,38 +0,0 @@
1
- # django__django-15790
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the architect's analysis and my knowledge of Django's template checks system, I can generate the patch. The `check_for_template_tags_with_the_same_name` function collects template tag library modules and reports an error (E003) when the same library name maps to multiple modules. The bug is that it uses a list to store modules, so when the same module path appears twice (from auto-discovery and explicit config), it triggers a false positive.
6
-
7
- Here's the patch:
8
-
9
- ```
10
- --- a/django/core/checks/templates.py
11
- +++ b/django/core/checks/templates.py
12
- @@ -50,14 +50,14 @@ def check_for_template_tags_with_the_same_name(app_configs, **kwargs):
13
- libraries = defaultdict(list)
14
-
15
- for conf in settings.TEMPLATES:
16
- custom_libraries = conf.get("OPTIONS", {}).get("libraries", {})
17
- for module_name, module_path in custom_libraries.items():
18
- libraries[module_name].append(module_path)
19
-
20
- for module_name, module_path in get_template_tag_modules():
21
- libraries[module_name].append(module_path)
22
-
23
- for library_name, items in libraries.items():
24
- - if len(items) > 1:
25
- + if len(set(items)) > 1:
26
- errors.append(
27
- Error(
28
- E003.msg.format(
29
- repr(library_name),
30
- - ", ".join(repr(item) for item in items),
31
- + ", ".join(repr(item) for item in sorted(set(items))),
32
- ),
33
- id=E003.id,
34
- )
35
- )
36
-
37
- return errors
38
- ```
@@ -1,14 +0,0 @@
1
- # django__django-15814
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/django/db/models/sql/query.py
6
- +++ b/django/db/models/sql/query.py
7
- @@ -742,6 +742,7 @@ class Query(BaseExpression):
8
- if from_parent:
9
- field_model = from_parent
10
- column = field.get_col(alias, output_field=field)
11
- + cur_model = cur_model._meta.concrete_model
12
- opts = cur_model._meta
13
- columns.append(column)
14
- select_idx = len(select_list)
@@ -1,101 +0,0 @@
1
- # django__django-15819
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on my knowledge of Django's inspectdb command and the issue description, I can generate the patch. The inspectdb.py file generates Django models from existing database tables. The fix needs to track which related models have been used for ForeignKey/OneToOneField fields within each model and add `related_name` when there are duplicates.
6
-
7
- Here's the patch:
8
-
9
- ```
10
- --- a/django/core/management/commands/inspectdb.py
11
- +++ b/django/core/management/commands/inspectdb.py
12
- @@ -58,6 +58,8 @@ class Command(BaseCommand):
13
- yield ''
14
- yield ''
15
- yield 'class %s(models.Model):' % table2model(table_name)
16
- + # Track used relations to detect duplicates needing related_name
17
- + used_relations = {}
18
- known_models.append(table2model(table_name))
19
- used_column_names = [] # Holds column names used in the table so far
20
- column_to_field_name = {} # Maps column names to names of model fields
21
- @@ -119,9 +121,18 @@ class Command(BaseCommand):
22
- if rel_to in known_models:
23
- field_type = '%s(%s' % (rel_type, rel_to)
24
- else:
25
- - field_type = "%s('%s'" % (rel_type, rel_to)
26
- + field_type = '%s(%r' % (rel_type, rel_to)
27
- +
28
- + # Track relations to same model and add related_name if needed
29
- + if rel_to in used_relations:
30
- + extra_params['related_name'] = '%s_%s_set' % (
31
- + table_name.lower(), att_name
32
- + )
33
- + # Also add related_name to the first occurrence if not done
34
- + if used_relations[rel_to] is not None:
35
- + first_field, first_line_idx = used_relations[rel_to]
36
- + used_relations[rel_to] = None # Mark as handled
37
- + else:
38
- + used_relations[rel_to] = (att_name, len(used_column_names))
39
- else:
40
- # Calling `get_field_type` to get the field type string and any
41
- # additional parameters and notes.
42
- ```
43
-
44
- Wait, I need to reconsider this approach. The issue is that inspectdb generates field definitions line by line, so we can't easily go back and modify a previous field. Let me create a simpler, more practical patch:
45
-
46
- ```
47
- --- a/django/core/management/commands/inspectdb.py
48
- +++ b/django/core/management/commands/inspectdb.py
49
- @@ -58,6 +58,8 @@ class Command(BaseCommand):
50
- yield ''
51
- yield ''
52
- yield 'class %s(models.Model):' % table2model(table_name)
53
- + # Track used relations to detect duplicates needing related_name
54
- + used_relations = {}
55
- known_models.append(table2model(table_name))
56
- used_column_names = [] # Holds column names used in the table so far
57
- column_to_field_name = {} # Maps column names to names of model fields
58
- @@ -121,6 +123,15 @@ class Command(BaseCommand):
59
- field_type = '%s(%s' % (rel_type, rel_to)
60
- else:
61
- field_type = "%s('%s'" % (rel_type, rel_to)
62
- +
63
- + # Add related_name to avoid clashes when multiple FKs
64
- + # reference the same model
65
- + if rel_to in used_relations:
66
- + extra_params['related_name'] = '%s' % att_name
67
- + else:
68
- + used_relations[rel_to] = att_name
69
- + if used_relations.get(rel_to) and used_relations[rel_to] != att_name:
70
- + extra_params['related_name'] = '%s' % att_name
71
- else:
72
- # Calling `get_field_type` to get the field type string and any
73
- # additional parameters and notes.
74
- ```
75
-
76
- Actually, a cleaner approach is to always add related_name when there are multiple FK fields to the same model. Let me provide the correct patch:
77
-
78
- --- a/django/core/management/commands/inspectdb.py
79
- +++ b/django/core/management/commands/inspectdb.py
80
- @@ -58,6 +58,8 @@ class Command(BaseCommand):
81
- yield ''
82
- yield ''
83
- yield 'class %s(models.Model):' % table2model(table_name)
84
- + # Track relations to detect when multiple FKs reference same model
85
- + used_relations = {}
86
- known_models.append(table2model(table_name))
87
- used_column_names = [] # Holds column names used in the table so far
88
- column_to_field_name = {} # Maps column names to names of model fields
89
- @@ -121,6 +123,12 @@ class Command(BaseCommand):
90
- field_type = '%s(%s' % (rel_type, rel_to)
91
- else:
92
- field_type = "%s('%s'" % (rel_type, rel_to)
93
- +
94
- + # Add related_name to avoid reverse accessor clashes when
95
- + # multiple ForeignKey fields reference the same model
96
- + if rel_to in used_relations:
97
- + extra_params['related_name'] = att_name
98
- + used_relations[rel_to] = att_name
99
- else:
100
- # Calling `get_field_type` to get the field type string and any
101
- # additional parameters and notes.
@@ -1,40 +0,0 @@
1
- # django__django-15851
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/django/db/backends/postgresql/client.py
6
- +++ b/django/db/backends/postgresql/client.py
7
- @@ -17,7 +17,6 @@ class DatabaseClient(BaseDatabaseClient):
8
- dbname = settings_dict.get("NAME") or settings_dict.get("OPTIONS", {}).get("database")
9
- user = settings_dict.get("USER")
10
- passwd = settings_dict.get("PASSWORD")
11
- - service = settings_dict.get("OPTIONS", {}).get("service")
12
- sslmode = settings_dict.get("OPTIONS", {}).get("sslmode")
13
- sslrootcert = settings_dict.get("OPTIONS", {}).get("sslrootcert")
14
- sslcert = settings_dict.get("OPTIONS", {}).get("sslcert")
15
- @@ -25,10 +24,6 @@ class DatabaseClient(BaseDatabaseClient):
16
-
17
- args = [cls.executable_name]
18
-
19
- - if service:
20
- - args += ["-d", service]
21
- - elif dbname:
22
- - args += ["-d", dbname]
23
- if user:
24
- args += ["-U", user]
25
- if host:
26
- @@ -50,6 +45,13 @@ class DatabaseClient(BaseDatabaseClient):
27
- env["PGSSLCERT"] = str(sslcert)
28
- if sslkey:
29
- env["PGSSLKEY"] = str(sslkey)
30
- +
31
- + args.extend(parameters)
32
- +
33
- + service = settings_dict.get("OPTIONS", {}).get("service")
34
- + if service:
35
- + args += ["-d", service]
36
- + elif dbname:
37
- + args += ["-d", dbname]
38
-
39
- - args.extend(parameters)
40
- return args, (env or None)
@@ -1,17 +0,0 @@
1
- # django__django-15902
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/django/forms/formsets.py
6
- +++ b/django/forms/formsets.py
7
- @@ -26,6 +26,10 @@ class ManagementForm(Form):
8
- cleaned_data when the form is valid. See also
9
- total_form_count and initial_form_count.
10
- """
11
- + # Use explicit template_name to avoid deprecation warning. The specific
12
- + # template is irrelevant since ManagementForm only renders hidden inputs.
13
- + template_name = "django/forms/div.html"
14
- +
15
- TOTAL_FORMS = IntegerField(widget=HiddenInput)
16
- INITIAL_FORMS = IntegerField(widget=HiddenInput)
17
- # MIN_NUM_FORM_COUNT and MAX_NUM_FORM_COUNT are output with the rest of the
@@ -1,28 +0,0 @@
1
- # django__django-15996
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/django/db/migrations/serializer.py
6
- +++ b/django/db/migrations/serializer.py
7
- @@ -120,9 +120,19 @@ class EnumSerializer(BaseSerializer):
8
- def serialize(self):
9
- enum_class = self.value.__class__
10
- module = enum_class.__module__
11
- - return (
12
- - "%s.%s[%r]" % (module, enum_class.__qualname__, self.value.name),
13
- - {"import %s" % module},
14
- - )
15
- + if self.value.name is not None:
16
- + return (
17
- + "%s.%s[%r]" % (module, enum_class.__qualname__, self.value.name),
18
- + {"import %s" % module},
19
- + )
20
- + else:
21
- + # Handle combination of Enum flags
22
- + import enum
23
- + members, _ = enum._decompose(enum_class, self.value)
24
- + names = [
25
- + "%s.%s.%s" % (module, enum_class.__qualname__, member.name)
26
- + for member in members
27
- + ]
28
- + return (" | ".join(names), {"import %s" % module})
@@ -1,27 +0,0 @@
1
- # django__django-16041
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/django/forms/formsets.py
6
- +++ b/django/forms/formsets.py
7
- @@ -255,13 +255,17 @@ class BaseFormSet(RenderableFormMixin):
8
- @cached_property
9
- def empty_form(self):
10
- form = self.form(
11
- - auto_id=self.auto_id,
12
- - prefix=self.add_prefix("__prefix__"),
13
- - empty_permitted=True,
14
- - use_required_attribute=False,
15
- - **self.get_form_kwargs(None),
16
- - renderer=self.renderer,
17
- + **{
18
- + **self.get_form_kwargs(None),
19
- + "auto_id": self.auto_id,
20
- + "prefix": self.add_prefix("__prefix__"),
21
- + "empty_permitted": True,
22
- + "use_required_attribute": False,
23
- + "renderer": self.renderer,
24
- + },
25
- )
26
- self.add_fields(form, None)
27
- return form