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,38 +0,0 @@
1
- # psf__requests-2317
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/requests/sessions.py
6
- +++ b/requests/sessions.py
7
- @@ -13,7 +13,7 @@ from datetime import datetime
8
- from .compat import cookielib, OrderedDict, urljoin, urlparse, builtin_str
9
- from .cookies import (
10
- cookiejar_from_dict, extract_cookies_to_jar, RequestsCookieJar, merge_cookies)
11
- -from .models import Request, PreparedRequest, DEFAULT_REDIRECT_LIMIT
12
- +from .models import Request, PreparedRequest, DEFAULT_REDIRECT_LIMIT, to_native_str
13
- from .hooks import default_hooks, dispatch_hook
14
- from .utils import to_key_val_list, default_headers
15
- from .exceptions import TooManyRedirects, ChunkedEncodingError, ContentDecodingError
16
- @@ -425,7 +425,7 @@ class Session(SessionRedirectMixin):
17
- params=None,
18
- auth=None,
19
- cookies=None,
20
- - hooks=None,):
21
- + hooks=None):
22
-
23
- cookies = cookies or {}
24
- headers = headers or {}
25
- @@ -434,7 +434,12 @@ class Session(SessionRedirectMixin):
26
- for (k, v) in list(cookies.items()):
27
- req.headers.set_cookie(k, v)
28
-
29
- - method = builtin_str(method)
30
- + # Support for bytes method (e.g. b'GET') - decode to native string
31
- + if isinstance(method, bytes):
32
- + method = method.decode('utf-8')
33
- + else:
34
- + method = builtin_str(method)
35
- +
36
- # Create the Request.
37
- req = Request(
38
- method = method.upper(),
@@ -1,58 +0,0 @@
1
- # psf__requests-2674
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/requests/adapters.py
6
- +++ b/requests/adapters.py
7
- @@ -17,6 +17,8 @@ from .packages.urllib3.poolmanager import PoolManager, proxy_from_url
8
- from .packages.urllib3.response import HTTPResponse
9
- from .packages.urllib3.util import Timeout as TimeoutSauce
10
- from .packages.urllib3.util.retry import Retry
11
- +from .packages.urllib3.exceptions import ClosedPoolError
12
- +from .packages.urllib3.exceptions import LocationParseError
13
- from .compat import urlparse, basestring
14
- from .utils import (DEFAULT_CA_BUNDLE_PATH, get_encoding_from_headers,
15
- prepend_scheme_if_needed, get_auth_from_url, urldefragauth)
16
- @@ -24,6 +26,7 @@ from .structures import CaseInsensitiveDict
17
- from .packages.urllib3.exceptions import MaxRetryError
18
- from .packages.urllib3.exceptions import TimeoutError
19
- from .packages.urllib3.exceptions import SSLError as _SSLError
20
- +from .packages.urllib3.exceptions import HTTPError as _HTTPError
21
- from .packages.urllib3.exceptions import ProxyError as _ProxyError
22
- from .cookies import extract_cookies_to_jar
23
- from .exceptions import (ConnectionError, ConnectTimeout, ReadTimeout, SSLError,
24
- @@ -330,6 +333,12 @@ class HTTPAdapter(BaseAdapter):
25
-
26
- except (_SSLError, _HTTPError) as e:
27
- if isinstance(e, _SSLError):
28
- raise SSLError(e, request=request)
29
- + elif isinstance(e, ClosedPoolError):
30
- + raise ConnectionError(e, request=request)
31
- + elif isinstance(e, TimeoutError):
32
- + raise Timeout(e, request=request)
33
- + elif isinstance(e, LocationParseError):
34
- + raise InvalidURL(e, request=request)
35
- elif isinstance(e, ReadTimeoutError):
36
- raise ReadTimeout(e, request=request)
37
- else:
38
- --- a/requests/models.py
39
- +++ b/requests/models.py
40
- @@ -21,6 +21,7 @@ from .packages.urllib3.fields import RequestField
41
- from .packages.urllib3.filepost import encode_multipart_formdata
42
- from .packages.urllib3.util import parse_url
43
- from .packages.urllib3.exceptions import (
44
- + DecodeError,
45
- ReadTimeoutError,
46
- ProtocolError)
47
- from .exceptions import (
48
- @@ -572,8 +573,11 @@ class Response(object):
49
- raise ChunkedEncodingError(e)
50
- except DecodeError as e:
51
- raise ContentDecodingError(e)
52
- + except ReadTimeoutError as e:
53
- + raise ConnectionError(e)
54
- except AttributeError:
55
- # Standard file-like object.
56
- while True:
57
- chunk = self.raw.read(chunk_size)
58
- if not chunk:
@@ -1,17 +0,0 @@
1
- # psf__requests-3362
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/requests/models.py
6
- +++ b/requests/models.py
7
- @@ -735,7 +735,9 @@ class Response(object):
8
- if self._pending_content:
9
- chunk = self._pending_content + chunk
10
- self._pending_content = None
11
- - self._content_decoder = codecs.getincrementaldecoder(self.encoding)(errors='replace')
12
- + # Fall back to apparent_encoding if encoding is None, matching text property behavior
13
- + encoding = self.encoding or self.apparent_encoding or 'utf-8'
14
- + self._content_decoder = codecs.getincrementaldecoder(encoding)(errors='replace')
15
- self._first_decode_chunk = False
16
-
17
- # Decode to unicode (this accumulates the chunk in case of incomplete multi-byte chars)
@@ -1,20 +0,0 @@
1
- # psf__requests-863
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/requests/models.py
6
- +++ b/requests/models.py
7
- @@ -47,7 +47,12 @@ class Request(object):
8
- # Dictionary mapping (case-insensitive) parsing.
9
- hooks = hooks or {}
10
- for (k, v) in list(hooks.items()):
11
- - self.register_hook(event=k, hook=v)
12
- + if hasattr(v, '__iter__'):
13
- + # v is a list/tuple of hooks
14
- + for h in v:
15
- + self.register_hook(event=k, hook=h)
16
- + else:
17
- + self.register_hook(event=k, hook=v)
18
-
19
-
20
- def __repr__(self):
@@ -1,159 +0,0 @@
1
- # pydata__xarray-3364
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on my knowledge of the xarray codebase and the issue description, I can generate the appropriate patch. The issue is from the pydata/xarray repository and concerns the `concat` function needing to handle datasets with different variables by doing an outer join (similar to pandas behavior).
6
-
7
- Here is the patch:
8
-
9
- ```
10
- --- a/xarray/core/concat.py
11
- +++ b/xarray/core/concat.py
12
- @@ -1,6 +1,7 @@
13
- from __future__ import absolute_import, division, print_function
14
-
15
- import pandas as pd
16
- +import numpy as np
17
-
18
- from . import utils
19
- from .alignment import align
20
- @@ -10,7 +11,8 @@
21
-
22
-
23
- def concat(objs, dim=None, data_vars='all', coords='different',
24
- - compat='equals', positions=None, indexers=None, mode=None):
25
- + compat='equals', positions=None, indexers=None, mode=None,
26
- + join='outer', fill_value=np.nan):
27
- """Concatenate xarray objects along a new or existing dimension.
28
-
29
- Parameters
30
- @@ -59,6 +61,15 @@ def concat(objs, dim=None, data_vars='all', coords='different',
31
- this argument is passed on to :py:func:`~xarray.align`. See the
32
- documentation of :py:func:`~xarray.align` for more information. Only
33
- used if ``coords`` is not ``'minimal'``.
34
- + join : {'outer', 'inner', 'left', 'right', 'exact'}, optional
35
- + String indicating how to combine differing variables across datasets:
36
- + - 'outer': union of variables, missing variables filled with fill_value
37
- + - 'inner': intersection of variables only
38
- + - 'left': use variables from the first dataset
39
- + - 'right': use variables from the last dataset
40
- + - 'exact': raise an error if variables don't match exactly (default before this change)
41
- + fill_value : scalar, optional
42
- + Value to use for missing variables when join='outer'. Default is NaN.
43
-
44
- Returns
45
- -------
46
- @@ -102,7 +113,8 @@ def concat(objs, dim=None, data_vars='all', coords='different',
47
- if isinstance(first_obj, DataArray):
48
- return _dataarray_concat(objs, dim=dim, data_vars=data_vars,
49
- coords=coords, compat=compat,
50
- - positions=positions)
51
- + positions=positions, join=join,
52
- + fill_value=fill_value)
53
- elif isinstance(first_obj, Dataset):
54
- return _dataset_concat(objs, dim=dim, data_vars=data_vars,
55
- coords=coords, compat=compat,
56
- @@ -113,7 +125,8 @@ def concat(objs, dim=None, data_vars='all', coords='different',
57
-
58
-
59
- def _dataarray_concat(arrays, dim, data_vars, coords, compat,
60
- - positions):
61
- + positions, join='outer', fill_value=np.nan):
62
- + """Concatenate DataArrays along a dimension."""
63
- arrays = list(arrays)
64
-
65
- if data_vars != 'all':
66
- @@ -135,7 +148,8 @@ def _dataarray_concat(arrays, dim, data_vars, coords, compat,
67
- datasets.append(arr._to_temp_dataset())
68
-
69
- ds = _dataset_concat(datasets, dim, data_vars=data_vars, coords=coords,
70
- - compat=compat, positions=positions)
71
- + compat=compat, positions=positions, join=join,
72
- + fill_value=fill_value)
73
- return _restore_dataarray_from_temp_dataset(ds)
74
-
75
-
76
- @@ -145,11 +159,54 @@ def _calc_concat_over(datasets, dim, data_vars, coords):
77
- concat_over = set()
78
- equals = {}
79
-
80
- + # Get union of all variable names across datasets
81
- + all_data_vars = set()
82
- + all_coords = set()
83
- + for ds in datasets:
84
- + all_data_vars.update(ds.data_vars)
85
- + all_coords.update(ds.coords)
86
- +
87
- if dim in datasets[0]:
88
- concat_over.add(dim)
89
- for ds in datasets:
90
- @@ -202,7 +259,8 @@ def _calc_concat_over(datasets, dim, data_vars, coords):
91
- concat_over.update(concat_coords)
92
-
93
- - return concat_over, equals
94
- + return concat_over, equals, all_data_vars, all_coords
95
-
96
-
97
- def _dataset_concat(datasets, dim, data_vars, coords, compat, positions):
98
- +def _dataset_concat(datasets, dim, data_vars, coords, compat, positions,
99
- + join='outer', fill_value=np.nan):
100
- """
101
- Concatenate a sequence of datasets along a new or existing dimension
102
- """
103
- @@ -222,7 +280,48 @@ def _dataset_concat(datasets, dim, data_vars, coords, compat, positions):
104
- datasets = list(datasets)
105
- dim, coord = _calc_concat_dim_coord(dim)
106
-
107
- - concat_over, equals = _calc_concat_over(datasets, dim, data_vars, coords)
108
- + concat_over, equals, all_data_vars, all_coords = _calc_concat_over(
109
- + datasets, dim, data_vars, coords)
110
- +
111
- + # Handle join logic for mismatched variables
112
- + if join == 'outer':
113
- + # Expand each dataset to include all variables from all datasets
114
- + expanded_datasets = []
115
- + for ds in datasets:
116
- + missing_data_vars = all_data_vars - set(ds.data_vars)
117
- + missing_coords = all_coords - set(ds.coords) - {dim}
118
- +
119
- + if missing_data_vars or missing_coords:
120
- + # Create a copy and add missing variables filled with fill_value
121
- + ds = ds.copy()
122
- + for var in missing_data_vars:
123
- + # Find the variable in another dataset to get its dims
124
- + for other_ds in datasets:
125
- + if var in other_ds.data_vars:
126
- + template = other_ds[var]
127
- + # Create shape based on this dataset's dimensions
128
- + shape = tuple(ds.dims.get(d, template.sizes[d])
129
- + for d in template.dims)
130
- + data = np.full(shape, fill_value, dtype=template.dtype)
131
- + ds[var] = (template.dims, data, template.attrs.copy())
132
- + break
133
- + expanded_datasets.append(ds)
134
- + datasets = expanded_datasets
135
- + elif join == 'inner':
136
- + # Keep only variables present in all datasets
137
- + common_data_vars = set.intersection(*[set(ds.data_vars) for ds in datasets])
138
- + datasets = [ds[list(common_data_vars)] for ds in datasets]
139
- + elif join == 'left':
140
- + # Keep only variables from first dataset
141
- + first_vars = set(datasets[0].data_vars)
142
- + datasets = [ds[[v for v in ds.data_vars if v in first_vars]] for ds in datasets]
143
- + elif join == 'right':
144
- + # Keep only variables from last dataset
145
- + last_vars = set(datasets[-1].data_vars)
146
- + datasets = [ds[[v for v in ds.data_vars if v in last_vars]] for ds in datasets]
147
- + elif join == 'exact':
148
- + # Raise error if variables don't match (legacy behavior)
149
- + first_vars = set(datasets[0].data_vars)
150
- + for i, ds in enumerate(datasets[1:], 1):
151
- + if set(ds.data_vars) != first_vars:
152
- + raise ValueError(
153
- + f"Dataset {i} has different variables than first dataset. "
154
- + f"Use join='outer' to handle datasets with different variables."
155
- + )
156
-
157
- # determine which variables to merge, and then merge them according to compat
158
- variables_to_merge = (coord_names | data_names) - concat_over - dim_names
159
- ```
@@ -1,17 +0,0 @@
1
- # pydata__xarray-4094
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the existing patch and analysis, here's the fix for the `to_unstacked_dataset` issue:
6
-
7
- --- a/xarray/core/dataarray.py
8
- +++ b/xarray/core/dataarray.py
9
- @@ -1956,7 +1956,7 @@ class DataArray(AbstractArray, DataWithCoords):
10
- # pull variables out of datarray
11
- data_dict = {}
12
- for k in variables:
13
- - data_dict[k] = self.sel({dim: k}).squeeze(drop=True)
14
- + data_dict[k] = self.sel({dim: k}).squeeze(drop=True).drop_vars(dim)
15
-
16
- # unstacked dataset
17
- return Dataset(data_dict)
@@ -1,134 +0,0 @@
1
- # pydata__xarray-4248
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- I don't have access to the xarray repository files in the local environment. However, based on my knowledge of the xarray codebase and the architect's analysis, I can generate the patch for this feature request.
6
-
7
- ```diff
8
- --- a/xarray/core/formatting.py
9
- +++ b/xarray/core/formatting.py
10
- @@ -261,6 +261,29 @@ def format_array_flat(array, max_width: int):
11
- return pprint_str
12
-
13
-
14
- +def _get_units_from_var(var) -> str:
15
- + """Extract units string from a variable.
16
- +
17
- + Checks for units in the following order:
18
- + 1. Duck array with units attribute (e.g., pint arrays)
19
- + 2. attrs['units']
20
- +
21
- + Returns empty string if no units found.
22
- + """
23
- + # Check for duck array with units (e.g., pint)
24
- + data = var.data
25
- + if hasattr(data, "units"):
26
- + units = data.units
27
- + # Try _repr_short_() for compact representation
28
- + if hasattr(units, "_repr_short_"):
29
- + return str(units._repr_short_())
30
- + return str(units)
31
- + # Fall back to attrs['units']
32
- + if "units" in var.attrs:
33
- + return str(var.attrs["units"])
34
- + return ""
35
- +
36
- +
37
- def summarize_variable(
38
- name: Hashable, var, col_width: int, max_width: int = None, is_index: bool = False
39
- ):
40
- @@ -268,6 +291,7 @@ def summarize_variable(
41
- max_width = OPTIONS["display_width"]
42
-
43
- marker = "*" if is_index else " "
44
- + units_str = _get_units_from_var(var) if OPTIONS["display_units"] else ""
45
- if is_dask_collection(var.data):
46
- dims_str = "({})".format(", ".join(map(str, var.dims)))
47
- else:
48
- @@ -279,9 +303,15 @@ def summarize_variable(
49
- name_str = pretty_print(f" {marker}{name} ", col_width)
50
- dims_str = pretty_print(dims_str, dims_width)
51
-
52
- - front_str = f"{name_str}{dims_str}{var.dtype} "
53
- + if units_str:
54
- + units_display = f"[{units_str}] "
55
- + front_str = f"{name_str}{dims_str}{var.dtype} {units_display}"
56
- + else:
57
- + front_str = f"{name_str}{var.dtype} "
58
-
59
- - values_width = max_width - len(front_str)
60
- + # Calculate remaining width for values, accounting for units if present
61
- + base_width = len(f"{name_str}{dims_str}{var.dtype} ")
62
- + values_width = max_width - base_width - (len(f"[{units_str}] ") if units_str else 0)
63
- values_str = inline_variable_array_repr(var, values_width)
64
-
65
- return front_str + values_str
66
- --- a/xarray/core/formatting_html.py
67
- +++ b/xarray/core/formatting_html.py
68
- @@ -7,6 +7,7 @@ from html import escape
69
- from importlib.resources import read_binary
70
-
71
- from .formatting import (
72
- + _get_units_from_var,
73
- inline_variable_array_repr,
74
- short_data_repr,
75
- )
76
- @@ -117,7 +118,12 @@ def summarize_variable(name, var, is_index=False, dtype=None, preview=None):
77
-
78
- name = escape(str(name))
79
- dtype = dtype or escape(str(var.dtype))
80
- - cssclass_idx = " class='xr-has-index'" if is_index else ""
81
- +
82
- + # Get units string
83
- + units_str = _get_units_from_var(var) if OPTIONS["display_units"] else ""
84
- + units_display = f" [{escape(units_str)}]" if units_str else ""
85
- +
86
- + cssclass_idx = " class='xr-has-index'" if is_index else ""
87
-
88
- # "unique" ids required to expand/collapse subsections
89
- attrs_id = "attrs-" + str(uuid.uuid4())
90
- @@ -136,7 +142,7 @@ def summarize_variable(name, var, is_index=False, dtype=None, preview=None):
91
- f"<div class='xr-var-dims'>{dims_str}</div>"
92
- f"<div class='xr-var-dtype'>{dtype}</div>"
93
- f"<div class='xr-var-preview xr-preview'>{preview}</div>"
94
- - f"<input id='{attrs_id}' class='xr-var-attrs-in' "
95
- + f"<div class='xr-var-units'>{units_display}</div>" f"<input id='{attrs_id}' class='xr-var-attrs-in' "
96
- f"type='checkbox' {disabled}>"
97
- f"<label for='{attrs_id}' title='Show/Hide attributes'>"
98
- f"{attrs_icon}</label>"
99
- --- a/xarray/core/options.py
100
- +++ b/xarray/core/options.py
101
- @@ -23,6 +23,7 @@ DISPLAY_MAX_ROWS = "display_max_rows"
102
- DISPLAY_STYLE = "display_style"
103
- DISPLAY_WIDTH = "display_width"
104
- DISPLAY_EXPAND_DATA = "display_expand_data"
105
- +DISPLAY_UNITS = "display_units"
106
- FILE_CACHE_MAXSIZE = "file_cache_maxsize"
107
- KEEP_ATTRS = "keep_attrs"
108
- WARN_FOR_UNCLOSED_FILES = "warn_for_unclosed_files"
109
- @@ -38,6 +39,7 @@ OPTIONS: T_Options = {
110
- DISPLAY_STYLE: "html",
111
- DISPLAY_WIDTH: 80,
112
- DISPLAY_EXPAND_DATA: True,
113
- + DISPLAY_UNITS: True,
114
- FILE_CACHE_MAXSIZE: 128,
115
- KEEP_ATTRS: "default",
116
- WARN_FOR_UNCLOSED_FILES: False,
117
- @@ -53,6 +55,7 @@ _VALIDATORS = {
118
- DISPLAY_MAX_ROWS: _positive_integer,
119
- DISPLAY_STYLE: functools.partial(_in_set, _DISPLAY_OPTIONS),
120
- DISPLAY_WIDTH: _positive_integer,
121
- + DISPLAY_UNITS: lambda value: isinstance(value, bool),
122
- DISPLAY_EXPAND_DATA: lambda value: isinstance(value, bool),
123
- FILE_CACHE_MAXSIZE: _positive_integer,
124
- KEEP_ATTRS: lambda value: value in [True, False, "default"],
125
- @@ -103,6 +106,8 @@ class set_options:
126
- Default: ``80``.
127
- - ``display_expand_data``: whether to expand data arrays in HTML repr.
128
- Default: ``True``.
129
- + - ``display_units``: whether to show units in repr (from attrs['units']
130
- + or duck arrays like pint). Default: ``True``.
131
- - ``file_cache_maxsize``: maximum number of open files to hold in xarray's
132
- global least-recently-usage cached. This should be smaller than your
133
- system's per-process file descriptor limit, e.g., ``ulimit -n`` on Linux.
134
- ```
@@ -1,20 +0,0 @@
1
- # pydata__xarray-4493
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the architect's analysis and my knowledge of xarray's codebase structure, I can generate the patch. The issue is in `xarray/core/variable.py` in the `as_compatible_data` function where DataArray objects are not handled explicitly and fall through to `np.asarray()` which triggers eager computation.
6
-
7
- Here's the patch:
8
-
9
- --- a/xarray/core/variable.py
10
- +++ b/xarray/core/variable.py
11
- @@ -164,6 +164,9 @@ def as_compatible_data(data, fastpath=False):
12
- if isinstance(data, Variable):
13
- return data.data
14
-
15
- + if isinstance(data, DataArray):
16
- + return data.data
17
- +
18
- if isinstance(data, np.ndarray):
19
- if data.dtype.kind == "O":
20
- data = _possibly_convert_objects(data)
@@ -1,23 +0,0 @@
1
- # pydata__xarray-5131
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the issue description and my knowledge of the xarray codebase, I can generate the patch. The issue describes that the `__repr__` method has a trailing whitespace in the format string. The typical pattern in xarray's groupby.py is:
6
-
7
- ```python
8
- def __repr__(self):
9
- return "{}, grouped over {!r} \n{} groups with labels {}.".format(...)
10
- ```
11
-
12
- The trailing space before `\n` needs to be removed.
13
-
14
- --- a/xarray/core/groupby.py
15
- +++ b/xarray/core/groupby.py
16
- @@ -436,7 +436,7 @@ class GroupBy:
17
- def __repr__(self):
18
- return "{}, grouped over {!r}\n{} groups with labels {}.".format(
19
- self.__class__.__name__,
20
- self._unique_coord.name,
21
- self._unique_coord.size,
22
- ", ".join(format_array_flat(self._unique_coord, 30).split()),
23
- )
@@ -1,15 +0,0 @@
1
- # pylint-dev__pylint-5859
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/pylint/checkers/misc.py
6
- +++ b/pylint/checkers/misc.py
7
- @@ -94,7 +94,7 @@ class EncodingChecker(BaseChecker):
8
-
9
- def open(self):
10
- super().open()
11
- - notes = "|".join(self.config.notes)
12
- + notes = "|".join(map(re.escape, self.config.notes))
13
- if self.config.notes_rgx:
14
- regex_string = rf"#\s*({notes}|{self.config.notes_rgx})\b"
15
- else:
@@ -1,36 +0,0 @@
1
- # pylint-dev__pylint-6506
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the architect's analysis, I'll generate the patch for fixing the traceback issue. The fix involves catching `_UnrecognizedOptionError` in `run.py` and printing a user-friendly error message instead of letting the exception propagate.
6
-
7
- ```
8
- --- a/pylint/lint/run.py
9
- +++ b/pylint/lint/run.py
10
- @@ -17,6 +17,7 @@ from pylint.config.config_initialization import _config_initialization
11
- from pylint.config.exceptions import ArgumentPreprocessingError
12
- from pylint.constants import full_version
13
- from pylint.lint.base_options import _make_linter_options
14
- +from pylint.config.exceptions import _UnrecognizedOptionError
15
- from pylint.lint.pylinter import PyLinter
16
-
17
- try:
18
- @@ -132,9 +133,14 @@ class Run:
19
- _make_linter_options(linter),
20
- )
21
-
22
- - args = _config_initialization(
23
- - linter, args, reporter, config_file=self._rcfile, verbose_mode=self._verbose
24
- - )
25
- + try:
26
- + args = _config_initialization(
27
- + linter, args, reporter, config_file=self._rcfile, verbose_mode=self._verbose
28
- + )
29
- + except _UnrecognizedOptionError as exc:
30
- + msg = ", ".join(exc.options)
31
- + print(f"pylint: error: unrecognized arguments: {msg}", file=sys.stderr)
32
- + sys.exit(32)
33
-
34
- if linter.config.jobs < 0:
35
- print(
36
- ```
@@ -1,31 +0,0 @@
1
- # pylint-dev__pylint-7080
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the architect's analysis and my understanding of pylint's codebase structure, I can generate the patch. The issue is that when using `--recursive=y`, paths like `./src/gen/about.py` are being checked against regex patterns like `^src/gen/.*$`, and the leading `./` prevents the match. The fix is to normalize the path using `os.path.normpath()` before matching.
6
-
7
- Here is the patch:
8
-
9
- ```
10
- --- a/pylint/lint/pylinter.py
11
- +++ b/pylint/lint/pylinter.py
12
- @@ -597,6 +597,7 @@ class PyLinter(
13
- for root, _, files in os.walk(start_path, followlinks=follow_imports):
14
- + root = os.path.normpath(root)
15
- if should_ignore_path(root, self.config.ignore_paths, self.config.ignore_patterns):
16
- continue
17
- for file in files:
18
- ```
19
-
20
- Wait, I need to provide a more complete patch with proper context. Let me construct the correct unified diff format based on the typical pylint codebase structure around line 600:
21
-
22
- --- a/pylint/lint/pylinter.py
23
- +++ b/pylint/lint/pylinter.py
24
- @@ -600,6 +600,7 @@ class PyLinter(
25
- skip_subtrees: list[str] = []
26
-
27
- for root, dirs, files in os.walk(start_path, followlinks=follow_imports):
28
- + root = os.path.normpath(root)
29
- if _is_in_ignore_list_re(
30
- os.path.basename(root), self.config.ignore_patterns
31
- ) or _is_in_ignore_list_re(root, self.config.ignore_paths):
@@ -1,51 +0,0 @@
1
- # pylint-dev__pylint-7114
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on my analysis of the issue and understanding of pylint's codebase, here is the patch that fixes this issue:
6
-
7
- ```
8
- --- a/pylint/lint/expand_modules.py
9
- +++ b/pylint/lint/expand_modules.py
10
- @@ -1,6 +1,7 @@
11
- # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
12
- # For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
13
- # Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
14
- +from __future__ import annotations
15
-
16
- import os
17
- import sys
18
- @@ -48,14 +49,21 @@ def expand_modules(
19
- basename = os.path.basename(something)
20
- if _is_in_ignore_list_re(basename, ignore_list_re) or _is_in_ignore_list_paths_re(something, ignore_list_paths_re):
21
- continue
22
- - module_path = get_python_path(something)
23
- - additional_search_path = [".", module_path] + path
24
- if os.path.exists(something):
25
- # this is a file or a directory
26
- try:
27
- - modname = ".".join(
28
- - modutils.modpath_from_file(something, path=additional_search_path)
29
- - )
30
- + if os.path.isdir(something):
31
- + # Handle directories specially to avoid confusing a directory
32
- + # with a module of the same name inside it (e.g., a/a.py)
33
- + modname = os.path.basename(os.path.normpath(os.path.abspath(something)))
34
- + else:
35
- + module_path = get_python_path(something)
36
- + additional_search_path = [".", module_path] + path
37
- + modname = ".".join(
38
- + modutils.modpath_from_file(something, path=additional_search_path)
39
- + )
40
- except ImportError:
41
- modname = os.path.splitext(basename)[0]
42
- if os.path.isdir(something):
43
- ```
44
-
45
- This patch fixes the issue by:
46
-
47
- 1. When the input is a directory, it uses `os.path.basename(os.path.normpath(os.path.abspath(something)))` to get the module name directly from the directory name, rather than calling `modutils.modpath_from_file()` which incorrectly resolves `a/` to `a.a` when `a/a.py` exists.
48
-
49
- 2. For files, it continues to use the existing `modutils.modpath_from_file()` logic which works correctly.
50
-
51
- 3. The `module_path` and `additional_search_path` computation is moved inside the file branch since it's only needed there.