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,69 +0,0 @@
1
- # pytest-dev__pytest-5692
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Based on the architect's analysis and my knowledge of pytest's junitxml.py structure, I'll generate a patch that adds the hostname and timestamp properties to the generated JUnit XML reports:
6
-
7
- ```
8
- --- a/src/_pytest/junitxml.py
9
- +++ b/src/_pytest/junitxml.py
10
- @@ -12,6 +12,8 @@ import functools
11
- import os
12
- import re
13
- import sys
14
- +import platform
15
- +from datetime import datetime
16
- from typing import Callable
17
- from typing import Dict
18
- from typing import List
19
- @@ -441,6 +443,7 @@ class LogXML:
20
- self.node_reporters = {} # type: Dict[Tuple[Union[str, TestReport], object], _NodeReporter]
21
- self.node_reporters_ordered = [] # type: List[_NodeReporter]
22
- self.global_properties = [] # type: List[Tuple[str, str]]
23
- + self.suite_start_time = None # type: Optional[float]
24
-
25
- # List of reports that failed on call but teardown is pending.
26
- self.open_reports = [] # type: List[TestReport]
27
- @@ -531,6 +534,9 @@ class LogXML:
28
- def pytest_sessionstart(self):
29
- self.suite_start_time = time.time()
30
-
31
- + def pytest_sessionstart(self):
32
- + self.suite_start_time = time.time()
33
- +
34
- def pytest_sessionfinish(self):
35
- dirname = os.path.dirname(os.path.abspath(self.logfile))
36
- if not os.path.isdir(dirname):
37
- @@ -647,6 +653,8 @@ class LogXML:
38
- errors=str(self.stats.get("error", 0)),
39
- skipped=str(self.stats.get("skipped", 0)),
40
- tests=str(numtests),
41
- + hostname=platform.node(),
42
- + timestamp=datetime.fromtimestamp(self.suite_start_time).isoformat(timespec="seconds"),
43
- time="%.3f" % suite_time_delta,
44
- )
45
- logfile.write(Junit.testsuite(self._get_global_properties_node(), *suite_node))
46
- ```
47
-
48
- Wait, let me reconsider - the patch above has issues. Let me generate a cleaner, correct patch based on the typical structure of pytest's junitxml.py:
49
-
50
- --- a/src/_pytest/junitxml.py
51
- +++ b/src/_pytest/junitxml.py
52
- @@ -12,6 +12,8 @@ import functools
53
- import os
54
- import re
55
- import sys
56
- +import platform
57
- +from datetime import datetime
58
- from typing import Callable
59
- from typing import Dict
60
- from typing import List
61
- @@ -652,6 +654,8 @@ class LogXML:
62
- errors=str(self.stats.get("error", 0)),
63
- skipped=str(self.stats.get("skipped", 0)),
64
- tests=str(numtests),
65
- + hostname=platform.node(),
66
- + timestamp=datetime.fromtimestamp(self.suite_start_time).isoformat(timespec="seconds"),
67
- time="%.3f" % suite_time_delta,
68
- )
69
- logfile.write(Junit.testsuite(self._get_global_properties_node(), *suite_node))
@@ -1,17 +0,0 @@
1
- # pytest-dev__pytest-6116
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- I can see the existing patch format. Let me verify the correct line numbers by checking the actual pytest source file structure. Based on the architect's analysis and the existing patch, I need to generate a proper patch that adds `--co` as a shortcut for `--collect-only`.
6
-
7
- --- a/src/_pytest/main.py
8
- +++ b/src/_pytest/main.py
9
- @@ -109,6 +109,7 @@ def pytest_addoption(parser: Parser) -> None:
10
- dest="collectonly",
11
- help="only collect tests, don't execute them.",
12
- )
13
- group.addoption(
14
- + "--co",
15
- "--collect-only",
16
- "--collectonly",
17
- action="store_true",
@@ -1,14 +0,0 @@
1
- # pytest-dev__pytest-7168
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/src/_pytest/_io/saferepr.py
6
- +++ b/src/_pytest/_io/saferepr.py
7
- @@ -20,7 +20,7 @@ def _format_repr_exception(exc: BaseException, obj: object) -> str:
8
- exc_info = "unknown"
9
- return (
10
- "<[{} raised in repr()] {} object at 0x{:x}>".format(
11
- - exc_info, obj.__class__.__name__, id(obj)
12
- + exc_info, type(obj).__name__, id(obj)
13
- )
14
- )
@@ -1,391 +0,0 @@
1
- # pytest-dev__pytest-7220
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/src/_pytest/_code/code.py
6
- +++ b/src/_pytest/_code/code.py
7
- @@ -1,4 +1,5 @@
8
- import inspect
9
- +import os
10
- import re
11
- import sys
12
- import traceback
13
- @@ -551,13 +552,27 @@ class ReprFileLocation(TerminalRepr):
14
- self.lineno = lineno
15
- self.message = message
16
-
17
- - def toterminal(self, tw: TerminalWriter) -> None:
18
- + def toterminal(self, tw: TerminalWriter, invocation_dir=None) -> None:
19
- # filename and samples of underline
20
- msg = self.message
21
- - i = msg.find("\n")
22
- - if i != -1:
23
- - msg = msg[:i]
24
- - tw.write(self.path, bold=True, red=True)
25
- + lineno = self.lineno
26
- + path = self.path
27
- +
28
- + # Compute path relative to invocation directory if available
29
- + if invocation_dir is not None:
30
- + try:
31
- + abspath = os.path.abspath(path)
32
- + relpath = os.path.relpath(abspath, str(invocation_dir))
33
- + # Use relative path unless it goes too far up
34
- + if not relpath.startswith(".."):
35
- + path = relpath
36
- + else:
37
- + path = abspath
38
- + except (ValueError, OSError):
39
- + pass
40
- +
41
- + tw.write(path, bold=True, red=True)
42
- tw.line(":{}: {}".format(self.lineno, msg))
43
-
44
-
45
- --- a/src/_pytest/_code/code.py
46
- +++ b/src/_pytest/_code/code.py
47
- @@ -558,6 +558,10 @@ class ReprFileLocation(TerminalRepr):
48
- lineno = self.lineno
49
- path = self.path
50
-
51
- + i = msg.find("\n")
52
- + if i != -1:
53
- + msg = msg[:i]
54
- +
55
- # Compute path relative to invocation directory if available
56
- if invocation_dir is not None:
57
- try:
58
- --- a/src/_pytest/terminal.py
59
- +++ b/src/_pytest/terminal.py
60
- @@ -992,7 +992,7 @@ class TerminalReporter:
61
- for reprlocation_lines in rep.longrepr.chain:
62
- for reprlocation, lines, style in reprlocation_lines:
63
- if reprlocation:
64
- - reprlocation.toterminal(self._tw)
65
- + reprlocation.toterminal(self._tw, self.config.invocation_dir)
66
- for line in lines:
67
- self._tw.line(line)
68
-
69
- @@ -1003,6 +1003,9 @@ class TerminalReporter:
70
- for line in rep.longrepr.splitlines():
71
- self._tw.line(line)
72
- else:
73
- - rep.longrepr.toterminal(self._tw)
74
- + if hasattr(rep.longrepr, 'toterminal'):
75
- + rep.longrepr.toterminal(self._tw)
76
- + else:
77
- + self._tw.line(str(rep.longrepr))
78
-
79
- def _folded_skips(self) -> List[Tuple[int, str, Optional[int], str]]:
80
- --- a/src/_pytest/terminal.py
81
- +++ b/src/_pytest/terminal.py
82
- @@ -991,16 +991,7 @@ class TerminalReporter:
83
- if hasattr(rep.longrepr, "chain"):
84
- for reprlocation_lines in rep.longrepr.chain:
85
- - for reprlocation, lines, style in reprlocation_lines:
86
- - if reprlocation:
87
- - reprlocation.toterminal(self._tw, self.config.invocation_dir)
88
- - for line in lines:
89
- - self._tw.line(line)
90
- -
91
- - for line in rep.longrepr.chain[-1][1]:
92
- - self._tw.line(line)
93
- - elif isinstance(rep.longrepr, str):
94
- - for line in rep.longrepr.splitlines():
95
- - self._tw.line(line)
96
- - else:
97
- - if hasattr(rep.longrepr, 'toterminal'):
98
- - rep.longrepr.toterminal(self._tw)
99
- - else:
100
- - self._tw.line(str(rep.longrepr))
101
- + rep.longrepr.toterminal(self._tw)
102
- + elif isinstance(rep.longrepr, str):
103
- + for line in rep.longrepr.splitlines():
104
- + self._tw.line(line)
105
- + else:
106
- + rep.longrepr.toterminal(self._tw)
107
- --- a/src/_pytest/_code/code.py
108
- +++ b/src/_pytest/_code/code.py
109
- @@ -476,6 +476,7 @@ class ExceptionChainRepr(ExceptionRepr):
110
- super().__init__()
111
- self.chain = chain
112
- # reprcrash and reprtraceback of the outermost (the newest) parsing exception
113
- + self.invocation_dir = None
114
- self.reprtraceback = chain[-1][0]
115
- self.reprcrash = chain[-1][1]
116
-
117
- @@ -485,6 +486,8 @@ class ExceptionChainRepr(ExceptionRepr):
118
- return "<{} tbstyle={} {!r}>".format(cls, style, self.chain)
119
-
120
- def toterminal(self, tw: TerminalWriter) -> None:
121
- + invocation_dir = getattr(self, 'invocation_dir', None)
122
- +
123
- for element in self.chain:
124
- reprtraceback, reprcrash, descr = element
125
- if descr:
126
- @@ -492,7 +495,7 @@ class ExceptionChainRepr(ExceptionRepr):
127
- reprtraceback.toterminal(tw)
128
- if reprcrash:
129
- # Add empty line between traceback and file location
130
- - reprcrash.toterminal(tw)
131
- + reprcrash.toterminal(tw, invocation_dir)
132
-
133
-
134
- class ReprTraceback(TerminalRepr):
135
- --- a/src/_pytest/reports.py
136
- +++ b/src/_pytest/reports.py
137
- @@ -5,6 +5,7 @@ from typing import List
138
- from typing import Optional
139
- from typing import Tuple
140
- from typing import Union
141
- +from pathlib import Path
142
-
143
- import py
144
-
145
- @@ -131,6 +132,17 @@ class BaseReport:
146
- writer.line("")
147
- self.longrepr.toterminal(writer)
148
-
149
- + def set_invocation_dir(self, invocation_dir: Path) -> None:
150
- + """Set the invocation directory for path computation in error messages.
151
- +
152
- + This is used to ensure file paths in error messages are always relative
153
- + to the original invocation directory, not the current working directory.
154
- + """
155
- + if hasattr(self.longrepr, 'chain'):
156
- + self.longrepr.invocation_dir = invocation_dir
157
- + if hasattr(self.longrepr, 'reprcrash'):
158
- + self.longrepr.invocation_dir = invocation_dir
159
- +
160
- def _get_verbose_word(self, config):
161
- _category, _short, verbose = config.hook.pytest_report_teststatus(
162
- report=self, config=config
163
- --- a/src/_pytest/terminal.py
164
- +++ b/src/_pytest/terminal.py
165
- @@ -994,6 +994,9 @@ class TerminalReporter:
166
- for rep in reports:
167
- if rep.outcome == "failed":
168
- self._outrep_summary(rep)
169
- + if hasattr(rep.longrepr, 'invocation_dir'):
170
- + rep.longrepr.invocation_dir = self.config.invocation_dir
171
- + self._outrep_summary(rep)
172
- --- a/src/_pytest/terminal.py
173
- +++ b/src/_pytest/terminal.py
174
- @@ -991,9 +991,11 @@ class TerminalReporter:
175
- def short_test_summary(self) -> None:
176
- if not self.reportchars:
177
- return
178
- -
179
- +
180
- for rep in self._getfailures():
181
- msg = self._getfailrepr(rep)
182
- + if hasattr(rep.longrepr, 'invocation_dir'):
183
- + rep.longrepr.invocation_dir = self.config.invocation_dir
184
- self.write_sep("_", "FAILURES")
185
- for rep in self.stats.get("failed", []):
186
- if self.verbosity <= 0:
187
- @@ -1001,6 +1003,8 @@ class TerminalReporter:
188
- else:
189
- self._outrep_summary(rep)
190
-
191
- + def _outrep_summary(self, rep: "BaseReport") -> None:
192
- + """Print the failure / error summary for a report."""
193
- if hasattr(rep.longrepr, "chain"):
194
- rep.longrepr.toterminal(self._tw)
195
- elif isinstance(rep.longrepr, str):
196
- --- a/src/_pytest/terminal.py
197
- +++ b/src/_pytest/terminal.py
198
- @@ -982,6 +982,8 @@ class TerminalReporter:
199
- self._tw.line(line)
200
-
201
- def _outrep_summary(self, rep: "BaseReport") -> None:
202
- + if hasattr(rep.longrepr, 'invocation_dir') and rep.longrepr.invocation_dir is None:
203
- + rep.longrepr.invocation_dir = self.config.invocation_dir
204
- rep.toterminal(self._tw)
205
-
206
- def summary_failures(self) -> None:
207
- --- a/src/_pytest/_code/code.py
208
- +++ b/src/_pytest/_code/code.py
209
- @@ -551,7 +551,7 @@ class ReprFileLocation(TerminalRepr):
210
- self.lineno = lineno
211
- self.message = message
212
-
213
- - def toterminal(self, tw: TerminalWriter, invocation_dir=None) -> None:
214
- + def toterminal(self, tw: TerminalWriter) -> None:
215
- # filename and samples of underline
216
- msg = self.message
217
- lineno = self.lineno
218
- @@ -561,17 +561,7 @@ class ReprFileLocation(TerminalRepr):
219
- if i != -1:
220
- msg = msg[:i]
221
-
222
- - # Compute path relative to invocation directory if available
223
- - if invocation_dir is not None:
224
- - try:
225
- - abspath = os.path.abspath(path)
226
- - relpath = os.path.relpath(abspath, str(invocation_dir))
227
- - # Use relative path unless it goes too far up
228
- - if not relpath.startswith(".."):
229
- - path = relpath
230
- - else:
231
- - path = abspath
232
- - except (ValueError, OSError):
233
- - pass
234
- -
235
- tw.write(path, bold=True, red=True)
236
- tw.line(":{}: {}".format(self.lineno, msg))
237
- --- a/src/_pytest/_code/code.py
238
- +++ b/src/_pytest/_code/code.py
239
- @@ -485,7 +485,6 @@ class ExceptionChainRepr(ExceptionRepr):
240
- return "<{} tbstyle={} {!r}>".format(cls, style, self.chain)
241
-
242
- def toterminal(self, tw: TerminalWriter) -> None:
243
- - invocation_dir = getattr(self, 'invocation_dir', None)
244
- -
245
- for element in self.chain:
246
- reprtraceback, reprcrash, descr = element
247
- if descr:
248
- @@ -493,7 +492,7 @@ class ExceptionChainRepr(ExceptionRepr):
249
- reprtraceback.toterminal(tw)
250
- if reprcrash:
251
- # Add empty line between traceback and file location
252
- - reprcrash.toterminal(tw, invocation_dir)
253
- + reprcrash.toterminal(tw)
254
- --- a/src/_pytest/_code/code.py
255
- +++ b/src/_pytest/_code/code.py
256
- @@ -475,7 +475,6 @@ class ExceptionChainRepr(ExceptionRepr):
257
- ) -> None:
258
- super().__init__()
259
- self.chain = chain
260
- - self.invocation_dir = None
261
- # reprcrash and reprtraceback of the outermost (the newest) parsing exception
262
- self.reprtraceback = chain[-1][0]
263
- self.reprcrash = chain[-1][1]
264
- --- a/src/_pytest/reports.py
265
- +++ b/src/_pytest/reports.py
266
- @@ -5,7 +5,6 @@ from typing import List
267
- from typing import Optional
268
- from typing import Tuple
269
- from typing import Union
270
- -from pathlib import Path
271
-
272
- import py
273
-
274
- @@ -132,17 +131,6 @@ class BaseReport:
275
- writer.line("")
276
- self.longrepr.toterminal(writer)
277
-
278
- - def set_invocation_dir(self, invocation_dir: Path) -> None:
279
- - """Set the invocation directory for path computation in error messages.
280
- -
281
- - This is used to ensure file paths in error messages are always relative
282
- - to the original invocation directory, not the current working directory.
283
- - """
284
- - if hasattr(self.longrepr, 'chain'):
285
- - self.longrepr.invocation_dir = invocation_dir
286
- - if hasattr(self.longrepr, 'reprcrash'):
287
- - self.longrepr.invocation_dir = invocation_dir
288
- -
289
- def _get_verbose_word(self, config):
290
- _category, _short, verbose = config.hook.pytest_report_teststatus(
291
- report=self, config=config
292
- --- a/src/_pytest/terminal.py
293
- +++ b/src/_pytest/terminal.py
294
- @@ -982,8 +982,6 @@ class TerminalReporter:
295
- self._tw.line(line)
296
-
297
- def _outrep_summary(self, rep: "BaseReport") -> None:
298
- - if hasattr(rep.longrepr, 'invocation_dir') and rep.longrepr.invocation_dir is None:
299
- - rep.longrepr.invocation_dir = self.config.invocation_dir
300
- rep.toterminal(self._tw)
301
-
302
- def summary_failures(self) -> None:
303
- --- a/src/_pytest/nodes.py
304
- +++ b/src/_pytest/nodes.py
305
- @@ -323,7 +323,15 @@ class Node:
306
- excinfo: ExceptionInfo[Union[BaseException, Entry]],
307
- style: "Optional[str]" = None,
308
- ) -> "Union[str, TerminalRepr]":
309
- - return excinfo.getrepr(
310
- + """Return a representation of the exception info for terminal output.
311
- +
312
- + This stores the invocation directory in the representation to ensure
313
- + file paths are always relative to the original directory, even if a
314
- + fixture changes the working directory.
315
- + """
316
- + invocation_dir = self.config.invocation_dir
317
- +
318
- + repr_result = excinfo.getrepr(
319
- funcargs=True,
320
- abspath=False,
321
- showlocals=self.config.option.showlocals,
322
- @@ -333,6 +341,11 @@ class Node:
323
- truncate_locals=True,
324
- )
325
-
326
- + # Store invocation_dir on the representation for later use
327
- + if hasattr(repr_result, 'reprtraceback'):
328
- + repr_result.invocation_dir = invocation_dir
329
- + return repr_result
330
- +
331
- # Methods for ordering nodes
332
- @property
333
- def nodeid(self) -> str:
334
- --- a/src/_pytest/_code/code.py
335
- +++ b/src/_pytest/_code/code.py
336
- @@ -475,6 +475,7 @@ class ExceptionChainRepr(ExceptionRepr):
337
- ) -> None:
338
- super().__init__()
339
- self.chain = chain
340
- + self.invocation_dir = None
341
- # reprcrash and reprtraceback of the outermost (the newest) parsing exception
342
- self.reprtraceback = chain[-1][0]
343
- self.reprcrash = chain[-1][1]
344
- @@ -485,11 +486,13 @@ class ExceptionChainRepr(ExceptionRepr):
345
- return "<{} tbstyle={} {!r}>".format(cls, style, self.chain)
346
-
347
- def toterminal(self, tw: TerminalWriter) -> None:
348
- + invocation_dir = getattr(self, 'invocation_dir', None)
349
- +
350
- for element in self.chain:
351
- reprtraceback, reprcrash, descr = element
352
- if descr:
353
- tw.line(descr, yellow=True)
354
- reprtraceback.toterminal(tw)
355
- if reprcrash:
356
- - # Add empty line between traceback and file location
357
- - reprcrash.toterminal(tw)
358
- + reprcrash.toterminal(tw, invocation_dir)
359
-
360
-
361
- class ReprTraceback(TerminalRepr):
362
- --- a/src/_pytest/_code/code.py
363
- +++ b/src/_pytest/_code/code.py
364
- @@ -551,7 +551,7 @@ class ReprFileLocation(TerminalRepr):
365
- self.lineno = lineno
366
- self.message = message
367
-
368
- - def toterminal(self, tw: TerminalWriter) -> None:
369
- + def toterminal(self, tw: TerminalWriter, invocation_dir=None) -> None:
370
- # filename and samples of underline
371
- msg = self.message
372
- lineno = self.lineno
373
- @@ -561,6 +561,18 @@ class ReprFileLocation(TerminalRepr):
374
- if i != -1:
375
- msg = msg[:i]
376
-
377
- + # Compute path relative to invocation directory if available
378
- + if invocation_dir is not None:
379
- + try:
380
- + abspath = os.path.abspath(path)
381
- + relpath = os.path.relpath(abspath, str(invocation_dir))
382
- + # Use relative path if it doesn't go up too many directories
383
- + if not relpath.startswith(".."):
384
- + path = relpath
385
- + else:
386
- + path = abspath
387
- + except (ValueError, OSError):
388
- + pass
389
- +
390
- tw.write(path, bold=True, red=True)
391
- tw.line(":{}: {}".format(self.lineno, msg))
@@ -1,48 +0,0 @@
1
- # pytest-dev__pytest-7373
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- --- a/src/_pytest/mark/evaluate.py
6
- +++ b/src/_pytest/mark/evaluate.py
7
- @@ -10,7 +10,6 @@ from ..outcomes import fail
8
- from ..outcomes import TEST_OUTCOME
9
- from .structures import Mark
10
- from _pytest.config import Config
11
- -from _pytest.store import StoreKey
12
-
13
-
14
- if TYPE_CHECKING:
15
- @@ -18,19 +17,6 @@ if TYPE_CHECKING:
16
- from _pytest.nodes import Item
17
-
18
-
19
- -evalcache_key = StoreKey[Dict[str, Any]]()
20
- -
21
- -
22
- -def cached_eval(config: Config, expr: str, d: Dict[str, object]) -> Any:
23
- - default = {} # type: Dict[str, object]
24
- - evalcache = config._store.setdefault(evalcache_key, default)
25
- - try:
26
- - return evalcache[expr]
27
- - except KeyError:
28
- - import _pytest._code
29
- -
30
- - exprcode = _pytest._code.compile(expr, mode="eval")
31
- - evalcache[expr] = x = eval(exprcode, d)
32
- - return x
33
- -
34
- -
35
- class MarkEvaluator:
36
- def __init__(self, item: "Item", name: str) -> None:
37
- self.item = item
38
- @@ -98,7 +84,9 @@ class MarkEvaluator:
39
- self.expr = expr
40
- if isinstance(expr, str):
41
- d = self._getglobals()
42
- - result = cached_eval(self.item.config, expr, d)
43
- + import _pytest._code
44
- +
45
- + result = eval(_pytest._code.compile(expr, mode="eval"), d)
46
- else:
47
- if "reason" not in mark.kwargs:
48
- # XXX better be checked at collection time
@@ -1,99 +0,0 @@
1
- # pytest-dev__pytest-7432
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- Now I can see the bug clearly. Looking at the `pytest_runtest_makereport` hook:
6
-
7
- 1. When `--runxfail` is used, the code hits `elif item.config.option.runxfail: pass # don't interfere`
8
- 2. This causes an early return via `pass`, which prevents the code from reaching the skip location fix block at the bottom
9
- 3. The skip location fix block is in an `elif` chain after the `runxfail` check, so it never gets executed when `--runxfail` is set
10
-
11
- The fix is to move the skip marker location handling outside of the `elif` chain so it always runs regardless of the `--runxfail` option.
12
-
13
- Here's the patch:
14
-
15
- ```
16
- --- a/src/_pytest/skipping.py
17
- +++ b/src/_pytest/skipping.py
18
- @@ -218,6 +218,14 @@ def pytest_runtest_makereport(item, call):
19
- rep.longrepr = "Unexpected success"
20
- rep.outcome = "failed"
21
-
22
- + if (
23
- + item._store.get(skipped_by_mark_key, True)
24
- + and rep.skipped
25
- + and type(rep.longrepr) is tuple
26
- + ):
27
- + # skipped by mark.skipif; change the location of the failure
28
- + # to point to the item definition, otherwise it will display
29
- + # the location of where the skip exception was raised within pytest
30
- + _, _, reason = rep.longrepr
31
- + filename, line = item.location[:2]
32
- + rep.longrepr = filename, line + 1, reason
33
- +
34
- elif item.config.option.runxfail:
35
- pass # don't interfere
36
- elif call.excinfo and call.excinfo.errisinstance(xfail.Exception):
37
- @@ -238,16 +246,6 @@ def pytest_runtest_makereport(item, call):
38
- rep.outcome = "passed"
39
- rep.wasxfail = explanation
40
- - elif (
41
- - item._store.get(skipped_by_mark_key, True)
42
- - and rep.skipped
43
- - and type(rep.longrepr) is tuple
44
- - ):
45
- - # skipped by mark.skipif; change the location of the failure
46
- - # to point to the item definition, otherwise it will display
47
- - # the location of where the skip exception was raised within pytest
48
- - _, _, reason = rep.longrepr
49
- - filename, line = item.location[:2]
50
- - rep.longrepr = filename, line + 1, reason
51
-
52
-
53
- # called by terminalreporter progress reporting
54
- ```
55
-
56
- Wait, I need to reconsider the structure. The code structure shows an if/elif chain. Let me think more carefully about the proper fix. The issue is that when `runxfail` is true, the `elif` for skip location never gets hit because `elif item.config.option.runxfail: pass` short-circuits it.
57
-
58
- The fix should convert the skip location handling to a separate `if` block that runs independently, not as part of the elif chain. Here's the correct patch:
59
-
60
- --- a/src/_pytest/skipping.py
61
- +++ b/src/_pytest/skipping.py
62
- @@ -213,7 +213,16 @@ def pytest_runtest_makereport(item, call):
63
- rep.longrepr = "Unexpected success"
64
- rep.outcome = "failed"
65
-
66
- - elif item.config.option.runxfail:
67
- + if (
68
- + item._store.get(skipped_by_mark_key, True)
69
- + and rep.skipped
70
- + and type(rep.longrepr) is tuple
71
- + ):
72
- + # skipped by mark.skipif; change the location of the failure
73
- + # to point to the item definition, otherwise it will display
74
- + # the location of where the skip exception was raised within pytest
75
- + _, _, reason = rep.longrepr
76
- + filename, line = item.location[:2]
77
- + rep.longrepr = filename, line + 1, reason
78
- + elif item.config.option.runxfail:
79
- pass # don't interfere
80
- elif call.excinfo and call.excinfo.errisinstance(xfail.Exception):
81
- rep.wasxfail = "reason: " + call.excinfo.value.msg
82
- @@ -234,15 +243,6 @@ def pytest_runtest_makereport(item, call):
83
- else:
84
- rep.outcome = "passed"
85
- rep.wasxfail = explanation
86
- - elif (
87
- - item._store.get(skipped_by_mark_key, True)
88
- - and rep.skipped
89
- - and type(rep.longrepr) is tuple
90
- - ):
91
- - # skipped by mark.skipif; change the location of the failure
92
- - # to point to the item definition, otherwise it will display
93
- - # the location of where the skip exception was raised within pytest
94
- - _, _, reason = rep.longrepr
95
- - filename, line = item.location[:2]
96
- - rep.longrepr = filename, line + 1, reason
97
-
98
-
99
- # called by terminalreporter progress reporting
@@ -1,4 +0,0 @@
1
- # pytest-dev__pytest-7490
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
@@ -1,27 +0,0 @@
1
- # pytest-dev__pytest-8365
2
- # Loki Mode Multi-Agent Patch
3
- # Attempts: 1
4
-
5
- The pytest repository doesn't appear to be checked out in this workspace. Based on the architect's analysis and the issue description, I'll generate the patch for the standard pytest `tmpdir.py` file structure. The fix involves sanitizing the username returned by `get_user()` to replace illegal directory characters.
6
-
7
- ```
8
- --- a/src/_pytest/tmpdir.py
9
- +++ b/src/_pytest/tmpdir.py
10
- @@ -1,4 +1,5 @@
11
- """Support for providing temporary directories to test functions."""
12
- +import re
13
- import os
14
- import tempfile
15
- from pathlib import Path
16
- @@ -78,7 +79,9 @@ class TempPathFactory:
17
- basetemp = config.cache.get("cache/basetemp", None)
18
- if basetemp is not None:
19
- basetemp = Path(basetemp)
20
- - rootdir = Path(tempfile.gettempdir()) / f"pytest-of-{get_user() or 'unknown'}"
21
- + # Sanitize username to remove characters illegal in directory names
22
- + user = re.sub(r"[\\/:*?\"<>|]", "_", get_user() or "unknown")
23
- + rootdir = Path(tempfile.gettempdir()) / f"pytest-of-{user}"
24
- if basetemp is not None:
25
- if basetemp.exists():
26
- return basetemp
27
- ```