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,185 +0,0 @@
1
- This is not the Sphinx repository. I need to work based on my knowledge of the Sphinx codebase to generate the patch. Let me search for the Sphinx repository structure to understand where the fix needs to be applied.
2
-
3
- Based on my knowledge of the Sphinx autodoc extension and the issue description, I need to create a patch that:
4
-
5
- 1. Allows the `inherited-members` option to accept multiple class names (comma-separated)
6
- 2. Modifies the filtering logic to skip members from ANY of the specified base classes
7
-
8
- Let me generate the patch for the `sphinx/ext/autodoc/__init__.py` file:
9
-
10
- ```
11
- --- a/sphinx/ext/autodoc/__init__.py
12
- +++ b/sphinx/ext/autodoc/__init__.py
13
- @@ -109,6 +109,15 @@ def identity(x: Any) -> Any:
14
- return x
15
-
16
-
17
- +def inherited_members_option(arg: Any) -> Union[object, Set[str]]:
18
- + """Used to convert the :inherited-members: option to auto directives."""
19
- + if arg in (None, True):
20
- + return 'object'
21
- + elif arg:
22
- + return set(x.strip() for x in arg.split(','))
23
- + else:
24
- + return 'object'
25
- +
26
- +
27
- class _All:
28
- """A special value for autodoc directives to include all members."""
29
- pass
30
- @@ -686,7 +695,7 @@ class Documenter:
31
- option_spec: OptionSpec = {
32
- 'noindex': bool_option,
33
- }
34
- + option_spec: ClassVar[OptionSpec] = {'noindex': bool_option}
35
-
36
- def get_attr(self, obj: Any, name: str, *defargs: Any) -> Any:
37
- """getattr() override for types such as Zope's DateRecurringIndex."""
38
- @@ -1078,7 +1087,7 @@ class ModuleDocumenter(Documenter):
39
- option_spec: OptionSpec = {
40
- 'members': members_option, 'undoc-members': bool_option,
41
- 'noindex': bool_option, 'inherited-members': inherited_members_option,
42
- - 'show-inheritance': bool_option, 'synopsis': identity,
43
- + 'show-inheritance': bool_option, 'synopsis': identity,
44
- 'platform': identity, 'deprecated': bool_option,
45
- 'member-order': member_order_option, 'exclude-members': exclude_members_option,
46
- 'private-members': private_members_option, 'special-members': members_option,
47
- @@ -1694,7 +1703,7 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
48
- option_spec: OptionSpec = {
49
- 'members': members_option, 'undoc-members': bool_option,
50
- 'noindex': bool_option, 'inherited-members': inherited_members_option,
51
- - 'show-inheritance': bool_option, 'member-order': member_order_option,
52
- + 'show-inheritance': bool_option, 'member-order': member_order_option,
53
- 'exclude-members': exclude_members_option,
54
- 'private-members': private_members_option, 'special-members': members_option,
55
- 'class-doc-from': class_doc_from_option,
56
- @@ -1813,10 +1822,14 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
57
- if name in ClassDocumenter.option_spec:
58
- self.options[name] = self.env.config.autodoc_default_options[name]
59
-
60
- # obtain the document_inherited_members option to allow the user to
61
- # override inherited_members for specific classes
62
- - inherited_members = self.options.inherited_members or ''
63
- - inherited_members = inherited_members.split(',') if inherited_members else []
64
- - self.options.inherited_members = inherited_members
65
- + pass
66
-
67
- def add_content(self, more_content: Optional[StringList]) -> None:
68
- if self.doc_as_attr:
69
- @@ -1848,13 +1861,18 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
70
- return None, None, None
71
-
72
- def filter_members(self, members: ObjectMembers, want_all: bool
73
- - ) -> List[Tuple[str, Any, bool]]:
74
- + ) -> List[Tuple[str, Any, bool]]:
75
- ret = []
76
-
77
- # determine the base classes to ignore
78
- - inherited_members = self.options.get('inherited-members', set())
79
- - if isinstance(inherited_members, str):
80
- - inherited_members = {inherited_members}
81
- + inherited_members_opt = self.options.get('inherited-members', set())
82
- + if inherited_members_opt is None:
83
- + inherited_members: Set[str] = set()
84
- + elif isinstance(inherited_members_opt, str):
85
- + inherited_members = {inherited_members_opt}
86
- + else:
87
- + inherited_members = inherited_members_opt
88
- +
89
- # chain of base classes that should be ignored
90
- ignored_classes: Set[type] = set()
91
- for cls in self.object.__mro__:
92
- @@ -1862,7 +1880,9 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
93
- # from here on, all classes should be ignored
94
- # NOTE: we no longer break at first match - we continue
95
- # to allow ignoring multiple separate base classes
96
- - ignored_classes.add(cls)
97
- + pass
98
- + if qualname in inherited_members:
99
- + ignored_classes.add(cls)
100
-
101
- for (membername, member) in members:
102
- # ignore members defined in a class in ignored_classes
103
- ```
104
-
105
- Let me create a more accurate patch based on the actual Sphinx codebase. I need to provide the correct unified diff:
106
-
107
- --- a/sphinx/ext/autodoc/__init__.py
108
- +++ b/sphinx/ext/autodoc/__init__.py
109
- @@ -109,6 +109,15 @@ def identity(x: Any) -> Any:
110
- return x
111
-
112
-
113
- +def inherited_members_option(arg: Any) -> Union[object, Set[str]]:
114
- + """Used to convert the :inherited-members: option to auto directives."""
115
- + if arg in (None, True):
116
- + return 'object'
117
- + elif arg:
118
- + return set(x.strip() for x in arg.split(','))
119
- + else:
120
- + return 'object'
121
- +
122
- +
123
- class _All:
124
- """A special value for autodoc directives to include all members."""
125
- pass
126
- @@ -686,7 +695,7 @@ class Documenter:
127
- option_spec: OptionSpec = {
128
- 'noindex': bool_option,
129
- }
130
- -
131
- +
132
- def get_attr(self, obj: Any, name: str, *defargs: Any) -> Any:
133
- """getattr() override for types such as Zope's DateRecurringIndex."""
134
- return autodoc_attrgetter(self.env.app, obj, name, *defargs)
135
- @@ -1078,7 +1087,7 @@ class ModuleDocumenter(Documenter):
136
- option_spec: OptionSpec = {
137
- 'members': members_option, 'undoc-members': bool_option,
138
- 'noindex': bool_option, 'inherited-members': inherited_members_option,
139
- - 'show-inheritance': bool_option, 'synopsis': identity,
140
- + 'show-inheritance': bool_option, 'synopsis': identity,
141
- 'platform': identity, 'deprecated': bool_option,
142
- 'member-order': member_order_option, 'exclude-members': exclude_members_option,
143
- 'private-members': private_members_option, 'special-members': members_option,
144
- @@ -1694,7 +1703,7 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
145
- option_spec: OptionSpec = {
146
- 'members': members_option, 'undoc-members': bool_option,
147
- 'noindex': bool_option, 'inherited-members': inherited_members_option,
148
- - 'show-inheritance': bool_option, 'member-order': member_order_option,
149
- + 'show-inheritance': bool_option, 'member-order': member_order_option,
150
- 'exclude-members': exclude_members_option,
151
- 'private-members': private_members_option, 'special-members': members_option,
152
- 'class-doc-from': class_doc_from_option,
153
- @@ -1848,13 +1857,18 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
154
- return None, None, None
155
-
156
- def filter_members(self, members: ObjectMembers, want_all: bool
157
- - ) -> List[Tuple[str, Any, bool]]:
158
- + ) -> List[Tuple[str, Any, bool]]:
159
- ret = []
160
-
161
- # determine the base classes to ignore
162
- - inherited_members = self.options.get('inherited-members', set())
163
- - if isinstance(inherited_members, str):
164
- - inherited_members = {inherited_members}
165
- + inherited_members_opt = self.options.get('inherited-members', set())
166
- + if inherited_members_opt is None:
167
- + inherited_members: Set[str] = set()
168
- + elif isinstance(inherited_members_opt, str):
169
- + inherited_members = {inherited_members_opt}
170
- + else:
171
- + inherited_members = inherited_members_opt
172
- +
173
- # chain of base classes that should be ignored
174
- ignored_classes: Set[type] = set()
175
- for cls in self.object.__mro__:
176
- @@ -1862,8 +1876,7 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter):
177
- qualname = cls.__module__ + '.' + cls.__qualname__
178
- if qualname in inherited_members:
179
- - # from here on, all classes should be ignored
180
- - break
181
- - ignored_classes.add(cls)
182
- + ignored_classes.add(cls)
183
- +
184
- for (membername, member) in members:
185
- # ignore members defined in a class in ignored_classes
@@ -1,129 +0,0 @@
1
- Based on the issue description, I need to analyze the problem and create a patch. The issue is about duplicated *args and **kwargs when using `autodoc_typehints = "description"`. Let me analyze what I know from the issue:
2
-
3
- 1. When `autodoc_typehints = "description"` is set, type hints are added to the parameter descriptions
4
- 2. For `*args` and `**kwargs`, the parameters are being duplicated - once with the stars (from the docstring) and once without (from the type hints)
5
- 3. The problem is that when matching parameters from type hints to existing docstring params, the code doesn't account for the `*` and `**` prefixes
6
-
7
- Looking at the Sphinx source code structure (which I know from my training), the relevant file is `sphinx/ext/autodoc/typehints.py`. The `modify_field_list` function handles merging type hints into the field list.
8
-
9
- The bug is in how the code matches parameter names. When looking for existing `:param args:` entries, it doesn't consider that the docstring might have `:param *args:` or `:param **kwargs:`.
10
-
11
- Here's the patch:
12
-
13
- --- a/sphinx/ext/autodoc/typehints.py
14
- +++ b/sphinx/ext/autodoc/typehints.py
15
- @@ -61,7 +61,11 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> No
16
- arguments: Dict[str, Dict[str, bool]] = {}
17
- fields = cast(Iterable[nodes.field], node)
18
- for field in fields:
19
- - field_name = field[0].astext()
20
- + try:
21
- + field_name = field[0].astext()
22
- + except (IndexError, TypeError):
23
- + continue
24
- +
25
- parts = re.split(' +', field_name)
26
- if parts[0] == 'param':
27
- if len(parts) == 2:
28
- @@ -83,11 +87,17 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> No
29
- arguments[name] = {'type': True}
30
-
31
- for name, annotation in annotations.items():
32
- + if name == 'return':
33
- + continue
34
- +
35
- field = nodes.field()
36
- if name == 'return':
37
- field += nodes.field_name('', 'rtype')
38
- field += nodes.field_body('', nodes.paragraph('', annotation))
39
- - elif name in arguments and arguments[name].get('type') is True:
40
- - # The type is already specified, skip adding it again
41
- - pass
42
- - else:
43
- + node += field
44
- + elif name not in arguments:
45
- + # Check if the argument is documented with *args or **kwargs notation
46
- + if '*' + name in arguments or '**' + name in arguments:
47
- + # Already documented with * or ** prefix, skip
48
- + continue
49
- +
50
- field += nodes.field_name('', 'type ' + name)
51
- field += nodes.field_body('', nodes.paragraph('', annotation))
52
- node += field
53
-
54
- Wait, let me reconsider the actual issue more carefully. Looking at the problem statement again:
55
-
56
- The output shows:
57
- - `***args**` (with the type info missing from the description-based entry)
58
- - `**args** (*int*)` (an extra duplicate without the star)
59
-
60
- This means when merging type annotations, the code is:
61
- 1. Not recognizing that `*args` in the docstring corresponds to `args` in the annotations
62
- 2. Adding a duplicate entry for `args` (without the star)
63
-
64
- The fix needs to:
65
- 1. When looking for existing params, also check for `*` and `**` prefixed versions
66
- 2. When adding type info, use the correct name (with stars if originally documented that way)
67
-
68
- --- a/sphinx/ext/autodoc/typehints.py
69
- +++ b/sphinx/ext/autodoc/typehints.py
70
- @@ -83,12 +83,16 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> No
71
- arguments[name] = {'type': True}
72
-
73
- for name, annotation in annotations.items():
74
- + if name == 'return':
75
- + continue
76
- +
77
- field = nodes.field()
78
- if name == 'return':
79
- field += nodes.field_name('', 'rtype')
80
- field += nodes.field_body('', nodes.paragraph('', annotation))
81
- - elif name in arguments and arguments[name].get('type') is True:
82
- - pass
83
- - else:
84
- + node += field
85
- + elif name not in arguments and '*' + name not in arguments and '**' + name not in arguments:
86
- field += nodes.field_name('', 'type ' + name)
87
- field += nodes.field_body('', nodes.paragraph('', annotation))
88
- node += field
89
-
90
- Let me reconsider the issue once more to provide an accurate patch. The key insight from the issue is:
91
-
92
- 1. The docstring has `:param *args:` and `:param **kwargs:`
93
- 2. The type annotations have `args: int` and `kwargs: int`
94
- 3. When merging, the code doesn't recognize that `*args` in docstring = `args` in annotations
95
- 4. It adds duplicate entries for `args` and `kwargs` (without stars)
96
-
97
- The fix needs to handle both directions:
98
- 1. When looking up if a param from annotations exists in the docstring, check with `*` and `**` prefixes
99
- 2. When adding type info for `*args`/`**kwargs`, add it to the existing starred entry rather than creating a new one
100
-
101
- --- a/sphinx/ext/autodoc/typehints.py
102
- +++ b/sphinx/ext/autodoc/typehints.py
103
- @@ -59,14 +59,21 @@ def record_typehints(app: Sphinx, objtype: str, name: str, obj: Any,
104
- def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> None:
105
- arguments: Dict[str, Dict[str, bool]] = {}
106
- fields = cast(Iterable[nodes.field], node)
107
- for field in fields:
108
- field_name = field[0].astext()
109
- parts = re.split(' +', field_name)
110
- if parts[0] == 'param':
111
- if len(parts) == 2:
112
- # :param xxx:
113
- - arguments[parts[1]] = {'node': field}
114
- + arg = parts[1].lstrip('*')
115
- + if arg not in arguments:
116
- + arguments[arg] = {'node': field}
117
- elif len(parts) > 2:
118
- # :param xxx yyy:
119
- - arguments[parts[2]] = {'node': field, 'type': True}
120
- + arg = parts[2].lstrip('*')
121
- + if arg not in arguments:
122
- + arguments[arg] = {'node': field, 'type': True}
123
- elif parts[0] == 'type':
124
- - arguments[parts[1]] = {'type': True}
125
- + name = parts[1].lstrip('*')
126
- + if name in arguments:
127
- + arguments[name]['type'] = True
128
- + else:
129
- + arguments[name] = {'type': True}
@@ -1,119 +0,0 @@
1
- Based on the issue description and the hints provided, I can understand the problem and provide a fix. The issue states:
2
-
3
- 1. The bug is in `sphinx/util/rst.py` around lines 81-91
4
- 2. The `rst_prolog` is prepended directly to the RST content
5
- 3. When a document starts with a heading that contains an inline role like `:mod:`, the prolog gets inserted between the role text and the heading underline
6
- 4. The hint suggests fixing this by adding an empty line after the RST prolog internally
7
-
8
- Looking at the problem:
9
- - RST content: `:mod:\`mypackage2\`\n=================\n`
10
- - With prolog: `<prolog content>:mod:\`mypackage2\`\n=================\n`
11
-
12
- The issue is that the prolog insertion logic finds the first line (which contains `:mod:`), and inserts the prolog. But if the first line is part of a heading (followed by `===` or `---`), this breaks the heading structure because the prolog gets inserted between them.
13
-
14
- The fix needs to detect when the first lines form a heading and insert the prolog before the entire heading, followed by an empty line to separate it properly.
15
-
16
- Here's the patch:
17
-
18
- --- a/sphinx/util/rst.py
19
- +++ b/sphinx/util/rst.py
20
- @@ -78,11 +78,18 @@ def prepend_prolog(content: StringList, prolog: str) -> None:
21
- if prolog:
22
- pos = 0
23
- for line in content:
24
- - if docinfo_re.match(line):
25
- + if docinfo_re.match(line):
26
- pos += 1
27
- else:
28
- break
29
-
30
- - if pos > 0:
31
- - # insert a blank line after docinfo
32
- - content.insert(pos, '', '<generated>', 0)
33
- - pos += 1
34
- + # check if the first non-docinfo line is a heading (followed by a line of =, -, etc.)
35
- + if pos < len(content) - 1:
36
- + # check if the next line is a heading underline
37
- + next_line = content[pos + 1] if pos + 1 < len(content) else ''
38
- + if next_line and len(next_line) > 0 and next_line[0] in '=-~^"\'`+#*':
39
- + if all(c == next_line[0] for c in next_line.rstrip()):
40
- + # this is a heading, skip past the underline
41
- + pos += 2
42
-
43
- + if pos > 0:
44
- + # insert a blank line after docinfo/heading
45
- + content.insert(pos, '', '<generated>', 0)
46
- + pos += 1
47
- +
48
- for lineno, line in enumerate(prolog.splitlines()):
49
- content.insert(pos + lineno, line, '<rst_prolog>', lineno)
50
- +
51
- + content.insert(pos + lineno + 1, '', '<generated>', 0)
52
-
53
- Wait, I need to reconsider. Looking more carefully at the problem:
54
-
55
- The issue is that when `rst_prolog` is prepended, it gets inserted AFTER the first line (the title text with `:mod:`), which breaks the heading because now the underline `====` is separated from the title by the prolog content.
56
-
57
- The simpler fix suggested in the hint is to just add an empty line after the prolog. This ensures the prolog is properly separated from the document content.
58
-
59
- Let me provide the correct patch:
60
-
61
- --- a/sphinx/util/rst.py
62
- +++ b/sphinx/util/rst.py
63
- @@ -80,7 +80,14 @@ def prepend_prolog(content: StringList, prolog: str) -> None:
64
- for line in content:
65
- if docinfo_re.match(line):
66
- pos += 1
67
- else:
68
- break
69
-
70
- + # check if the first content line is a heading
71
- + if pos < len(content) - 1:
72
- + first_line = content[pos]
73
- + second_line = content[pos + 1] if pos + 1 < len(content) else ''
74
- + if (second_line and
75
- + len(second_line) > 0 and
76
- + second_line[0] in '=-~^"\'`+#*' and
77
- + all(c == second_line[0] for c in second_line.strip())):
78
- + # Skip past the heading
79
- + pos += 2
80
- +
81
- if pos > 0:
82
- # insert a blank line after docinfo
83
- content.insert(pos, '', '<generated>', 0)
84
- pos += 1
85
-
86
- for lineno, line in enumerate(prolog.splitlines()):
87
- content.insert(pos + lineno, line, '<rst_prolog>', lineno)
88
- +
89
- + content.insert(pos + lineno + 1, '', '<generated>', 0)
90
-
91
- --- a/sphinx/util/rst.py
92
- +++ b/sphinx/util/rst.py
93
- @@ -78,6 +78,7 @@ def prepend_prolog(content: StringList, prolog: str) -> None:
94
- if prolog:
95
- pos = 0
96
- for line in content:
97
- if docinfo_re.match(line):
98
- pos += 1
99
- else:
100
- break
101
-
102
- + # Check if the first content line is part of a heading (text + underline)
103
- + if pos < len(content) - 1:
104
- + second_line = content[pos + 1] if pos + 1 < len(content) else ''
105
- + if (second_line and
106
- + second_line[0] in '=-~^"\'`+#*' and
107
- + all(c == second_line[0] for c in second_line.strip())):
108
- + # The first line is a title followed by underline - skip past the heading
109
- + pos += 2
110
- +
111
- if pos > 0:
112
- # insert a blank line after docinfo
113
- content.insert(pos, '', '<generated>', 0)
114
- pos += 1
115
-
116
- for lineno, line in enumerate(prolog.splitlines()):
117
- content.insert(pos + lineno, line, '<rst_prolog>', lineno)
118
- +
119
- + content.insert(pos + lineno + 1, '', '<generated>', 0)
@@ -1,19 +0,0 @@
1
- Based on my knowledge of the Sphinx codebase and the issue described, I can generate the patch. The issue is in `sphinx/ext/autosummary/generate.py` where the `members` template variable is populated without respecting the `autosummary_imported_members` setting.
2
-
3
- The bug is that when generating the template context, the `members` variable includes all members found by `ModuleScanner`, but the filtering for imported members (controlled by `autosummary_imported_members`) is only applied to the specific category variables (`functions`, `classes`, `exceptions`) but not to the generic `members` variable.
4
-
5
- Here's the patch:
6
-
7
- --- a/sphinx/ext/autosummary/generate.py
8
- +++ b/sphinx/ext/autosummary/generate.py
9
- @@ -248,6 +248,9 @@ def generate_autosummary_content(name: str, obj: Any, parent: Any,
10
- ns['members'] = scanner.scan(imported_members)
11
- ns['functions'], ns['all_functions'] = \
12
- get_members(obj, {'function'}, imported=imported_members)
13
- ns['classes'], ns['all_classes'] = \
14
- get_members(obj, {'class'}, imported=imported_members)
15
- ns['exceptions'], ns['all_exceptions'] = \
16
- get_members(obj, {'exception'}, imported=imported_members)
17
- + ns['attributes'], ns['all_attributes'] = \
18
- + get_members(obj, {'attribute', 'data'}, imported=imported_members)
19
- elif doc.objtype == 'class':
@@ -1,37 +0,0 @@
1
- Based on my knowledge of this bug and the Sphinx codebase, I can provide the fix. This is a known issue in Sphinx 3.0.x where the napoleon extension was incorrectly escaping trailing underscores in attribute names. The bug is in the `_escape_args_and_kwargs` method in `sphinx/ext/napoleon/docstring.py` which was being applied to attribute names when it shouldn't be.
2
-
3
- Looking at the issue, the problem is that in version 3.0.x, when napoleon parses attribute names from docstrings, it applies RST escaping that converts trailing underscores (like `hello_`) to `hello\_`. This is incorrect because in RST field names, trailing underscores don't need escaping.
4
-
5
- The fix involves modifying how napoleon handles attribute names. Based on my analysis of the Sphinx codebase structure and this specific bug report mentioning it worked in 2.4.3 but broke in 3.0.4, the issue is in the `_parse_attributes_section` method where it incorrectly applies the `_escape_args_and_kwargs` function.
6
-
7
- Here is the patch:
8
-
9
- --- a/sphinx/ext/napoleon/docstring.py
10
- +++ b/sphinx/ext/napoleon/docstring.py
11
- @@ -686,7 +686,7 @@ class GoogleDocstring:
12
- lines = []
13
- for _name, _type, _desc in self._consume_fields():
14
- if self._config.napoleon_use_ivar:
15
- - _name = self._escape_args_and_kwargs(_name)
16
- + pass
17
- field = ':ivar %s: ' % _name
18
- lines.extend(self._format_block(field, _desc))
19
- if _type:
20
-
21
- Wait, that's not quite right. Let me think through this more carefully.
22
-
23
- The issue is that `_escape_args_and_kwargs` is escaping underscores in attribute names. Looking at what this method does - it's supposed to handle `*args` and `**kwargs` style parameters, but it's also escaping trailing underscores which is wrong for attribute names.
24
-
25
- The actual fix should be in the `_escape_args_and_kwargs` method itself, or we should not call it for attribute names. Let me provide the correct patch:
26
-
27
- --- a/sphinx/ext/napoleon/docstring.py
28
- +++ b/sphinx/ext/napoleon/docstring.py
29
- @@ -683,7 +683,6 @@ class GoogleDocstring:
30
- def _parse_attributes_section(self, section: str) -> List[str]:
31
- lines = []
32
- for _name, _type, _desc in self._consume_fields():
33
- if self._config.napoleon_use_ivar:
34
- - _name = self._escape_args_and_kwargs(_name)
35
- field = ':ivar %s: ' % _name
36
- lines.extend(self._format_block(field, _desc))
37
- if _type:
@@ -1,89 +0,0 @@
1
- Based on my knowledge of Sphinx and the issue described, I can generate the patch. The issue is in `sphinx/environment/adapters/indexentries.py` where the `IndexEntries` class creates index entries grouped by their first letter. The problem is that symbols are being sorted in two different places: some symbols (like @) appear before A-Z in ASCII/Unicode sorting, while others (like £ and ←) appear after Z.
2
-
3
- The fix needs to ensure all non-letter characters are grouped together under a single "Symbols" section, regardless of where they sort in Unicode order. The key is in the `create_index` method which groups entries and needs to recognize that all non-letter first characters should be treated as the same "Symbols" category.
4
-
5
- Here's the patch:
6
-
7
- --- a/sphinx/environment/adapters/indexentries.py
8
- +++ b/sphinx/environment/adapters/indexentries.py
9
- @@ -110,10 +110,15 @@ class IndexEntries:
10
- lckey = unicodedata.normalize('NFD', key[0].lower())
11
- if lckey[0:1] in lcletters:
12
- _key = bisect.bisect_right(sortkey, lckey)
13
- + letter = sortkey[_key - 1] if _key > 0 else sortkey[0]
14
- else:
15
- # get from the right of the letter key because unicodedata
16
- # sort the string which starts with special characters first
17
- - _key = bisect.bisect_left(sortkey, lckey)
18
- + _key = 0
19
- + letter = _('Symbols')
20
-
21
- - if _key < len(googlesortkey):
22
- - key = googlesortkey[_key]
23
- - return _key
24
- + if letter:
25
- + return (letter, entry)
26
- + return (_key, entry)
27
-
28
-
29
- Let me look at the actual structure of this problem more carefully. The issue is that the index creates separate sections, and symbols end up in two places. I need to understand the exact algorithm better.
30
-
31
- Based on typical Sphinx code structure, the fix should be in `sphinx/environment/adapters/indexentries.py`. The function that handles grouping entries by their first letter needs to group ALL non-alphabetic characters under a single "Symbols" heading, placed consistently (typically at the beginning).
32
-
33
- --- a/sphinx/environment/adapters/indexentries.py
34
- +++ b/sphinx/environment/adapters/indexentries.py
35
- @@ -106,9 +106,10 @@ class IndexEntries:
36
- def keyfunc0(entry: tuple[str, str]) -> tuple[bool, str]:
37
- key = unicodedata.normalize('NFD', entry[0].lower())
38
- if key[0:1] in lcletters:
39
- - return (False, key)
40
- + return (True, key)
41
- else:
42
- - return (True, key)
43
- + # Group all non-letters together at the beginning
44
- + return (False, '')
45
-
46
- newlist = sorted(new.items(), key=keyfunc0)
47
- # fixup entries: transform
48
- @@ -123,15 +124,19 @@ class IndexEntries:
49
-
50
- # group the entries by letter
51
- def keyfunc(item: tuple[str, list]) -> str:
52
- - # hack: mutate the subitems dicts to a list in the keyfunc
53
- k, v = item
54
- + letter = unicodedata.normalize('NFD', k[0:1].upper())[0:1]
55
- + if letter not in letters:
56
- + letter = _('Symbols')
57
- v[1] = sorted((si for si in v[1].items() if si[0] != ''),
58
- key=keyfunc3)
59
- - letter = unicodedata.normalize('NFD', k[0:1].upper())[0:1]
60
- - if letter in letters:
61
- - return letter
62
- - else:
63
- - return _('Symbols')
64
- + return letter
65
- return [(key_, list(group)) for (key_, group) in groupby(newlist, keyfunc)]
66
-
67
- Wait, I need to be more careful here. Let me reason through this:
68
-
69
- 1. The problem: Two "Symbols" sections appear in the index
70
- 2. Cause: Some special characters (like @) sort before letters (A-Z), while others (like £, ←) sort after
71
- 3. When `groupby` is used after sorting, it creates separate groups for symbols before and after the letters
72
-
73
- The fix needs to ensure all symbol entries are sorted together (either all at the beginning or all at the end), so `groupby` produces only one "Symbols" group.
74
-
75
- --- a/sphinx/environment/adapters/indexentries.py
76
- +++ b/sphinx/environment/adapters/indexentries.py
77
- @@ -106,9 +106,11 @@ class IndexEntries:
78
- def keyfunc0(entry: tuple[str, str]) -> tuple[bool, str]:
79
- key = unicodedata.normalize('NFD', entry[0].lower())
80
- if key[0:1] in lcletters:
81
- - return (False, key)
82
- + # Sort letters after symbols
83
- + return (True, key)
84
- else:
85
- - return (True, key)
86
- + # Sort all symbols first (together)
87
- + return (False, key)
88
-
89
- newlist = sorted(new.items(), key=keyfunc0)
@@ -1,38 +0,0 @@
1
- Based on my knowledge of the Sphinx codebase and the issue requirements, I can generate the appropriate patch. The key files to modify are:
2
-
3
- 1. `sphinx/builders/manpage.py` - The man page builder that writes output files
4
- 2. Configuration needs to be added for `man_make_section_directory`
5
-
6
- Here is the patch:
7
-
8
- --- a/sphinx/builders/manpage.py
9
- +++ b/sphinx/builders/manpage.py
10
- @@ -26,6 +26,7 @@ from sphinx.util import logging
11
- from sphinx.util.console import darkgreen # type: ignore
12
- from sphinx.util.nodes import inline_all_toctrees
13
- from sphinx.util.osutil import make_filename_from_project
14
- +from sphinx.util import progress_message
15
-
16
- logger = logging.getLogger(__name__)
17
-
18
- @@ -82,7 +83,10 @@ class ManualPageBuilder(Builder):
19
-
20
- targetname = '%s.%s' % (name, section)
21
- logger.info(darkgreen(targetname) + ' { ', nonl=True)
22
- - destination = FileOutput(destination_path=path.join(self.outdir, targetname),
23
- + if self.config.man_make_section_directory:
24
- + ensuredir(path.join(self.outdir, 'man' + section))
25
- + targetpath = path.join(self.outdir, 'man' + section, targetname)
26
- + else:
27
- + targetpath = path.join(self.outdir, targetname)
28
- + destination = FileOutput(destination_path=targetpath,
29
- encoding='utf-8')
30
- tree = self.env.get_doctree(docname)
31
- docnames: Set[str] = set()
32
- @@ -116,4 +120,5 @@ def setup(app: Sphinx) -> Dict[str, Any]:
33
-
34
- app.add_config_value('man_pages', default_man_pages, None)
35
- app.add_config_value('man_show_urls', False, None)
36
- + app.add_config_value('man_make_section_directory', False, None)
37
-
38
- return {