wegho-agentes 7.0.3 → 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 (1483) hide show
  1. package/.agent/.shared/ui-ux-pro-max/data/charts.csv +26 -0
  2. package/.agent/.shared/ui-ux-pro-max/data/colors.csv +97 -0
  3. package/.agent/.shared/ui-ux-pro-max/data/icons.csv +101 -0
  4. package/.agent/.shared/ui-ux-pro-max/data/landing.csv +31 -0
  5. package/.agent/.shared/ui-ux-pro-max/data/products.csv +97 -0
  6. package/.agent/.shared/ui-ux-pro-max/data/prompts.csv +24 -0
  7. package/.agent/.shared/ui-ux-pro-max/data/react-performance.csv +45 -0
  8. package/.agent/.shared/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  9. package/.agent/.shared/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  10. package/.agent/.shared/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  11. package/.agent/.shared/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  12. package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  13. package/.agent/.shared/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  14. package/.agent/.shared/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  15. package/.agent/.shared/ui-ux-pro-max/data/stacks/react.csv +54 -0
  16. package/.agent/.shared/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  17. package/.agent/.shared/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  18. package/.agent/.shared/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  19. package/.agent/.shared/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  20. package/.agent/.shared/ui-ux-pro-max/data/styles.csv +59 -0
  21. package/.agent/.shared/ui-ux-pro-max/data/typography.csv +58 -0
  22. package/.agent/.shared/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  23. package/.agent/.shared/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  24. package/.agent/.shared/ui-ux-pro-max/data/web-interface.csv +31 -0
  25. package/.agent/.shared/ui-ux-pro-max/scripts/core.py +258 -0
  26. package/.agent/.shared/ui-ux-pro-max/scripts/design_system.py +1067 -0
  27. package/.agent/.shared/ui-ux-pro-max/scripts/search.py +106 -0
  28. package/.agent/ARCHITECTURE.md +288 -0
  29. package/.agent/agents/backend-specialist.md +263 -0
  30. package/.agent/agents/code-archaeologist.md +106 -0
  31. package/.agent/agents/database-architect.md +226 -0
  32. package/.agent/agents/debugger.md +225 -0
  33. package/.agent/agents/devops-engineer.md +242 -0
  34. package/.agent/agents/documentation-writer.md +104 -0
  35. package/.agent/agents/explorer-agent.md +73 -0
  36. package/.agent/agents/frontend-specialist.md +593 -0
  37. package/.agent/agents/game-developer.md +162 -0
  38. package/.agent/agents/mobile-developer.md +377 -0
  39. package/.agent/agents/orchestrator.md +416 -0
  40. package/.agent/agents/penetration-tester.md +188 -0
  41. package/.agent/agents/performance-optimizer.md +187 -0
  42. package/.agent/agents/product-manager.md +112 -0
  43. package/.agent/agents/product-owner.md +95 -0
  44. package/.agent/agents/project-planner.md +406 -0
  45. package/.agent/agents/qa-automation-engineer.md +103 -0
  46. package/.agent/agents/security-auditor.md +170 -0
  47. package/.agent/agents/seo-specialist.md +111 -0
  48. package/.agent/agents/test-engineer.md +158 -0
  49. package/.agent/mcp_config.json +24 -0
  50. package/.agent/mcp_config.md +30 -0
  51. package/.agent/rules/GEMINI.md +308 -0
  52. package/.agent/scripts/auto_preview.py +148 -0
  53. package/.agent/scripts/checklist.py +217 -0
  54. package/.agent/scripts/session_manager.py +120 -0
  55. package/.agent/scripts/verify_all.py +327 -0
  56. package/.agent/skills/api-patterns/SKILL.md +81 -0
  57. package/.agent/skills/api-patterns/api-style.md +42 -0
  58. package/.agent/skills/api-patterns/auth.md +24 -0
  59. package/.agent/skills/api-patterns/documentation.md +26 -0
  60. package/.agent/skills/api-patterns/graphql.md +41 -0
  61. package/.agent/skills/api-patterns/rate-limiting.md +31 -0
  62. package/.agent/skills/api-patterns/response.md +37 -0
  63. package/.agent/skills/api-patterns/rest.md +40 -0
  64. package/.agent/skills/api-patterns/scripts/api_validator.py +211 -0
  65. package/.agent/skills/api-patterns/security-testing.md +122 -0
  66. package/.agent/skills/api-patterns/trpc.md +41 -0
  67. package/.agent/skills/api-patterns/versioning.md +22 -0
  68. package/.agent/skills/app-builder/SKILL.md +75 -0
  69. package/.agent/skills/app-builder/agent-coordination.md +71 -0
  70. package/.agent/skills/app-builder/feature-building.md +53 -0
  71. package/.agent/skills/app-builder/project-detection.md +34 -0
  72. package/.agent/skills/app-builder/scaffolding.md +118 -0
  73. package/.agent/skills/app-builder/tech-stack.md +41 -0
  74. package/.agent/skills/app-builder/templates/SKILL.md +39 -0
  75. package/.agent/skills/app-builder/templates/astro-static/TEMPLATE.md +76 -0
  76. package/.agent/skills/app-builder/templates/chrome-extension/TEMPLATE.md +92 -0
  77. package/.agent/skills/app-builder/templates/cli-tool/TEMPLATE.md +88 -0
  78. package/.agent/skills/app-builder/templates/electron-desktop/TEMPLATE.md +88 -0
  79. package/.agent/skills/app-builder/templates/express-api/TEMPLATE.md +83 -0
  80. package/.agent/skills/app-builder/templates/flutter-app/TEMPLATE.md +90 -0
  81. package/.agent/skills/app-builder/templates/monorepo-turborepo/TEMPLATE.md +90 -0
  82. package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +122 -0
  83. package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +122 -0
  84. package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +169 -0
  85. package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +134 -0
  86. package/.agent/skills/app-builder/templates/python-fastapi/TEMPLATE.md +83 -0
  87. package/.agent/skills/app-builder/templates/react-native-app/TEMPLATE.md +119 -0
  88. package/.agent/skills/architecture/SKILL.md +55 -0
  89. package/.agent/skills/architecture/context-discovery.md +43 -0
  90. package/.agent/skills/architecture/examples.md +94 -0
  91. package/.agent/skills/architecture/pattern-selection.md +68 -0
  92. package/.agent/skills/architecture/patterns-reference.md +50 -0
  93. package/.agent/skills/architecture/trade-off-analysis.md +77 -0
  94. package/.agent/skills/bash-linux/SKILL.md +199 -0
  95. package/.agent/skills/behavioral-modes/SKILL.md +242 -0
  96. package/.agent/skills/brainstorming/SKILL.md +163 -0
  97. package/.agent/skills/brainstorming/dynamic-questioning.md +350 -0
  98. package/.agent/skills/clean-code/SKILL.md +201 -0
  99. package/.agent/skills/code-review-checklist/SKILL.md +109 -0
  100. package/.agent/skills/database-design/SKILL.md +103 -0
  101. package/.agent/skills/database-design/database-selection.md +43 -0
  102. package/.agent/skills/database-design/github-benchmarks.md +35 -0
  103. package/.agent/skills/database-design/indexing.md +39 -0
  104. package/.agent/skills/database-design/migrations.md +48 -0
  105. package/.agent/skills/database-design/optimization.md +36 -0
  106. package/.agent/skills/database-design/orm-selection.md +30 -0
  107. package/.agent/skills/database-design/schema-design.md +56 -0
  108. package/.agent/skills/database-design/scripts/schema_validator.py +172 -0
  109. package/.agent/skills/database-design/supabase-security-egress.md +42 -0
  110. package/.agent/skills/deployment-procedures/SKILL.md +241 -0
  111. package/.agent/skills/doc.md +177 -0
  112. package/.agent/skills/documentation-templates/SKILL.md +194 -0
  113. package/.agent/skills/file-doc-sync/SKILL.md +44 -0
  114. package/.agent/skills/file-doc-sync/references/document-structure.md +20 -0
  115. package/.agent/skills/file-doc-sync/scripts/sync-file-docs.md +45 -0
  116. package/.agent/skills/file-doc-sync/scripts/sync-file-docs.ts +349 -0
  117. package/.agent/skills/frontend-design/SKILL.md +452 -0
  118. package/.agent/skills/frontend-design/animation-guide.md +331 -0
  119. package/.agent/skills/frontend-design/color-system.md +311 -0
  120. package/.agent/skills/frontend-design/decision-trees.md +418 -0
  121. package/.agent/skills/frontend-design/motion-graphics.md +306 -0
  122. package/.agent/skills/frontend-design/scripts/accessibility_checker.py +183 -0
  123. package/.agent/skills/frontend-design/scripts/ux_audit.py +722 -0
  124. package/.agent/skills/frontend-design/typography-system.md +345 -0
  125. package/.agent/skills/frontend-design/ux-psychology.md +1116 -0
  126. package/.agent/skills/frontend-design/visual-effects.md +383 -0
  127. package/.agent/skills/game-development/2d-games/SKILL.md +119 -0
  128. package/.agent/skills/game-development/3d-games/SKILL.md +135 -0
  129. package/.agent/skills/game-development/SKILL.md +167 -0
  130. package/.agent/skills/game-development/game-art/SKILL.md +185 -0
  131. package/.agent/skills/game-development/game-audio/SKILL.md +190 -0
  132. package/.agent/skills/game-development/game-design/SKILL.md +129 -0
  133. package/.agent/skills/game-development/mobile-games/SKILL.md +108 -0
  134. package/.agent/skills/game-development/multiplayer/SKILL.md +132 -0
  135. package/.agent/skills/game-development/pc-games/SKILL.md +144 -0
  136. package/.agent/skills/game-development/vr-ar/SKILL.md +123 -0
  137. package/.agent/skills/game-development/web-games/SKILL.md +150 -0
  138. package/.agent/skills/geo-fundamentals/SKILL.md +156 -0
  139. package/.agent/skills/geo-fundamentals/scripts/geo_checker.py +289 -0
  140. package/.agent/skills/i18n-localization/SKILL.md +154 -0
  141. package/.agent/skills/i18n-localization/scripts/i18n_checker.py +241 -0
  142. package/.agent/skills/intelligent-routing/SKILL.md +335 -0
  143. package/.agent/skills/lint-and-validate/SKILL.md +45 -0
  144. package/.agent/skills/lint-and-validate/scripts/lint_runner.py +184 -0
  145. package/.agent/skills/lint-and-validate/scripts/type_coverage.py +173 -0
  146. package/.agent/skills/mcp-builder/SKILL.md +176 -0
  147. package/.agent/skills/mobile-design/SKILL.md +394 -0
  148. package/.agent/skills/mobile-design/decision-trees.md +516 -0
  149. package/.agent/skills/mobile-design/mobile-backend.md +491 -0
  150. package/.agent/skills/mobile-design/mobile-color-system.md +420 -0
  151. package/.agent/skills/mobile-design/mobile-debugging.md +122 -0
  152. package/.agent/skills/mobile-design/mobile-design-thinking.md +357 -0
  153. package/.agent/skills/mobile-design/mobile-navigation.md +458 -0
  154. package/.agent/skills/mobile-design/mobile-performance.md +767 -0
  155. package/.agent/skills/mobile-design/mobile-testing.md +356 -0
  156. package/.agent/skills/mobile-design/mobile-typography.md +433 -0
  157. package/.agent/skills/mobile-design/platform-android.md +666 -0
  158. package/.agent/skills/mobile-design/platform-ios.md +561 -0
  159. package/.agent/skills/mobile-design/scripts/mobile_audit.py +670 -0
  160. package/.agent/skills/mobile-design/touch-psychology.md +537 -0
  161. package/.agent/skills/nextjs-react-expert/1-async-eliminating-waterfalls.md +351 -0
  162. package/.agent/skills/nextjs-react-expert/2-bundle-bundle-size-optimization.md +240 -0
  163. package/.agent/skills/nextjs-react-expert/3-server-server-side-performance.md +490 -0
  164. package/.agent/skills/nextjs-react-expert/4-client-client-side-data-fetching.md +264 -0
  165. package/.agent/skills/nextjs-react-expert/5-rerender-re-render-optimization.md +581 -0
  166. package/.agent/skills/nextjs-react-expert/6-rendering-rendering-performance.md +432 -0
  167. package/.agent/skills/nextjs-react-expert/7-js-javascript-performance.md +684 -0
  168. package/.agent/skills/nextjs-react-expert/8-advanced-advanced-patterns.md +150 -0
  169. package/.agent/skills/nextjs-react-expert/9-cache-components.md +103 -0
  170. package/.agent/skills/nextjs-react-expert/SKILL.md +293 -0
  171. package/.agent/skills/nextjs-react-expert/scripts/convert_rules.py +222 -0
  172. package/.agent/skills/nextjs-react-expert/scripts/react_performance_checker.py +252 -0
  173. package/.agent/skills/nodejs-best-practices/SKILL.md +333 -0
  174. package/.agent/skills/parallel-agents/SKILL.md +175 -0
  175. package/.agent/skills/performance-profiling/SKILL.md +143 -0
  176. package/.agent/skills/performance-profiling/scripts/lighthouse_audit.py +76 -0
  177. package/.agent/skills/plan-writing/SKILL.md +152 -0
  178. package/.agent/skills/powershell-windows/SKILL.md +167 -0
  179. package/.agent/skills/python-patterns/SKILL.md +441 -0
  180. package/.agent/skills/red-team-tactics/SKILL.md +199 -0
  181. package/.agent/skills/rust-pro/SKILL.md +176 -0
  182. package/.agent/skills/seo-fundamentals/SKILL.md +129 -0
  183. package/.agent/skills/seo-fundamentals/scripts/seo_checker.py +219 -0
  184. package/.agent/skills/server-management/SKILL.md +161 -0
  185. package/.agent/skills/systematic-debugging/SKILL.md +109 -0
  186. package/.agent/skills/tailwind-patterns/SKILL.md +269 -0
  187. package/.agent/skills/tdd-workflow/SKILL.md +149 -0
  188. package/.agent/skills/testing-patterns/SKILL.md +178 -0
  189. package/.agent/skills/testing-patterns/scripts/test_runner.py +219 -0
  190. package/.agent/skills/vulnerability-scanner/SKILL.md +322 -0
  191. package/.agent/skills/vulnerability-scanner/checklists.md +121 -0
  192. package/.agent/skills/vulnerability-scanner/github-benchmarks.md +32 -0
  193. package/.agent/skills/vulnerability-scanner/scripts/security_scan.py +458 -0
  194. package/.agent/skills/web-design-guidelines/SKILL.md +57 -0
  195. package/.agent/skills/webapp-testing/SKILL.md +187 -0
  196. package/.agent/skills/webapp-testing/scripts/playwright_runner.py +173 -0
  197. package/.agent/skills/wegho-global-rules/SKILL.md +36 -6
  198. package/.agent/workflows/PROMPT_GUIDE.md +16 -203
  199. package/.agent/workflows/auto-run-orchestrator.md +3 -3
  200. package/.agent/workflows/brainstorm.md +113 -0
  201. package/.agent/workflows/create.md +59 -0
  202. package/.agent/workflows/debug.md +103 -0
  203. package/.agent/workflows/deploy.md +176 -0
  204. package/.agent/workflows/enhance.md +63 -0
  205. package/.agent/workflows/orchestrate.md +237 -0
  206. package/.agent/workflows/plan.md +89 -0
  207. package/.agent/workflows/preview.md +81 -0
  208. package/.agent/workflows/run-agents-workflow.md +15 -186
  209. package/.agent/workflows/status.md +86 -0
  210. package/.agent/workflows/test.md +144 -0
  211. package/.agent/workflows/ui-ux-pro-max.md +296 -0
  212. package/.agents/AGENT_WORKFLOW.md +36 -528
  213. package/.agents/CLI.md +42 -222
  214. package/.agents/README.md +18 -130
  215. package/.agents/antigravity-preflight.md +36 -0
  216. package/.agents/antigravity-preflight.ts +21 -80
  217. package/.agents/auto-runner.md +36 -0
  218. package/.agents/auto-runner.ts +2 -2
  219. package/.agents/cli.ts +2 -2
  220. package/.agents/code-auditor-agent.md +38 -0
  221. package/.agents/config.md +34 -0
  222. package/.agents/config.ts +15 -29
  223. package/.agents/context-loader.md +37 -0
  224. package/.agents/core/agent-parallelizer.md +33 -0
  225. package/.agents/core/ai-agents-agent.md +35 -0
  226. package/.agents/core/architecture-agent.md +39 -0
  227. package/.agents/core/architecture-agent.ts +1 -1
  228. package/.agents/core/automation-agent.md +33 -0
  229. package/.agents/core/backend-agent.md +35 -0
  230. package/.agents/core/base-agent.md +36 -0
  231. package/.agents/core/base-agent.ts +132 -337
  232. package/.agents/core/build-manager.md +35 -0
  233. package/.agents/core/cache-manager.md +32 -0
  234. package/.agents/core/checkpoint-manager.md +36 -0
  235. package/.agents/core/cloud-agent.md +33 -0
  236. package/.agents/core/cro-agent.md +33 -0
  237. package/.agents/core/database-agent.md +35 -0
  238. package/.agents/core/devops-agent.md +33 -0
  239. package/.agents/core/documentation-agent.md +36 -0
  240. package/.agents/core/documentation-agent.ts +1 -1
  241. package/.agents/core/file-generator.md +42 -0
  242. package/.agents/core/frontend-agent.md +36 -0
  243. package/.agents/core/frontend-agent.ts +1 -1
  244. package/.agents/core/nextjs-agent.md +35 -0
  245. package/.agents/core/pentest-agent.md +35 -0
  246. package/.agents/core/performance-tracker.md +33 -0
  247. package/.agents/core/planning-agent.md +33 -0
  248. package/.agents/core/planning-agent.ts +77 -388
  249. package/.agents/core/quality-agent.md +36 -0
  250. package/.agents/core/quality-agent.ts +1 -1
  251. package/.agents/core/rag-agent.md +36 -0
  252. package/.agents/core/report-generator.md +35 -0
  253. package/.agents/core/retry-utility.md +34 -0
  254. package/.agents/core/security-agent.md +39 -0
  255. package/.agents/core/security-agent.ts +1 -1
  256. package/.agents/core/skill-manager.md +36 -0
  257. package/.agents/core/stack-boundary-agent.md +38 -0
  258. package/.agents/core/testing-agent.md +33 -0
  259. package/.agents/core/ui-data-map-agent.md +38 -0
  260. package/.agents/core/uiux-agent.md +35 -0
  261. package/.agents/core/workflow-validator.md +33 -0
  262. package/.agents/core/workflow-validator.ts +98 -158
  263. package/.agents/domains/README.md +10 -53
  264. package/.agents/domains/logistics/route-agent.md +34 -0
  265. package/.agents/domains/logistics/route-agent.ts +1 -1
  266. package/.agents/domains/news/cms-agent.md +35 -0
  267. package/.agents/domains/news/cms-agent.ts +1 -1
  268. package/.agents/domains/news/seo-agent.md +34 -0
  269. package/.agents/domains/news/seo-agent.ts +1 -1
  270. package/.agents/domains/production/production-control-agent.md +34 -0
  271. package/.agents/domains/production/production-control-agent.ts +1 -1
  272. package/.agents/init.md +40 -0
  273. package/.agents/init.ts +81 -168
  274. package/.agents/install.md +34 -0
  275. package/.agents/install.ts +115 -138
  276. package/.agents/orchestrator.md +43 -0
  277. package/.agents/orchestrator.ts +322 -764
  278. package/.agents/project-discovery-agent.md +40 -0
  279. package/.agents/reference-repositories.json +5 -0
  280. package/.agents/reference-repositories.md +30 -0
  281. package/.agents/security/vulnerability-db.md +42 -0
  282. package/.agents/sync-docs.md +32 -0
  283. package/.agents/sync-docs.ts +15 -0
  284. package/.agents/task-analyzer-agent.md +36 -0
  285. package/.agents/task-analyzer-agent.ts +122 -478
  286. package/.agents/validate.md +36 -0
  287. package/.agents/validate.ts +1 -1
  288. package/INSTALL.md +18 -300
  289. package/README.md +20 -332
  290. package/package.json +19 -3
  291. package/skills/algorithmic-art/templates/generator_template.md +31 -0
  292. package/skills/algorithmic-art/templates/viewer.md +31 -0
  293. package/skills/app-store-optimization/expected_output.md +30 -0
  294. package/skills/app-store-optimization/sample_input.md +30 -0
  295. package/skills/cc-skill-continuous-learning/config.md +30 -0
  296. package/skills/claude-d3js-skill/assets/chart-template.md +32 -0
  297. package/skills/claude-d3js-skill/assets/interactive-template.md +32 -0
  298. package/skills/claude-d3js-skill/assets/sample-data.md +30 -0
  299. package/skills/loki-mode/scripts/take-screenshots.md +33 -0
  300. package/skills/playwright-skill/lib/helpers.md +34 -0
  301. package/skills/playwright-skill/package.md +30 -0
  302. package/skills/playwright-skill/run.md +36 -0
  303. package/skills/postgres-best-practices/metadata.md +31 -0
  304. package/skills/pptx-official/scripts/html2pptx.md +38 -0
  305. package/skills/react-best-practices/metadata.md +30 -0
  306. package/skills/remotion-best-practices/rules/assets/charts-bar-chart.md +33 -0
  307. package/skills/remotion-best-practices/rules/assets/text-animations-typewriter.md +32 -0
  308. package/skills/remotion-best-practices/rules/assets/text-animations-word-highlight.md +34 -0
  309. package/skills/systematic-debugging/condition-based-waiting-example.md +34 -0
  310. package/skills/typescript-expert/references/tsconfig-strict.md +30 -0
  311. package/skills/typescript-expert/references/utility-types.md +32 -0
  312. package/skills/writing-skills/render-graphs.md +32 -0
  313. package/.agents/AI_COMPATIBILITY.md +0 -333
  314. package/.agents/core/feedback-collector.ts +0 -207
  315. package/.agents/core/inventory-agent.ts +0 -757
  316. package/.agents/core/memory-system.ts +0 -429
  317. package/.agents/memory/ai-agents-agent/failures.json +0 -1
  318. package/.agents/memory/ai-agents-agent/learnings.json +0 -1
  319. package/.agents/memory/ai-agents-agent/specialty.md +0 -3
  320. package/.agents/memory/ai-agents-agent/successes.json +0 -1
  321. package/.agents/memory/architecture-agent/failures.json +0 -1
  322. package/.agents/memory/architecture-agent/learnings.json +0 -1
  323. package/.agents/memory/architecture-agent/specialty.md +0 -31
  324. package/.agents/memory/architecture-agent/successes.json +0 -1
  325. package/.agents/memory/automation-agent/failures.json +0 -1
  326. package/.agents/memory/automation-agent/learnings.json +0 -1
  327. package/.agents/memory/automation-agent/specialty.md +0 -3
  328. package/.agents/memory/automation-agent/successes.json +0 -1
  329. package/.agents/memory/backend-agent/failures.json +0 -1
  330. package/.agents/memory/backend-agent/learnings.json +0 -1
  331. package/.agents/memory/backend-agent/specialty.md +0 -3
  332. package/.agents/memory/backend-agent/successes.json +0 -1
  333. package/.agents/memory/cloud-agent/failures.json +0 -1
  334. package/.agents/memory/cloud-agent/learnings.json +0 -1
  335. package/.agents/memory/cloud-agent/specialty.md +0 -3
  336. package/.agents/memory/cloud-agent/successes.json +0 -1
  337. package/.agents/memory/cms-agent/failures.json +0 -1
  338. package/.agents/memory/cms-agent/learnings.json +0 -1
  339. package/.agents/memory/cms-agent/specialty.md +0 -30
  340. package/.agents/memory/cms-agent/successes.json +0 -1
  341. package/.agents/memory/cro-agent/failures.json +0 -1
  342. package/.agents/memory/cro-agent/learnings.json +0 -1
  343. package/.agents/memory/cro-agent/specialty.md +0 -3
  344. package/.agents/memory/cro-agent/successes.json +0 -1
  345. package/.agents/memory/database-agent/failures.json +0 -1
  346. package/.agents/memory/database-agent/learnings.json +0 -1
  347. package/.agents/memory/database-agent/specialty.md +0 -3
  348. package/.agents/memory/database-agent/successes.json +0 -1
  349. package/.agents/memory/devops-agent/failures.json +0 -1
  350. package/.agents/memory/devops-agent/learnings.json +0 -1
  351. package/.agents/memory/devops-agent/specialty.md +0 -3
  352. package/.agents/memory/devops-agent/successes.json +0 -1
  353. package/.agents/memory/documentation-agent/failures.json +0 -1
  354. package/.agents/memory/documentation-agent/learnings.json +0 -1
  355. package/.agents/memory/documentation-agent/specialty.md +0 -33
  356. package/.agents/memory/documentation-agent/successes.json +0 -1
  357. package/.agents/memory/frontend-agent/failures.json +0 -1
  358. package/.agents/memory/frontend-agent/learnings.json +0 -1
  359. package/.agents/memory/frontend-agent/specialty.md +0 -30
  360. package/.agents/memory/frontend-agent/successes.json +0 -1
  361. package/.agents/memory/inventory-agent/failures.json +0 -1
  362. package/.agents/memory/inventory-agent/inventory/index.json +0 -1
  363. package/.agents/memory/inventory-agent/inventory/types.json +0 -1
  364. package/.agents/memory/inventory-agent/inventory/variables.json +0 -1
  365. package/.agents/memory/inventory-agent/learnings.json +0 -1
  366. package/.agents/memory/inventory-agent/specialty.md +0 -129
  367. package/.agents/memory/inventory-agent/successes.json +0 -1
  368. package/.agents/memory/nextjs-agent/failures.json +0 -1
  369. package/.agents/memory/nextjs-agent/learnings.json +0 -1
  370. package/.agents/memory/nextjs-agent/specialty.md +0 -3
  371. package/.agents/memory/nextjs-agent/successes.json +0 -1
  372. package/.agents/memory/pentest-agent/failures.json +0 -1
  373. package/.agents/memory/pentest-agent/learnings.json +0 -1
  374. package/.agents/memory/pentest-agent/specialty.md +0 -3
  375. package/.agents/memory/pentest-agent/successes.json +0 -1
  376. package/.agents/memory/planning-agent/specialty.md +0 -13
  377. package/.agents/memory/production-control-agent/failures.json +0 -1
  378. package/.agents/memory/production-control-agent/learnings.json +0 -1
  379. package/.agents/memory/production-control-agent/specialty.md +0 -29
  380. package/.agents/memory/production-control-agent/successes.json +0 -1
  381. package/.agents/memory/quality-agent/failures.json +0 -1
  382. package/.agents/memory/quality-agent/learnings.json +0 -1
  383. package/.agents/memory/quality-agent/specialty.md +0 -31
  384. package/.agents/memory/quality-agent/successes.json +0 -1
  385. package/.agents/memory/rag-agent/failures.json +0 -1
  386. package/.agents/memory/rag-agent/learnings.json +0 -1
  387. package/.agents/memory/rag-agent/specialty.md +0 -3
  388. package/.agents/memory/rag-agent/successes.json +0 -1
  389. package/.agents/memory/reference-repositories.json +0 -271
  390. package/.agents/memory/route-agent/failures.json +0 -1
  391. package/.agents/memory/route-agent/learnings.json +0 -1
  392. package/.agents/memory/route-agent/specialty.md +0 -29
  393. package/.agents/memory/route-agent/successes.json +0 -1
  394. package/.agents/memory/security-agent/failures.json +0 -1
  395. package/.agents/memory/security-agent/learnings.json +0 -1
  396. package/.agents/memory/security-agent/specialty.md +0 -31
  397. package/.agents/memory/security-agent/successes.json +0 -1
  398. package/.agents/memory/seo-agent/failures.json +0 -1
  399. package/.agents/memory/seo-agent/learnings.json +0 -1
  400. package/.agents/memory/seo-agent/specialty.md +0 -31
  401. package/.agents/memory/seo-agent/successes.json +0 -1
  402. package/.agents/memory/stack-boundary-agent/failures.json +0 -1
  403. package/.agents/memory/stack-boundary-agent/learnings.json +0 -1
  404. package/.agents/memory/stack-boundary-agent/specialty.md +0 -3
  405. package/.agents/memory/stack-boundary-agent/successes.json +0 -1
  406. package/.agents/memory/testing-agent/failures.json +0 -1
  407. package/.agents/memory/testing-agent/learnings.json +0 -1
  408. package/.agents/memory/testing-agent/specialty.md +0 -3
  409. package/.agents/memory/testing-agent/successes.json +0 -1
  410. package/.agents/memory/ui-data-map-agent/failures.json +0 -1
  411. package/.agents/memory/ui-data-map-agent/learnings.json +0 -1
  412. package/.agents/memory/ui-data-map-agent/specialty.md +0 -3
  413. package/.agents/memory/ui-data-map-agent/successes.json +0 -1
  414. package/.agents/memory/uiux-agent/failures.json +0 -1
  415. package/.agents/memory/uiux-agent/learnings.json +0 -1
  416. package/.agents/memory/uiux-agent/specialty.md +0 -3
  417. package/.agents/memory/uiux-agent/successes.json +0 -1
  418. package/docs/LEARNING_SYSTEM.md +0 -326
  419. package/docs/SYSTEM_FLOW_AUDIT.md +0 -115
  420. package/skills/loki-mode/.github/workflows/claude-code-review.yml +0 -57
  421. package/skills/loki-mode/.github/workflows/claude.yml +0 -50
  422. package/skills/loki-mode/.github/workflows/release.yml +0 -128
  423. package/skills/loki-mode/autonomy/.loki/dashboard/index.html +0 -497
  424. package/skills/loki-mode/benchmarks/datasets/humaneval.jsonl +0 -164
  425. package/skills/loki-mode/benchmarks/datasets/swebench-lite.json +0 -10
  426. package/skills/loki-mode/benchmarks/prepare-submission.sh +0 -215
  427. package/skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/SUMMARY.md +0 -48
  428. package/skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/humaneval-results.json +0 -15
  429. package/skills/loki-mode/benchmarks/results/2026-01-05-00-23-56/swebench-results.json +0 -10
  430. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/SUMMARY.md +0 -50
  431. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-results.json +0 -1000
  432. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/0.py +0 -16
  433. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/1.py +0 -28
  434. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/10.py +0 -25
  435. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/100.py +0 -20
  436. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/101.py +0 -15
  437. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/102.py +0 -16
  438. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/103.py +0 -15
  439. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/104.py +0 -22
  440. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/105.py +0 -39
  441. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/106.py +0 -21
  442. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/107.py +0 -35
  443. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/108.py +0 -22
  444. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/109.py +0 -41
  445. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/11.py +0 -16
  446. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/110.py +0 -20
  447. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/111.py +0 -28
  448. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/112.py +0 -14
  449. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/113.py +0 -19
  450. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/114.py +0 -16
  451. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/115.py +0 -41
  452. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/116.py +0 -12
  453. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/117.py +0 -25
  454. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/118.py +0 -26
  455. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/119.py +0 -30
  456. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/12.py +0 -21
  457. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/120.py +0 -28
  458. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/121.py +0 -10
  459. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/122.py +0 -19
  460. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/123.py +0 -31
  461. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/124.py +0 -56
  462. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/125.py +0 -20
  463. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/126.py +0 -29
  464. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/127.py +0 -47
  465. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/128.py +0 -25
  466. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/129.py +0 -61
  467. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/13.py +0 -10
  468. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/130.py +0 -29
  469. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/131.py +0 -18
  470. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/132.py +0 -36
  471. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/133.py +0 -16
  472. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/134.py +0 -27
  473. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/135.py +0 -15
  474. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/136.py +0 -19
  475. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/137.py +0 -26
  476. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/138.py +0 -8
  477. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/139.py +0 -18
  478. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/14.py +0 -9
  479. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/140.py +0 -30
  480. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/141.py +0 -35
  481. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/142.py +0 -20
  482. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/143.py +0 -35
  483. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/144.py +0 -19
  484. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/145.py +0 -22
  485. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/146.py +0 -21
  486. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/147.py +0 -22
  487. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/148.py +0 -28
  488. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/149.py +0 -17
  489. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/15.py +0 -8
  490. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/150.py +0 -15
  491. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/151.py +0 -20
  492. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/152.py +0 -16
  493. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/153.py +0 -30
  494. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/154.py +0 -15
  495. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/155.py +0 -15
  496. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/156.py +0 -32
  497. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/157.py +0 -12
  498. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/158.py +0 -11
  499. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/159.py +0 -33
  500. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/16.py +0 -8
  501. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/160.py +0 -29
  502. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/161.py +0 -24
  503. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/162.py +0 -11
  504. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/163.py +0 -14
  505. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/17.py +0 -27
  506. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/18.py +0 -23
  507. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/19.py +0 -21
  508. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/2.py +0 -10
  509. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/20.py +0 -22
  510. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/21.py +0 -13
  511. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/22.py +0 -11
  512. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/23.py +0 -8
  513. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/24.py +0 -9
  514. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/25.py +0 -24
  515. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/26.py +0 -12
  516. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/27.py +0 -6
  517. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/28.py +0 -11
  518. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/29.py +0 -11
  519. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/3.py +0 -18
  520. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/30.py +0 -8
  521. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/31.py +0 -27
  522. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/32.py +0 -50
  523. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/33.py +0 -20
  524. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/34.py +0 -6
  525. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/35.py +0 -8
  526. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/36.py +0 -14
  527. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/37.py +0 -14
  528. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/38.py +0 -11
  529. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/39.py +0 -35
  530. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/4.py +0 -14
  531. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/40.py +0 -24
  532. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/41.py +0 -13
  533. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/42.py +0 -8
  534. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/43.py +0 -22
  535. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/44.py +0 -18
  536. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/45.py +0 -6
  537. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/46.py +0 -23
  538. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/47.py +0 -14
  539. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/48.py +0 -13
  540. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/49.py +0 -14
  541. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/5.py +0 -19
  542. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/50.py +0 -12
  543. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/51.py +0 -18
  544. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/52.py +0 -8
  545. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/53.py +0 -8
  546. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/54.py +0 -17
  547. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/55.py +0 -18
  548. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/56.py +0 -22
  549. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/57.py +0 -16
  550. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/58.py +0 -9
  551. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/59.py +0 -22
  552. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/6.py +0 -26
  553. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/60.py +0 -14
  554. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/61.py +0 -22
  555. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/62.py +0 -10
  556. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/63.py +0 -25
  557. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/64.py +0 -20
  558. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/65.py +0 -14
  559. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/66.py +0 -14
  560. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/67.py +0 -16
  561. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/68.py +0 -50
  562. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/69.py +0 -21
  563. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/7.py +0 -11
  564. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/70.py +0 -26
  565. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/71.py +0 -17
  566. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/72.py +0 -21
  567. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/73.py +0 -17
  568. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/74.py +0 -21
  569. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/75.py +0 -30
  570. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/76.py +0 -20
  571. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/77.py +0 -17
  572. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/78.py +0 -24
  573. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/79.py +0 -13
  574. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/8.py +0 -17
  575. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/80.py +0 -18
  576. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/81.py +0 -54
  577. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/82.py +0 -20
  578. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/83.py +0 -21
  579. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/84.py +0 -16
  580. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/85.py +0 -12
  581. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/86.py +0 -16
  582. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/87.py +0 -29
  583. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/88.py +0 -24
  584. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/89.py +0 -23
  585. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/9.py +0 -20
  586. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/90.py +0 -20
  587. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/91.py +0 -20
  588. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/92.py +0 -25
  589. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/93.py +0 -34
  590. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/94.py +0 -33
  591. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/95.py +0 -27
  592. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/96.py +0 -28
  593. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/97.py +0 -13
  594. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/98.py +0 -15
  595. package/skills/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/99.py +0 -30
  596. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/SUMMARY.md +0 -48
  597. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-12907.patch +0 -16
  598. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14182.patch +0 -59
  599. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14365.patch +0 -21
  600. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-14995.patch +0 -15
  601. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-6938.patch +0 -20
  602. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/astropy__astropy-7746.patch +0 -31
  603. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-10914.patch +0 -72
  604. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-10924.patch +0 -41
  605. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11001.patch +0 -80
  606. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11019.patch +0 -489
  607. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11039.patch +0 -87
  608. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11049.patch +0 -24
  609. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11099.patch +0 -28
  610. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11133.patch +0 -20
  611. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11179.patch +0 -49
  612. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11283.patch +0 -47
  613. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11422.patch +0 -25
  614. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11564.patch +0 -285
  615. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11583.patch +0 -22
  616. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11620.patch +0 -21
  617. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11630.patch +0 -45
  618. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11742.patch +0 -32
  619. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11797.patch +0 -38
  620. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11815.patch +0 -20
  621. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11848.patch +0 -21
  622. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11905.patch +0 -16
  623. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11910.patch +0 -29
  624. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11964.patch +0 -54
  625. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-11999.patch +0 -15
  626. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12113.patch +0 -31
  627. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12125.patch +0 -27
  628. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12184.patch +0 -28
  629. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12284.patch +0 -31
  630. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12286.patch +0 -29
  631. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12308.patch +0 -22
  632. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12453.patch +0 -31
  633. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12470.patch +0 -53
  634. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12497.patch +0 -26
  635. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12589.patch +0 -157
  636. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12700.patch +0 -27
  637. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12708.patch +0 -64
  638. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12747.patch +0 -15
  639. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12856.patch +0 -16
  640. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12908.patch +0 -15
  641. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12915.patch +0 -82
  642. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-12983.patch +0 -21
  643. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13028.patch +0 -13
  644. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13033.patch +0 -17
  645. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13158.patch +0 -14
  646. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13220.patch +0 -57
  647. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13230.patch +0 -14
  648. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13265.patch +0 -44
  649. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13315.patch +0 -53
  650. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13321.patch +0 -33
  651. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13401.patch +0 -30
  652. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13447.patch +0 -40
  653. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13448.patch +0 -203
  654. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13551.patch +0 -17
  655. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13590.patch +0 -17
  656. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13658.patch +0 -19
  657. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13660.patch +0 -27
  658. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13710.patch +0 -23
  659. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13757.patch +0 -51
  660. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13768.patch +0 -32
  661. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13925.patch +0 -116
  662. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13933.patch +0 -62
  663. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-13964.patch +0 -17
  664. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14016.patch +0 -138
  665. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14017.patch +0 -88
  666. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14155.patch +0 -74
  667. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14238.patch +0 -132
  668. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14382.patch +0 -17
  669. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14411.patch +0 -16
  670. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14534.patch +0 -29
  671. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14580.patch +0 -15
  672. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14608.patch +0 -32
  673. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14667.patch +0 -33
  674. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14672.patch +0 -59
  675. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14730.patch +0 -80
  676. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14752.patch +0 -35
  677. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14787.patch +0 -24
  678. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14855.patch +0 -23
  679. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14915.patch +0 -19
  680. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14997.patch +0 -40
  681. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-14999.patch +0 -26
  682. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15061.patch +0 -24
  683. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15202.patch +0 -18
  684. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15213.patch +0 -70
  685. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15252.patch +0 -63
  686. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15320.patch +0 -36
  687. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15347.patch +0 -36
  688. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15388.patch +0 -26
  689. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15400.patch +0 -14
  690. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15498.patch +0 -14
  691. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15695.patch +0 -32
  692. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15738.patch +0 -251
  693. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15781.patch +0 -18
  694. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15789.patch +0 -50
  695. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15790.patch +0 -34
  696. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15814.patch +0 -18
  697. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15819.patch +0 -127
  698. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15851.patch +0 -16
  699. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15902.patch +0 -15
  700. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-15996.patch +0 -33
  701. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16041.patch +0 -30
  702. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16046.patch +0 -16
  703. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16139.patch +0 -19
  704. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16229.patch +0 -142
  705. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16255.patch +0 -21
  706. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16379.patch +0 -32
  707. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16400.patch +0 -34
  708. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16408.patch +0 -27
  709. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16527.patch +0 -14
  710. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16595.patch +0 -14
  711. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16816.patch +0 -30
  712. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16820.patch +0 -188
  713. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-16873.patch +0 -37
  714. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-17051.patch +0 -51
  715. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/django__django-17087.patch +0 -21
  716. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-18869.patch +0 -75
  717. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-22711.patch +0 -42
  718. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-22835.patch +0 -58
  719. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23299.patch +0 -92
  720. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23314.patch +0 -16
  721. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23476.patch +0 -73
  722. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23562.patch +0 -33
  723. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23563.patch +0 -22
  724. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23913.patch +0 -207
  725. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23964.patch +0 -29
  726. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-23987.patch +0 -43
  727. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24149.patch +0 -27
  728. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24265.patch +0 -76
  729. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24334.patch +0 -17
  730. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-24970.patch +0 -24
  731. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25079.patch +0 -15
  732. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25311.patch +0 -29
  733. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25332.patch +0 -28
  734. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25433.patch +0 -240
  735. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25442.patch +0 -28
  736. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-25498.patch +0 -79
  737. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-26011.patch +0 -90
  738. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/matplotlib__matplotlib-26020.patch +0 -35
  739. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-2848.patch +0 -55
  740. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3010.patch +0 -60
  741. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3190.patch +0 -18
  742. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/mwaskom__seaborn-3407.patch +0 -28
  743. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-4045.patch +0 -23
  744. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-4992.patch +0 -33
  745. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pallets__flask-5063.patch +0 -99
  746. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-1963.patch +0 -117
  747. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2148.patch +0 -37
  748. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2317.patch +0 -54
  749. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-2674.patch +0 -157
  750. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-3362.patch +0 -19
  751. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/psf__requests-863.patch +0 -35
  752. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-3364.patch +0 -392
  753. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4094.patch +0 -40
  754. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4248.patch +0 -124
  755. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-4493.patch +0 -39
  756. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pydata__xarray-5131.patch +0 -45
  757. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-5859.patch +0 -13
  758. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-6506.patch +0 -25
  759. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7080.patch +0 -33
  760. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7114.patch +0 -161
  761. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7228.patch +0 -34
  762. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pylint-dev__pylint-7993.patch +0 -21
  763. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-11143.patch +0 -25
  764. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-11148.patch +0 -57
  765. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5103.patch +0 -345
  766. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5221.patch +0 -28
  767. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5227.patch +0 -16
  768. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5413.patch +0 -35
  769. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5495.patch +0 -24
  770. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-5692.patch +0 -33
  771. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-6116.patch +0 -12
  772. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7168.patch +0 -28
  773. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7220.patch +0 -535
  774. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7373.patch +0 -47
  775. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7432.patch +0 -76
  776. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-7490.patch +0 -61
  777. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-8365.patch +0 -123
  778. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-8906.patch +0 -38
  779. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/pytest-dev__pytest-9359.patch +0 -22
  780. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10297.patch +0 -53
  781. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10508.patch +0 -17
  782. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-10949.patch +0 -94
  783. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-11040.patch +0 -39
  784. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-11281.patch +0 -65
  785. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-12471.patch +0 -54
  786. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13142.patch +0 -35
  787. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13241.patch +0 -29
  788. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13439.patch +0 -34
  789. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13496.patch +0 -59
  790. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13497.patch +0 -15
  791. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13584.patch +0 -25
  792. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-13779.patch +0 -16
  793. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14087.patch +0 -33
  794. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14092.patch +0 -35
  795. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14894.patch +0 -24
  796. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-14983.patch +0 -23
  797. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-15512.patch +0 -77
  798. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-15535.patch +0 -44
  799. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25500.patch +0 -64
  800. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25570.patch +0 -96
  801. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25638.patch +0 -52
  802. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/scikit-learn__scikit-learn-25747.patch +0 -29
  803. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-10325.patch +0 -185
  804. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-10451.patch +0 -129
  805. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-11445.patch +0 -119
  806. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7686.patch +0 -19
  807. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7738.patch +0 -37
  808. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-7975.patch +0 -89
  809. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8273.patch +0 -38
  810. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8282.patch +0 -95
  811. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8435.patch +0 -104
  812. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8474.patch +0 -73
  813. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8506.patch +0 -49
  814. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8595.patch +0 -15
  815. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8627.patch +0 -50
  816. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8713.patch +0 -41
  817. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8721.patch +0 -25
  818. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sphinx-doc__sphinx-8801.patch +0 -73
  819. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11400.patch +0 -27
  820. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11870.patch +0 -96
  821. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-11897.patch +0 -134
  822. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12171.patch +0 -17
  823. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12236.patch +0 -20
  824. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12419.patch +0 -35
  825. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12454.patch +0 -55
  826. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-12481.patch +0 -68
  827. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13031.patch +0 -33
  828. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13043.patch +0 -35
  829. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13146.patch +0 -32
  830. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13177.patch +0 -36
  831. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13437.patch +0 -15
  832. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13471.patch +0 -26
  833. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13480.patch +0 -13
  834. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13647.patch +0 -41
  835. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13773.patch +0 -22
  836. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13895.patch +0 -28
  837. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13915.patch +0 -97
  838. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-13971.patch +0 -19
  839. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14024.patch +0 -27
  840. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14308.patch +0 -20
  841. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14317.patch +0 -42
  842. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14396.patch +0 -38
  843. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14774.patch +0 -13
  844. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-14817.patch +0 -54
  845. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15011.patch +0 -38
  846. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15308.patch +0 -21
  847. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15345.patch +0 -27
  848. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15346.patch +0 -26
  849. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15609.patch +0 -29
  850. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-15678.patch +0 -92
  851. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16106.patch +0 -78
  852. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16281.patch +0 -141
  853. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16503.patch +0 -69
  854. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16792.patch +0 -16
  855. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-16988.patch +0 -16
  856. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17022.patch +0 -65
  857. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17139.patch +0 -33
  858. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17630.patch +0 -90
  859. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-17655.patch +0 -23
  860. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18057.patch +0 -28
  861. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18087.patch +0 -81
  862. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18189.patch +0 -13
  863. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18199.patch +0 -23
  864. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18532.patch +0 -130
  865. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18621.patch +0 -15
  866. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18698.patch +0 -105
  867. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-18835.patch +0 -30
  868. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19007.patch +0 -66
  869. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19254.patch +0 -72
  870. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-19487.patch +0 -23
  871. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20049.patch +0 -125
  872. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20154.patch +0 -46
  873. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20212.patch +0 -17
  874. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20322.patch +0 -24
  875. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20442.patch +0 -27
  876. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20590.patch +0 -23
  877. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-20639.patch +0 -66
  878. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21055.patch +0 -56
  879. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21171.patch +0 -36
  880. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21379.patch +0 -36
  881. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21612.patch +0 -26
  882. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21614.patch +0 -37
  883. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21627.patch +0 -26
  884. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-21847.patch +0 -24
  885. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22005.patch +0 -36
  886. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22714.patch +0 -486
  887. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-22840.patch +0 -76
  888. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23117.patch +0 -24
  889. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23191.patch +0 -302
  890. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-23262.patch +0 -13
  891. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24066.patch +0 -66
  892. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24102.patch +0 -12
  893. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24152.patch +0 -25
  894. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24213.patch +0 -25
  895. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-patches/sympy__sympy-24909.patch +0 -19
  896. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-predictions.json +0 -1502
  897. package/skills/loki-mode/benchmarks/results/2026-01-05-01-24-17/swebench-results.json +0 -1516
  898. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/SUMMARY.md +0 -48
  899. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-12907.patch +0 -31
  900. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14182.patch +0 -42
  901. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14365.patch +0 -50
  902. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-14995.patch +0 -17
  903. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-6938.patch +0 -13
  904. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/astropy__astropy-7746.patch +0 -21
  905. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-10914.patch +0 -76
  906. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-10924.patch +0 -33
  907. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11001.patch +0 -35
  908. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11019.patch +0 -90
  909. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11039.patch +0 -37
  910. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11049.patch +0 -10
  911. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11099.patch +0 -24
  912. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11133.patch +0 -21
  913. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11179.patch +0 -47
  914. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11283.patch +0 -35
  915. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11422.patch +0 -18
  916. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11564.patch +0 -62
  917. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11583.patch +0 -25
  918. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11620.patch +0 -19
  919. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11630.patch +0 -79
  920. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11742.patch +0 -38
  921. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11797.patch +0 -15
  922. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11815.patch +0 -20
  923. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11848.patch +0 -19
  924. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11905.patch +0 -18
  925. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11910.patch +0 -17
  926. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11964.patch +0 -31
  927. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-11999.patch +0 -26
  928. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12113.patch +0 -27
  929. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12125.patch +0 -17
  930. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12184.patch +0 -83
  931. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12284.patch +0 -21
  932. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12286.patch +0 -21
  933. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12308.patch +0 -24
  934. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12453.patch +0 -31
  935. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12470.patch +0 -137
  936. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12497.patch +0 -21
  937. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12589.patch +0 -28
  938. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12700.patch +0 -17
  939. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12708.patch +0 -22
  940. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12747.patch +0 -43
  941. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12856.patch +0 -61
  942. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12908.patch +0 -19
  943. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12915.patch +0 -39
  944. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-12983.patch +0 -21
  945. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13028.patch +0 -13
  946. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13033.patch +0 -26
  947. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13158.patch +0 -12
  948. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-patches/django__django-13220.patch +0 -55
  949. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-predictions.json +0 -252
  950. package/skills/loki-mode/benchmarks/results/2026-01-05-01-35-39/swebench-results.json +0 -266
  951. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/SUMMARY.md +0 -32
  952. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-12907.patch +0 -23
  953. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14182.patch +0 -19
  954. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14365.patch +0 -44
  955. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-14995.patch +0 -19
  956. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-6938.patch +0 -14
  957. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/astropy__astropy-7746.patch +0 -28
  958. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-10914.patch +0 -76
  959. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-10924.patch +0 -25
  960. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11001.patch +0 -20
  961. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11019.patch +0 -158
  962. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11039.patch +0 -38
  963. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11049.patch +0 -18
  964. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11099.patch +0 -24
  965. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11133.patch +0 -15
  966. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11179.patch +0 -14
  967. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11283.patch +0 -29
  968. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11422.patch +0 -21
  969. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11564.patch +0 -140
  970. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11583.patch +0 -24
  971. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11620.patch +0 -18
  972. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11630.patch +0 -38
  973. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11742.patch +0 -49
  974. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11797.patch +0 -18
  975. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11815.patch +0 -22
  976. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11848.patch +0 -24
  977. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11905.patch +0 -32
  978. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11910.patch +0 -100
  979. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11964.patch +0 -62
  980. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-11999.patch +0 -20
  981. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12113.patch +0 -24
  982. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12125.patch +0 -17
  983. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12184.patch +0 -82
  984. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12284.patch +0 -15
  985. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12286.patch +0 -41
  986. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12308.patch +0 -31
  987. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12453.patch +0 -32
  988. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12470.patch +0 -21
  989. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12497.patch +0 -17
  990. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12589.patch +0 -56
  991. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12700.patch +0 -28
  992. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12708.patch +0 -61
  993. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12747.patch +0 -15
  994. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12856.patch +0 -62
  995. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12908.patch +0 -21
  996. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12915.patch +0 -18
  997. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-12983.patch +0 -21
  998. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13028.patch +0 -18
  999. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13033.patch +0 -15
  1000. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13158.patch +0 -15
  1001. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13220.patch +0 -126
  1002. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13230.patch +0 -24
  1003. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13265.patch +0 -87
  1004. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13315.patch +0 -16
  1005. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13321.patch +0 -29
  1006. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13401.patch +0 -31
  1007. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13447.patch +0 -42
  1008. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13448.patch +0 -94
  1009. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13551.patch +0 -16
  1010. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13590.patch +0 -15
  1011. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13658.patch +0 -22
  1012. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13660.patch +0 -22
  1013. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13710.patch +0 -42
  1014. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13757.patch +0 -32
  1015. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13768.patch +0 -32
  1016. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13925.patch +0 -20
  1017. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13933.patch +0 -31
  1018. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-13964.patch +0 -15
  1019. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14016.patch +0 -103
  1020. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14017.patch +0 -20
  1021. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14155.patch +0 -121
  1022. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14238.patch +0 -14
  1023. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14382.patch +0 -15
  1024. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14411.patch +0 -16
  1025. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14534.patch +0 -15
  1026. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14580.patch +0 -15
  1027. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14608.patch +0 -34
  1028. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14667.patch +0 -29
  1029. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14672.patch +0 -12
  1030. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14730.patch +0 -43
  1031. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14752.patch +0 -32
  1032. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14787.patch +0 -35
  1033. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14855.patch +0 -23
  1034. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14915.patch +0 -21
  1035. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14997.patch +0 -15
  1036. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-14999.patch +0 -28
  1037. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15061.patch +0 -19
  1038. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15202.patch +0 -22
  1039. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15213.patch +0 -16
  1040. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15252.patch +0 -59
  1041. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15320.patch +0 -13
  1042. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15347.patch +0 -15
  1043. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15388.patch +0 -25
  1044. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15400.patch +0 -19
  1045. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15498.patch +0 -14
  1046. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15695.patch +0 -39
  1047. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15738.patch +0 -185
  1048. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15781.patch +0 -20
  1049. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15789.patch +0 -69
  1050. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15790.patch +0 -38
  1051. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15814.patch +0 -14
  1052. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15819.patch +0 -101
  1053. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15851.patch +0 -40
  1054. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15902.patch +0 -17
  1055. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-15996.patch +0 -28
  1056. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16041.patch +0 -27
  1057. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16046.patch +0 -17
  1058. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16139.patch +0 -15
  1059. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16229.patch +0 -19
  1060. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16255.patch +0 -17
  1061. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16379.patch +0 -21
  1062. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16400.patch +0 -29
  1063. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16408.patch +0 -39
  1064. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16527.patch +0 -14
  1065. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16595.patch +0 -39
  1066. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16816.patch +0 -27
  1067. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16820.patch +0 -98
  1068. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16873.patch +0 -23
  1069. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-16910.patch +0 -39
  1070. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-17051.patch +0 -15
  1071. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/django__django-17087.patch +0 -19
  1072. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-18869.patch +0 -29
  1073. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-22711.patch +0 -38
  1074. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-22835.patch +0 -27
  1075. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23299.patch +0 -65
  1076. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23314.patch +0 -15
  1077. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23476.patch +0 -19
  1078. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23562.patch +0 -23
  1079. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23563.patch +0 -14
  1080. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23913.patch +0 -95
  1081. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23964.patch +0 -14
  1082. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-23987.patch +0 -55
  1083. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24149.patch +0 -20
  1084. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24265.patch +0 -52
  1085. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24334.patch +0 -23
  1086. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-24970.patch +0 -24
  1087. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25079.patch +0 -38
  1088. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25311.patch +0 -62
  1089. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25332.patch +0 -42
  1090. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25433.patch +0 -126
  1091. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25442.patch +0 -27
  1092. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-25498.patch +0 -67
  1093. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-26011.patch +0 -55
  1094. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/matplotlib__matplotlib-26020.patch +0 -42
  1095. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-2848.patch +0 -95
  1096. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3010.patch +0 -17
  1097. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3190.patch +0 -73
  1098. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/mwaskom__seaborn-3407.patch +0 -31
  1099. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-4045.patch +0 -21
  1100. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-4992.patch +0 -47
  1101. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pallets__flask-5063.patch +0 -90
  1102. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-1963.patch +0 -29
  1103. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2148.patch +0 -79
  1104. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2317.patch +0 -38
  1105. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-2674.patch +0 -58
  1106. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-3362.patch +0 -17
  1107. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/psf__requests-863.patch +0 -20
  1108. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-3364.patch +0 -159
  1109. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4094.patch +0 -17
  1110. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4248.patch +0 -134
  1111. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-4493.patch +0 -20
  1112. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pydata__xarray-5131.patch +0 -23
  1113. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-5859.patch +0 -15
  1114. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-6506.patch +0 -36
  1115. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7080.patch +0 -31
  1116. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7114.patch +0 -51
  1117. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7228.patch +0 -80
  1118. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pylint-dev__pylint-7993.patch +0 -54
  1119. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-11143.patch +0 -17
  1120. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-11148.patch +0 -27
  1121. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5103.patch +0 -350
  1122. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5221.patch +0 -18
  1123. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5227.patch +0 -15
  1124. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5413.patch +0 -20
  1125. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5495.patch +0 -44
  1126. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-5692.patch +0 -69
  1127. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-6116.patch +0 -17
  1128. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7168.patch +0 -14
  1129. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7220.patch +0 -391
  1130. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7373.patch +0 -48
  1131. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7432.patch +0 -99
  1132. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-7490.patch +0 -4
  1133. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-8365.patch +0 -27
  1134. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-8906.patch +0 -23
  1135. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/pytest-dev__pytest-9359.patch +0 -89
  1136. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10297.patch +0 -22
  1137. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10508.patch +0 -37
  1138. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-10949.patch +0 -66
  1139. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-11040.patch +0 -147
  1140. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-11281.patch +0 -107
  1141. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-12471.patch +0 -22
  1142. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13142.patch +0 -19
  1143. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13241.patch +0 -26
  1144. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13439.patch +0 -29
  1145. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13496.patch +0 -62
  1146. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13497.patch +0 -23
  1147. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13584.patch +0 -38
  1148. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-13779.patch +0 -16
  1149. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14087.patch +0 -17
  1150. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14092.patch +0 -61
  1151. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14894.patch +0 -45
  1152. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-14983.patch +0 -36
  1153. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-15512.patch +0 -143
  1154. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-15535.patch +0 -17
  1155. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25500.patch +0 -79
  1156. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25570.patch +0 -71
  1157. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25638.patch +0 -70
  1158. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/scikit-learn__scikit-learn-25747.patch +0 -14
  1159. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-10325.patch +0 -153
  1160. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-10451.patch +0 -99
  1161. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-11445.patch +0 -67
  1162. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7686.patch +0 -50
  1163. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7738.patch +0 -22
  1164. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-7975.patch +0 -92
  1165. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8273.patch +0 -103
  1166. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8282.patch +0 -45
  1167. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8435.patch +0 -56
  1168. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8474.patch +0 -21
  1169. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8506.patch +0 -33
  1170. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8595.patch +0 -45
  1171. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8627.patch +0 -62
  1172. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8713.patch +0 -19
  1173. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8721.patch +0 -17
  1174. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sphinx-doc__sphinx-8801.patch +0 -101
  1175. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11400.patch +0 -55
  1176. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11870.patch +0 -47
  1177. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-11897.patch +0 -152
  1178. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12171.patch +0 -20
  1179. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12236.patch +0 -17
  1180. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12419.patch +0 -37
  1181. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12454.patch +0 -22
  1182. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-12481.patch +0 -44
  1183. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13031.patch +0 -71
  1184. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13043.patch +0 -25
  1185. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13146.patch +0 -54
  1186. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13177.patch +0 -14
  1187. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13437.patch +0 -17
  1188. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13471.patch +0 -15
  1189. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13480.patch +0 -19
  1190. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13647.patch +0 -22
  1191. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13773.patch +0 -32
  1192. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13895.patch +0 -55
  1193. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13915.patch +0 -70
  1194. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-13971.patch +0 -20
  1195. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14024.patch +0 -56
  1196. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14308.patch +0 -189
  1197. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14317.patch +0 -41
  1198. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14396.patch +0 -32
  1199. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14774.patch +0 -15
  1200. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-14817.patch +0 -19
  1201. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15011.patch +0 -31
  1202. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15308.patch +0 -21
  1203. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15345.patch +0 -13
  1204. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15346.patch +0 -21
  1205. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15609.patch +0 -11
  1206. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-15678.patch +0 -87
  1207. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16106.patch +0 -66
  1208. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16281.patch +0 -88
  1209. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16503.patch +0 -18
  1210. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16792.patch +0 -20
  1211. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-16988.patch +0 -22
  1212. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17022.patch +0 -38
  1213. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17139.patch +0 -48
  1214. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17630.patch +0 -116
  1215. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-17655.patch +0 -27
  1216. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18057.patch +0 -31
  1217. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18087.patch +0 -55
  1218. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18189.patch +0 -15
  1219. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18199.patch +0 -25
  1220. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18532.patch +0 -84
  1221. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18621.patch +0 -21
  1222. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18698.patch +0 -60
  1223. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-18835.patch +0 -39
  1224. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19007.patch +0 -143
  1225. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19254.patch +0 -79
  1226. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-19487.patch +0 -37
  1227. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20049.patch +0 -37
  1228. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20154.patch +0 -27
  1229. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20212.patch +0 -15
  1230. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20322.patch +0 -23
  1231. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20442.patch +0 -73
  1232. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20590.patch +0 -16
  1233. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-20639.patch +0 -20
  1234. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21055.patch +0 -47
  1235. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21171.patch +0 -27
  1236. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21379.patch +0 -27
  1237. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21612.patch +0 -46
  1238. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21614.patch +0 -23
  1239. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21627.patch +0 -28
  1240. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-21847.patch +0 -24
  1241. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22005.patch +0 -36
  1242. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22714.patch +0 -19
  1243. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-22840.patch +0 -19
  1244. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23117.patch +0 -18
  1245. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23191.patch +0 -42
  1246. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-23262.patch +0 -18
  1247. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24066.patch +0 -26
  1248. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24102.patch +0 -17
  1249. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24152.patch +0 -23
  1250. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24213.patch +0 -18
  1251. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-patches/sympy__sympy-24909.patch +0 -39
  1252. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-predictions.json +0 -1802
  1253. package/skills/loki-mode/benchmarks/results/2026-01-05-10-37-54/swebench-loki-results.json +0 -1816
  1254. package/skills/loki-mode/benchmarks/results/SUMMARY.md +0 -32
  1255. package/skills/loki-mode/benchmarks/results/humaneval-loki-results.json +0 -1001
  1256. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/0.py +0 -21
  1257. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/1.py +0 -36
  1258. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/10.py +0 -30
  1259. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/100.py +0 -23
  1260. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/101.py +0 -17
  1261. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/102.py +0 -21
  1262. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/103.py +0 -22
  1263. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/104.py +0 -23
  1264. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/105.py +0 -34
  1265. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/106.py +0 -26
  1266. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/107.py +0 -40
  1267. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/108.py +0 -27
  1268. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/109.py +0 -53
  1269. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/11.py +0 -21
  1270. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/110.py +0 -25
  1271. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/111.py +0 -34
  1272. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/112.py +0 -20
  1273. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/113.py +0 -25
  1274. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/114.py +0 -24
  1275. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/115.py +0 -41
  1276. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/116.py +0 -17
  1277. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/117.py +0 -30
  1278. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/118.py +0 -31
  1279. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/119.py +0 -35
  1280. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/12.py +0 -27
  1281. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/120.py +0 -33
  1282. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/121.py +0 -15
  1283. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/122.py +0 -24
  1284. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/123.py +0 -35
  1285. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/124.py +0 -58
  1286. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/125.py +0 -25
  1287. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/126.py +0 -34
  1288. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/127.py +0 -41
  1289. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/128.py +0 -31
  1290. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/129.py +0 -62
  1291. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/13.py +0 -17
  1292. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/130.py +0 -35
  1293. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/131.py +0 -24
  1294. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/132.py +0 -32
  1295. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/133.py +0 -21
  1296. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/134.py +0 -23
  1297. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/135.py +0 -20
  1298. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/136.py +0 -24
  1299. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/137.py +0 -31
  1300. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/138.py +0 -13
  1301. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/139.py +0 -23
  1302. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/14.py +0 -14
  1303. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/140.py +0 -26
  1304. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/141.py +0 -42
  1305. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/142.py +0 -25
  1306. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/143.py +0 -40
  1307. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/144.py +0 -24
  1308. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/145.py +0 -24
  1309. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/146.py +0 -21
  1310. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/147.py +0 -32
  1311. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/148.py +0 -33
  1312. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/149.py +0 -22
  1313. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/15.py +0 -13
  1314. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/150.py +0 -26
  1315. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/151.py +0 -22
  1316. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/152.py +0 -21
  1317. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/153.py +0 -32
  1318. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/154.py +0 -25
  1319. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/155.py +0 -20
  1320. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/156.py +0 -39
  1321. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/157.py +0 -28
  1322. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/158.py +0 -16
  1323. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/159.py +0 -36
  1324. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/16.py +0 -13
  1325. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/160.py +0 -34
  1326. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/161.py +0 -29
  1327. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/162.py +0 -16
  1328. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/163.py +0 -18
  1329. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/17.py +0 -27
  1330. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/18.py +0 -23
  1331. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/19.py +0 -34
  1332. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/2.py +0 -15
  1333. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/20.py +0 -27
  1334. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/21.py +0 -18
  1335. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/22.py +0 -16
  1336. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/23.py +0 -13
  1337. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/24.py +0 -14
  1338. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/25.py +0 -29
  1339. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/26.py +0 -17
  1340. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/27.py +0 -11
  1341. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/28.py +0 -16
  1342. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/29.py +0 -16
  1343. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/3.py +0 -23
  1344. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/30.py +0 -13
  1345. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/31.py +0 -34
  1346. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/32.py +0 -37
  1347. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/33.py +0 -19
  1348. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/34.py +0 -11
  1349. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/35.py +0 -13
  1350. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/36.py +0 -19
  1351. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/37.py +0 -19
  1352. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/38.py +0 -25
  1353. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/39.py +0 -40
  1354. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/4.py +0 -23
  1355. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/40.py +0 -43
  1356. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/41.py +0 -18
  1357. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/42.py +0 -13
  1358. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/43.py +0 -27
  1359. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/44.py +0 -25
  1360. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/45.py +0 -11
  1361. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/46.py +0 -35
  1362. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/47.py +0 -19
  1363. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/48.py +0 -18
  1364. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/49.py +0 -26
  1365. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/5.py +0 -25
  1366. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/50.py +0 -10
  1367. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/51.py +0 -23
  1368. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/52.py +0 -13
  1369. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/53.py +0 -13
  1370. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/54.py +0 -22
  1371. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/55.py +0 -20
  1372. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/56.py +0 -27
  1373. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/57.py +0 -27
  1374. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/58.py +0 -14
  1375. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/59.py +0 -32
  1376. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/6.py +0 -33
  1377. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/60.py +0 -19
  1378. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/61.py +0 -27
  1379. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/62.py +0 -15
  1380. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/63.py +0 -30
  1381. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/64.py +0 -29
  1382. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/65.py +0 -18
  1383. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/66.py +0 -23
  1384. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/67.py +0 -22
  1385. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/68.py +0 -55
  1386. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/69.py +0 -26
  1387. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/7.py +0 -16
  1388. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/70.py +0 -35
  1389. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/71.py +0 -29
  1390. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/72.py +0 -24
  1391. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/73.py +0 -22
  1392. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/74.py +0 -26
  1393. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/75.py +0 -42
  1394. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/76.py +0 -25
  1395. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/77.py +0 -25
  1396. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/78.py +0 -29
  1397. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/79.py +0 -18
  1398. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/8.py +0 -24
  1399. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/80.py +0 -26
  1400. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/81.py +0 -61
  1401. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/82.py +0 -21
  1402. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/83.py +0 -13
  1403. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/84.py +0 -21
  1404. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/85.py +0 -17
  1405. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/86.py +0 -21
  1406. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/87.py +0 -31
  1407. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/88.py +0 -29
  1408. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/89.py +0 -25
  1409. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/9.py +0 -25
  1410. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/90.py +0 -21
  1411. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/91.py +0 -31
  1412. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/92.py +0 -29
  1413. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/93.py +0 -30
  1414. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/94.py +0 -32
  1415. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/95.py +0 -32
  1416. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/96.py +0 -38
  1417. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/97.py +0 -16
  1418. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/98.py +0 -20
  1419. package/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/99.py +0 -36
  1420. package/skills/loki-mode/benchmarks/run-benchmarks.sh +0 -1948
  1421. package/skills/loki-mode/benchmarks/submission-template/README.md +0 -111
  1422. package/skills/loki-mode/benchmarks/submission-template/metadata.yaml +0 -76
  1423. package/skills/loki-mode/demo/README.md +0 -137
  1424. package/skills/loki-mode/demo/loki-demo.gif +0 -0
  1425. package/skills/loki-mode/demo/record-demo.sh +0 -69
  1426. package/skills/loki-mode/demo/record-full-demo.sh +0 -208
  1427. package/skills/loki-mode/demo/recordings/loki-demo.cast +0 -93
  1428. package/skills/loki-mode/demo/run-demo-auto.sh +0 -293
  1429. package/skills/loki-mode/demo/run-demo.sh +0 -323
  1430. package/skills/loki-mode/demo/vhs-tape.tape +0 -223
  1431. package/skills/loki-mode/demo/voice-over-script.md +0 -246
  1432. package/skills/loki-mode/examples/api-only.md +0 -79
  1433. package/skills/loki-mode/examples/full-stack-demo.md +0 -123
  1434. package/skills/loki-mode/examples/simple-todo-app.md +0 -60
  1435. package/skills/loki-mode/examples/static-landing-page.md +0 -73
  1436. package/skills/loki-mode/examples/todo-app-generated/.loki/CONTINUITY.md +0 -59
  1437. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/completed.json +0 -1
  1438. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/dead-letter.json +0 -1
  1439. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/failed.json +0 -1
  1440. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/in-progress.json +0 -1
  1441. package/skills/loki-mode/examples/todo-app-generated/.loki/queue/pending.json +0 -382
  1442. package/skills/loki-mode/examples/todo-app-generated/.loki/state/orchestrator.json +0 -41
  1443. package/skills/loki-mode/examples/todo-app-generated/E2E_VERIFICATION_REPORT.md +0 -668
  1444. package/skills/loki-mode/examples/todo-app-generated/PRD.md +0 -60
  1445. package/skills/loki-mode/examples/todo-app-generated/TASK_018_COMPLETION.md +0 -229
  1446. package/skills/loki-mode/examples/todo-app-generated/TESTING_DOCUMENTATION.md +0 -327
  1447. package/skills/loki-mode/examples/todo-app-generated/TEST_REPORT.md +0 -201
  1448. package/skills/loki-mode/examples/todo-app-generated/VERIFICATION_SUMMARY.txt +0 -362
  1449. package/skills/loki-mode/examples/todo-app-generated/backend/package-lock.json +0 -2698
  1450. package/skills/loki-mode/examples/todo-app-generated/backend/package.json +0 -26
  1451. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/database.ts +0 -24
  1452. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/db.ts +0 -35
  1453. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/index.ts +0 -2
  1454. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/migrations.ts +0 -31
  1455. package/skills/loki-mode/examples/todo-app-generated/backend/src/db/schema.sql +0 -8
  1456. package/skills/loki-mode/examples/todo-app-generated/backend/src/index.ts +0 -44
  1457. package/skills/loki-mode/examples/todo-app-generated/backend/src/routes/todos.ts +0 -155
  1458. package/skills/loki-mode/examples/todo-app-generated/backend/src/types/index.ts +0 -35
  1459. package/skills/loki-mode/examples/todo-app-generated/backend/todos.db-shm +0 -0
  1460. package/skills/loki-mode/examples/todo-app-generated/backend/todos.db-wal +0 -0
  1461. package/skills/loki-mode/examples/todo-app-generated/backend/tsconfig.json +0 -30
  1462. package/skills/loki-mode/examples/todo-app-generated/frontend/index.html +0 -13
  1463. package/skills/loki-mode/examples/todo-app-generated/frontend/package-lock.json +0 -2014
  1464. package/skills/loki-mode/examples/todo-app-generated/frontend/package.json +0 -26
  1465. package/skills/loki-mode/examples/todo-app-generated/frontend/src/App.css +0 -384
  1466. package/skills/loki-mode/examples/todo-app-generated/frontend/src/App.tsx +0 -81
  1467. package/skills/loki-mode/examples/todo-app-generated/frontend/src/api/todos.ts +0 -57
  1468. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/ConfirmDialog.tsx +0 -26
  1469. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/EmptyState.tsx +0 -8
  1470. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoForm.tsx +0 -43
  1471. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoItem.tsx +0 -36
  1472. package/skills/loki-mode/examples/todo-app-generated/frontend/src/components/TodoList.tsx +0 -27
  1473. package/skills/loki-mode/examples/todo-app-generated/frontend/src/hooks/useTodos.ts +0 -81
  1474. package/skills/loki-mode/examples/todo-app-generated/frontend/src/index.css +0 -48
  1475. package/skills/loki-mode/examples/todo-app-generated/frontend/src/main.tsx +0 -10
  1476. package/skills/loki-mode/examples/todo-app-generated/frontend/src/vite-env.d.ts +0 -1
  1477. package/skills/loki-mode/examples/todo-app-generated/frontend/tsconfig.json +0 -23
  1478. package/skills/loki-mode/examples/todo-app-generated/frontend/tsconfig.node.json +0 -10
  1479. package/skills/loki-mode/examples/todo-app-generated/frontend/vite.config.ts +0 -15
  1480. package/skills/theme-factory/theme-showcase.pdf +0 -0
  1481. package/skills/ui-ux-pro-max/scripts/__pycache__/core.cpython-314.pyc +0 -0
  1482. package/skills/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-314.pyc +0 -0
  1483. package/skills/web-artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
@@ -0,0 +1,722 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ UX Audit Script - Full Frontend Design Coverage
4
+
5
+ Analyzes code for compliance with:
6
+
7
+ 1. CORE PSYCHOLOGY LAWS:
8
+ - Hick's Law (nav items, form complexity)
9
+ - Fitts' Law (target sizes, touch targets)
10
+ - Miller's Law (chunking, memory limits)
11
+ - Von Restorff Effect (primary CTA visibility)
12
+ - Serial Position Effect (important items at start/end)
13
+
14
+ 2. EMOTIONAL DESIGN (Don Norman):
15
+ - Visceral (first impressions, gradients, animations)
16
+ - Behavioral (feedback, usability, performance)
17
+ - Reflective (brand story, values, identity)
18
+
19
+ 3. TRUST BUILDING:
20
+ - Security signals (SSL, encryption on forms)
21
+ - Social proof (testimonials, reviews, logos)
22
+ - Authority indicators (certifications, awards, media)
23
+
24
+ 4. COGNITIVE LOAD MANAGEMENT:
25
+ - Progressive disclosure (accordion, tabs, "Advanced")
26
+ - Visual noise (too many colors/borders)
27
+ - Familiar patterns (labels, standard conventions)
28
+
29
+ 5. PERSUASIVE DESIGN (Ethical):
30
+ - Smart defaults (pre-selected options)
31
+ - Anchoring (original vs discount price)
32
+ - Social proof (live indicators, numbers)
33
+ - Progress indicators (progress bars, steps)
34
+
35
+ 6. TYPOGRAPHY SYSTEM (9 sections):
36
+ - Font Pairing (max 3 families)
37
+ - Line Length (45-75ch)
38
+ - Line Height (proper ratios)
39
+ - Letter Spacing (uppercase, display text)
40
+ - Weight and Emphasis (contrast levels)
41
+ - Responsive Typography (clamp())
42
+ - Hierarchy (sequential headings)
43
+ - Modular Scale (consistent ratios)
44
+ - Readability (chunking, subheadings)
45
+
46
+ 7. VISUAL EFFECTS (10 sections):
47
+ - Glassmorphism (blur + transparency)
48
+ - Neomorphism (dual shadows, inset)
49
+ - Shadow Hierarchy (elevation levels)
50
+ - Gradients (usage, overuse)
51
+ - Border Effects (complexity check)
52
+ - Glow Effects (text-shadow, box-shadow)
53
+ - Overlay Techniques (image text readability)
54
+ - GPU Acceleration (transform/opacity vs layout)
55
+ - Performance (will-change usage)
56
+ - Effect Selection (purpose over decoration)
57
+
58
+ 8. COLOR SYSTEM (7 sections):
59
+ - PURPLE BAN (Critical Maestro rule - #8B5CF6, #A855F7, etc.)
60
+ - 60-30-10 Rule (dominant, secondary, accent)
61
+ - Color Scheme Patterns (monochromatic, analogous)
62
+ - Dark Mode Compliance (no pure black/white)
63
+ - WCAG Contrast (low-contrast detection)
64
+ - Color Psychology Context (food + blue = bad)
65
+ - HSL-Based Palettes (recommended approach)
66
+
67
+ 9. ANIMATION GUIDE (6 sections):
68
+ - Duration Appropriateness (50ms minimum, 1s max transitions)
69
+ - Easing Functions (ease-out for entry, ease-in for exit)
70
+ - Micro-interactions (hover/focus feedback)
71
+ - Loading States (skeleton, spinner, progress)
72
+ - Page Transitions (fade/slide for routing)
73
+ - Scroll Animation Performance (no layout properties)
74
+
75
+ 10. MOTION GRAPHICS (7 sections):
76
+ - Lottie Animations (reduced motion fallbacks)
77
+ - GSAP Memory Leaks (kill/revert on unmount)
78
+ - SVG Animation Performance (stroke-dashoffset sparingly)
79
+ - 3D Transforms (perspective parent, mobile warning)
80
+ - Particle Effects (mobile fallback)
81
+ - Scroll-Driven Animations (throttle with rAF)
82
+ - Motion Decision Tree (functional vs decorative)
83
+
84
+ 11. ACCESSIBILITY:
85
+ - Alt text for images
86
+ - Reduced motion checks
87
+ - Form labels
88
+
89
+ Total: 80+ checks across all design principles
90
+ """
91
+
92
+ import sys
93
+ import os
94
+ import re
95
+ import json
96
+ from pathlib import Path
97
+
98
+ class UXAuditor:
99
+ def __init__(self):
100
+ self.issues = []
101
+ self.warnings = []
102
+ self.passed_count = 0
103
+ self.files_checked = 0
104
+
105
+ def audit_file(self, filepath: str) -> None:
106
+ try:
107
+ with open(filepath, 'r', encoding='utf-8', errors='replace') as f:
108
+ content = f.read()
109
+ except: return
110
+
111
+ self.files_checked += 1
112
+ filename = os.path.basename(filepath)
113
+
114
+ # Pre-calculate common flags
115
+ has_long_text = bool(re.search(r'<p|<div.*class=.*text|article|<span.*text', content, re.IGNORECASE))
116
+ has_form = bool(re.search(r'<form|<input|password|credit|card|payment', content, re.IGNORECASE))
117
+ complex_elements = len(re.findall(r'<input|<select|<textarea|<option', content, re.IGNORECASE))
118
+
119
+ # --- 1. PSYCHOLOGY LAWS ---
120
+ # Hick's Law
121
+ nav_items = len(re.findall(r'<NavLink|<Link|<a\s+href|nav-item', content, re.IGNORECASE))
122
+ if nav_items > 7:
123
+ self.issues.append(f"[Hick's Law] {filename}: {nav_items} nav items (Max 7)")
124
+
125
+ # Fitts' Law
126
+ if re.search(r'height:\s*([0-3]\d)px', content) or re.search(r'h-[1-9]\b|h-10\b', content):
127
+ self.warnings.append(f"[Fitts' Law] {filename}: Small targets (< 44px)")
128
+
129
+ # Miller's Law
130
+ form_fields = len(re.findall(r'<input|<select|<textarea', content, re.IGNORECASE))
131
+ if form_fields > 7 and not re.search(r'step|wizard|stage', content, re.IGNORECASE):
132
+ self.warnings.append(f"[Miller's Law] {filename}: Complex form ({form_fields} fields)")
133
+
134
+ # Von Restorff
135
+ if 'button' in content.lower() and not re.search(r'primary|bg-primary|Button.*primary|variant=["\']primary', content, re.IGNORECASE):
136
+ self.warnings.append(f"[Von Restorff] {filename}: No primary CTA")
137
+
138
+ # Serial Position Effect - Important items at beginning/end
139
+ if nav_items > 3:
140
+ # Check if last nav item is important (contact, login, etc.)
141
+ nav_content = re.findall(r'<NavLink|<Link|<a\s+href[^>]*>([^<]+)</a>', content, re.IGNORECASE)
142
+ if nav_content and len(nav_content) > 2:
143
+ last_item = nav_content[-1].lower() if nav_content else ''
144
+ if not any(x in last_item for x in ['contact', 'login', 'sign', 'get started', 'cta', 'button']):
145
+ self.warnings.append(f"[Serial Position] {filename}: Last nav item may not be important. Place key actions at start/end.")
146
+
147
+ # --- 1.5 EMOTIONAL DESIGN (Don Norman) ---
148
+
149
+ # Visceral: First impressions (aesthetics, gradients, animations)
150
+ has_hero = bool(re.search(r'hero|<h1|banner', content, re.IGNORECASE))
151
+ if has_hero:
152
+ # Check for visual appeal elements
153
+ has_gradient = bool(re.search(r'gradient|linear-gradient|radial-gradient', content))
154
+ has_animation = bool(re.search(r'@keyframes|transition:|animate-', content))
155
+ has_visual_interest = has_gradient or has_animation
156
+
157
+ if not has_visual_interest and not re.search(r'background:|bg-', content):
158
+ self.warnings.append(f"[Visceral] {filename}: Hero section lacks visual appeal. Consider gradients or subtle animations.")
159
+
160
+ # Behavioral: Instant feedback and usability
161
+ if 'onClick' in content or '@click' in content or 'onclick' in content:
162
+ has_feedback = re.search(r'transition|animate|hover:|focus:|disabled|loading|spinner', content, re.IGNORECASE)
163
+ has_state_change = re.search(r'setState|useState|disabled|loading', content)
164
+
165
+ if not has_feedback and not has_state_change:
166
+ self.warnings.append(f"[Behavioral] {filename}: Interactive elements lack immediate feedback. Add hover/focus/disabled states.")
167
+
168
+ # Reflective: Brand story, values, identity
169
+ has_reflective = bool(re.search(r'about|story|mission|values|why we|our journey|testimonials', content, re.IGNORECASE))
170
+ if has_long_text and not has_reflective:
171
+ self.warnings.append(f"[Reflective] {filename}: Long-form content without brand story/values. Add 'About' or 'Why We Exist' section.")
172
+
173
+ # --- 1.6 TRUST BUILDING (Enhanced) ---
174
+
175
+ # Security signals
176
+ if has_form:
177
+ security_signals = re.findall(r'ssl|secure|encrypt|lock|padlock|https', content, re.IGNORECASE)
178
+ if len(security_signals) == 0 and not re.search(r'checkout|payment', content, re.IGNORECASE):
179
+ self.warnings.append(f"[Trust] {filename}: Form without security indicators. Add 'SSL Secure' or lock icon.")
180
+
181
+ # Social proof elements
182
+ social_proof = re.findall(r'review|testimonial|rating|star|trust|trusted by|customer|logo', content, re.IGNORECASE)
183
+ if len(social_proof) > 0:
184
+ self.passed_count += 1
185
+ else:
186
+ if has_long_text:
187
+ self.warnings.append(f"[Trust] {filename}: No social proof detected. Consider adding testimonials, ratings, or 'Trusted by' logos.")
188
+
189
+ # Authority indicators
190
+ has_footer = bool(re.search(r'footer|<footer', content, re.IGNORECASE))
191
+ if has_footer:
192
+ authority = re.findall(r'certif|award|media|press|featured|as seen in', content, re.IGNORECASE)
193
+ if len(authority) == 0:
194
+ self.warnings.append(f"[Trust] {filename}: Footer lacks authority signals. Add certifications, awards, or media mentions.")
195
+
196
+ # --- 1.7 COGNITIVE LOAD MANAGEMENT ---
197
+
198
+ # Progressive disclosure
199
+ if complex_elements > 5:
200
+ has_progressive = re.search(r'step|wizard|stage|accordion|collapsible|tab|more\.\.\.|advanced|show more', content, re.IGNORECASE)
201
+ if not has_progressive:
202
+ self.warnings.append(f"[Cognitive Load] {filename}: Many form elements without progressive disclosure. Consider accordion, tabs, or 'Advanced' toggle.")
203
+
204
+ # Visual noise check
205
+ has_many_colors = len(re.findall(r'#[0-9a-fA-F]{3,6}|rgb|hsl', content)) > 15
206
+ has_many_borders = len(re.findall(r'border:|border-', content)) > 10
207
+ if has_many_colors and has_many_borders:
208
+ self.warnings.append(f"[Cognitive Load] {filename}: High visual noise detected. Many colors and borders increase cognitive load.")
209
+
210
+ # Familiar patterns
211
+ if has_form:
212
+ has_standard_labels = bool(re.search(r'<label|placeholder|aria-label', content, re.IGNORECASE))
213
+ if not has_standard_labels:
214
+ self.issues.append(f"[Cognitive Load] {filename}: Form inputs without labels. Use <label> for accessibility and clarity.")
215
+
216
+ # --- 1.8 PERSUASIVE DESIGN (Ethical) ---
217
+
218
+ # Smart defaults
219
+ if has_form:
220
+ has_defaults = bool(re.search(r'checked|selected|default|value=["\'].*["\']', content))
221
+ radio_inputs = len(re.findall(r'type=["\']radio', content, re.IGNORECASE))
222
+ if radio_inputs > 0 and not has_defaults:
223
+ self.warnings.append(f"[Persuasion] {filename}: Radio buttons without default selection. Pre-select recommended option.")
224
+
225
+ # Anchoring (showing original price)
226
+ if re.search(r'price|pricing|cost|\$\d+', content, re.IGNORECASE):
227
+ has_anchor = bool(re.search(r'original|was|strike|del|save \d+%', content, re.IGNORECASE))
228
+ if not has_anchor:
229
+ self.warnings.append(f"[Persuasion] {filename}: Prices without anchoring. Show original price to frame discount value.")
230
+
231
+ # Social proof live indicators
232
+ has_social = bool(re.search(r'join|subscriber|member|user', content, re.IGNORECASE))
233
+ if has_social:
234
+ has_count = bool(re.findall(r'\d+[+kmb]|\d+,\d+', content))
235
+ if not has_count:
236
+ self.warnings.append(f"[Persuasion] {filename}: Social proof without specific numbers. Use 'Join 10,000+' format.")
237
+
238
+ # Progress indicators
239
+ if has_form:
240
+ has_progress = bool(re.search(r'progress|step \d+|complete|%|bar', content, re.IGNORECASE))
241
+ if complex_elements > 5 and not has_progress:
242
+ self.warnings.append(f"[Persuasion] {filename}: Long form without progress indicator. Add progress bar or 'Step X of Y'.")
243
+
244
+ # --- 2. TYPOGRAPHY SYSTEM (Complete Coverage) ---
245
+
246
+ # 2.1 Font Pairing - Too many font families
247
+ font_families = set()
248
+ # Check for @font-face, Google Fonts, font-family declarations
249
+ font_faces = re.findall(r'@font-face\s*\{[^}]*family:\s*["\']?([^;"\'\s}]+)', content, re.IGNORECASE)
250
+ google_fonts = re.findall(r'fonts\.googleapis\.com[^"\']*family=([^"&]+)', content, re.IGNORECASE)
251
+ font_family_css = re.findall(r'font-family:\s*([^;]+)', content, re.IGNORECASE)
252
+
253
+ for font in font_faces: font_families.add(font.strip().lower())
254
+ for font in google_fonts:
255
+ for f in font.replace('+', ' ').split('|'):
256
+ font_families.add(f.split(':')[0].strip().lower())
257
+ for family in font_family_css:
258
+ # Extract first font from stack
259
+ first_font = family.split(',')[0].strip().strip('"\'')
260
+
261
+ if first_font.lower() not in {'sans-serif', 'serif', 'monospace', 'cursive', 'fantasy', 'system-ui', 'inherit', 'arial', 'georgia', 'times new roman', 'courier new', 'verdana', 'helvetica', 'tahoma'}:
262
+ font_families.add(first_font.lower())
263
+
264
+ if len(font_families) > 3:
265
+ self.issues.append(f"[Typography] {filename}: {len(font_families)} font families detected. Limit to 2-3 for cohesion.")
266
+
267
+ # 2.2 Line Length - Character-based width
268
+ if has_long_text and not re.search(r'max-w-(?:prose|[\[\\]?\d+ch[\]\\]?)|max-width:\s*\d+ch', content):
269
+ self.warnings.append(f"[Typography] {filename}: No line length constraint (45-75ch). Use max-w-prose or max-w-[65ch].")
270
+
271
+ # 2.3 Line Height - Proper leading ratios
272
+ # Check for text without proper line-height
273
+ text_elements = len(re.findall(r'<p|<span|<div.*text|<h[1-6]', content, re.IGNORECASE))
274
+ if text_elements > 0 and not re.search(r'leading-|line-height:', content):
275
+ self.warnings.append(f"[Typography] {filename}: Text elements found without line-height. Body: 1.4-1.6, Headings: 1.1-1.3")
276
+
277
+ # Check for heading-specific line height issues
278
+ if re.search(r'<h[1-6]|text-(?:xl|2xl|3xl|4xl|5xl|6xl)', content, re.IGNORECASE):
279
+ # Extract line-height values
280
+ line_heights = re.findall(r'(?:leading-|line-height:\s*)([\d.]+)', content)
281
+ for lh in line_heights:
282
+ if float(lh) > 1.5:
283
+ self.warnings.append(f"[Typography] {filename}: Heading has line-height {lh} (>1.3). Headings should be tighter (1.1-1.3).")
284
+
285
+ # 2.4 Letter Spacing (Tracking)
286
+ # Uppercase without tracking
287
+ if re.search(r'uppercase|text-transform:\s*uppercase', content, re.IGNORECASE):
288
+ if not re.search(r'tracking-|letter-spacing:', content):
289
+ self.warnings.append(f"[Typography] {filename}: Uppercase text without tracking. ALL CAPS needs +5-10% spacing.")
290
+
291
+ # Large text (display/hero) should have negative tracking
292
+ if re.search(r'text-(?:4xl|5xl|6xl|7xl|8xl|9xl)|font-size:\s*[3-9]\dpx', content):
293
+ if not re.search(r'tracking-tight|letter-spacing:\s*-[0-9]', content):
294
+ self.warnings.append(f"[Typography] {filename}: Large display text without tracking-tight. Big text needs -1% to -4% spacing.")
295
+
296
+ # 2.5 Weight and Emphasis - Contrast levels
297
+ # Check for adjacent weight levels (poor contrast)
298
+ weights = re.findall(r'font-weight:\s*(\d+)|font-(?:thin|extralight|light|normal|medium|semibold|bold|extrabold|black)|fw-(\d+)', content, re.IGNORECASE)
299
+ weight_values = []
300
+ for w in weights:
301
+ val = w[0] or w[1]
302
+ if val:
303
+ # Map named weights to numbers
304
+ weight_map = {'thin': '100', 'extralight': '200', 'light': '300', 'normal': '400', 'medium': '500', 'semibold': '600', 'bold': '700', 'extrabold': '800', 'black': '900'}
305
+ val = weight_map.get(val.lower(), val)
306
+ try:
307
+ weight_values.append(int(val))
308
+ except: pass
309
+
310
+ # Check for adjacent weights (400/500, 500/600, etc.)
311
+ for i in range(len(weight_values) - 1):
312
+ diff = abs(weight_values[i] - weight_values[i+1])
313
+ if diff == 100:
314
+ self.warnings.append(f"[Typography] {filename}: Adjacent font weights ({weight_values[i]}/{weight_values[i+1]}). Skip at least 2 levels for contrast.")
315
+
316
+ # Too many weight levels
317
+ unique_weights = set(weight_values)
318
+ if len(unique_weights) > 4:
319
+ self.warnings.append(f"[Typography] {filename}: {len(unique_weights)} font weights. Limit to 3-4 per page.")
320
+
321
+ # 2.6 Responsive Typography - Fluid sizing with clamp()
322
+ has_font_sizes = bool(re.search(r'font-size:|text-(?:xs|sm|base|lg|xl|2xl)', content))
323
+ if has_font_sizes and not re.search(r'clamp\(|responsive:', content):
324
+ self.warnings.append(f"[Typography] {filename}: Fixed font sizes without clamp(). Consider fluid typography: clamp(MIN, PREFERRED, MAX)")
325
+
326
+ # 2.7 Hierarchy - Heading structure
327
+ headings = re.findall(r'<(h[1-6])', content, re.IGNORECASE)
328
+ if headings:
329
+ # Check for skipped levels (h1 -> h3)
330
+ for i in range(len(headings) - 1):
331
+ curr = int(headings[i][1])
332
+ next_h = int(headings[i+1][1])
333
+ if next_h > curr + 1:
334
+ self.warnings.append(f"[Typography] {filename}: Skipped heading level (h{curr} -> h{next_h}). Maintain sequential hierarchy.")
335
+
336
+ # Check if h1 exists for main content
337
+ if 'h1' not in [h.lower() for h in headings] and has_long_text:
338
+ self.warnings.append(f"[Typography] {filename}: No h1 found. Each page should have one primary heading.")
339
+
340
+ # 2.8 Modular Scale - Consistent sizing
341
+ # Extract font-size values
342
+ font_sizes = re.findall(r'font-size:\s*(\d+(?:\.\d+)?)(px|rem|em)', content)
343
+ size_values = []
344
+ for size, unit in font_sizes:
345
+ if unit == 'rem' or unit == 'em':
346
+ size_values.append(float(size))
347
+ elif unit == 'px':
348
+ size_values.append(float(size) / 16) # Normalize to rem
349
+
350
+ if len(size_values) > 2:
351
+ # Check if sizes follow a modular scale roughly
352
+ sorted_sizes = sorted(set(size_values))
353
+ ratios = []
354
+ for i in range(1, len(sorted_sizes)):
355
+ if sorted_sizes[i-1] > 0:
356
+ ratios.append(sorted_sizes[i] / sorted_sizes[i-1])
357
+
358
+ # Common scale ratios: 1.067, 1.125, 1.2, 1.25, 1.333, 1.5, 1.618
359
+ common_ratios = {1.067, 1.125, 1.2, 1.25, 1.333, 1.5, 1.618}
360
+ for ratio in ratios[:3]: # Check first 3 ratios
361
+ if not any(abs(ratio - cr) < 0.05 for cr in common_ratios):
362
+ self.warnings.append(f"[Typography] {filename}: Font sizes may not follow modular scale (ratio: {ratio:.2f}). Consider consistent ratio like 1.25 (Major Third).")
363
+ break
364
+
365
+ # 2.9 Readability - Content chunking
366
+ # Check for very long paragraphs (>5 lines estimated)
367
+ paragraphs = re.findall(r'<p[^>]*>([^<]+)</p>', content, re.IGNORECASE)
368
+ for p in paragraphs:
369
+ word_count = len(p.split())
370
+ if word_count > 100: # ~5-6 lines
371
+ self.warnings.append(f"[Typography] {filename}: Long paragraph detected ({word_count} words). Break into 3-4 line chunks for readability.")
372
+
373
+ # Check for missing subheadings in long content
374
+ if len(paragraphs) > 5:
375
+ subheadings = len(re.findall(r'<h[2-6]', content, re.IGNORECASE))
376
+ if subheadings == 0:
377
+ self.warnings.append(f"[Typography] {filename}: Long content without subheadings. Add h2/h3 to break up text.")
378
+
379
+ # --- 3. VISUAL EFFECTS (visual-effects.md) ---
380
+
381
+ # Glassmorphism Check
382
+ if 'backdrop-filter' in content or 'blur(' in content:
383
+ if not re.search(r'background:\s*rgba|bg-opacity|bg-[a-z0-9]+\/\d+', content):
384
+ self.warnings.append(f"[Visual] {filename}: Blur used without semi-transparent background (Glassmorphism fail)")
385
+
386
+ # GPU Acceleration / Performance
387
+ if re.search(r'@keyframes|transition:', content):
388
+ expensive_props = re.findall(r'width|height|top|left|right|bottom|margin|padding', content)
389
+ if expensive_props:
390
+ self.warnings.append(f"[Performance] {filename}: Animating expensive properties ({', '.join(set(expensive_props))}). Use transform/opacity where possible.")
391
+
392
+ # Reduced Motion
393
+ if not re.search(r'prefers-reduced-motion', content):
394
+ self.warnings.append(f"[Accessibility] {filename}: Animations found without prefers-reduced-motion check")
395
+
396
+ # Natural Shadows
397
+ shadows = re.findall(r'box-shadow:\s*([^;]+)', content)
398
+ for shadow in shadows:
399
+ # Check if natural (Y > X) or multiple layers
400
+ if ',' not in shadow and not re.search(r'\d+px\s+[1-9]\d*px', shadow): # Simple heuristic for Y-offset
401
+ self.warnings.append(f"[Visual] {filename}: Simple/Unnatural shadow detected. Consider multiple layers or Y > X offset for realism.")
402
+
403
+ # --- 3.1 NEOMORPHISM CHECK ---
404
+ # Check for neomorphism patterns (dual shadows with opposite directions)
405
+ neo_shadows = re.findall(r'box-shadow:\s*([^;]+)', content)
406
+ for shadow in neo_shadows:
407
+ # Neomorphism has two shadows: positive offset + negative offset
408
+ if ',' in shadow and '-' in shadow:
409
+ # Check for inset pattern (pressed state)
410
+ if 'inset' in shadow:
411
+ self.warnings.append(f"[Visual] {filename}: Neomorphism inset detected. Ensure adequate contrast for accessibility.")
412
+
413
+ # --- 3.2 SHADOW HIERARCHY ---
414
+ # Count shadow levels to check for elevation consistency
415
+ shadow_count = len(shadows)
416
+ if shadow_count > 0:
417
+ # Check for shadow opacity levels (should indicate hierarchy)
418
+ opacities = re.findall(r'rgba?\([^)]+,\s*([\d.]+)\)', content)
419
+ shadow_opacities = [float(o) for o in opacities if float(o) < 0.5]
420
+ if shadow_count >= 3 and len(shadow_opacities) > 0:
421
+ # Check if there's variety in shadow opacities for different elevations
422
+ unique_opacities = len(set(shadow_opacities))
423
+ if unique_opacities < 2:
424
+ self.warnings.append(f"[Visual] {filename}: All shadows at same opacity level. Vary shadow intensity for elevation hierarchy.")
425
+
426
+ # --- 3.3 GRADIENT CHECKS ---
427
+ # Check for gradient usage
428
+ has_gradient = bool(re.search(r'gradient|linear-gradient|radial-gradient|conic-gradient', content))
429
+ if has_gradient:
430
+ # Warn about mesh/aurora gradients (can be overused)
431
+ gradient_count = len(re.findall(r'gradient', content, re.IGNORECASE))
432
+ if gradient_count > 5:
433
+ self.warnings.append(f"[Visual] {filename}: Many gradients detected ({gradient_count}). Ensure this serves purpose, not decoration.")
434
+ else:
435
+ # Check if hero section exists without gradient
436
+ if has_hero and not re.search(r'background:|bg-', content):
437
+ self.warnings.append(f"[Visual] {filename}: Hero section without visual interest. Consider gradient for depth.")
438
+
439
+ # --- 3.4 BORDER EFFECTS ---
440
+ # Check for gradient borders or animated borders
441
+ has_border = bool(re.search(r'border:|border-', content))
442
+ if has_border:
443
+ # Check for overly complex borders
444
+ border_count = len(re.findall(r'border:', content))
445
+ if border_count > 8:
446
+ self.warnings.append(f"[Visual] {filename}: Many border declarations ({border_count}). Simplify for cleaner look.")
447
+
448
+ # --- 3.5 GLOW EFFECTS ---
449
+ # Check for text-shadow or multiple box-shadow layers (glow effects)
450
+ text_shadows = re.findall(r'text-shadow:', content)
451
+ for ts in text_shadows:
452
+ # Multiple text-shadow layers indicate glow
453
+ if ',' in ts:
454
+ self.warnings.append(f"[Visual] {filename}: Text glow effect detected. Ensure readability is maintained.")
455
+
456
+ # Check for box-shadow glow (multiple layers with 0 offset)
457
+ glow_shadows = re.findall(r'box-shadow:\s*[^;]*0\s+0\s+', content)
458
+ if len(glow_shadows) > 2:
459
+ self.warnings.append(f"[Visual] {filename}: Multiple glow effects detected. Use sparingly for emphasis only.")
460
+
461
+ # --- 3.6 OVERLAY TECHNIQUES ---
462
+ # Check for image overlays (for readability)
463
+ has_images = bool(re.search(r'<img|background-image:|bg-\[url', content))
464
+ if has_images and has_long_text:
465
+ has_overlay = bool(re.search(r'overlay|rgba\(0|gradient.*transparent|::after|::before', content))
466
+ if not has_overlay:
467
+ self.warnings.append(f"[Visual] {filename}: Text over image without overlay. Add gradient overlay for readability.")
468
+
469
+ # --- 3.7 PERFORMANCE: will-change ---
470
+ # Check for will-change usage
471
+ if re.search(r'will-change:', content):
472
+ will_change_props = re.findall(r'will-change:\s*([^;]+)', content)
473
+ for prop in will_change_props:
474
+ prop = prop.strip().lower()
475
+ if prop in ['width', 'height', 'top', 'left', 'right', 'bottom', 'margin', 'padding']:
476
+ self.issues.append(f"[Performance] {filename}: will-change on '{prop}' (layout property). Use only for transform/opacity.")
477
+
478
+ # Check for excessive will-change usage
479
+ will_change_count = len(re.findall(r'will-change:', content))
480
+ if will_change_count > 3:
481
+ self.warnings.append(f"[Performance] {filename}: Many will-change declarations ({will_change_count}). Use sparingly, only for heavy animations.")
482
+
483
+ # --- 3.8 EFFECT SELECTION ---
484
+ # Check for effect overuse (too many visual effects)
485
+ effect_count = (
486
+ (1 if has_gradient else 0) +
487
+ shadow_count +
488
+ len(re.findall(r'backdrop-filter|blur\(', content)) +
489
+ len(re.findall(r'text-shadow:', content))
490
+ )
491
+ if effect_count > 10:
492
+ self.warnings.append(f"[Visual] {filename}: Many visual effects ({effect_count}). Ensure effects serve purpose, not decoration.")
493
+
494
+ # Check for static/flat design (no depth)
495
+ if has_long_text and effect_count == 0:
496
+ self.warnings.append(f"[Visual] {filename}: Flat design with no depth. Consider shadows or subtle gradients for hierarchy.")
497
+
498
+ # --- 4. COLOR SYSTEM (color-system.md) ---
499
+
500
+ # 4.1 PURPLE BAN - Critical check from color-system.md
501
+ purple_hexes = ['#8B5CF6', '#A855F7', '#9333EA', '#7C3AED', '#6D28D9',
502
+ '#8B5CF6', '#A78BFA', '#C4B5FD', '#DDD6FE', '#EDE9FE',
503
+ '#8b5cf6', '#a855f7', '#9333ea', '#7c3aed', '#6d28d9',
504
+ 'purple', 'violet', 'fuchsia', 'magenta', 'lavender']
505
+ for purple in purple_hexes:
506
+ if purple.lower() in content.lower():
507
+ self.issues.append(f"[Color] {filename}: PURPLE DETECTED ('{purple}'). Banned by Maestro rules. Use Teal/Cyan/Emerald instead.")
508
+ break
509
+
510
+ # 4.2 60-30-10 Rule check
511
+ # Count color usage to estimate ratio
512
+ color_hex_count = len(re.findall(r'#[0-9a-fA-F]{3,6}', content))
513
+ hsl_count = len(re.findall(r'hsl\(', content))
514
+ total_colors = color_hex_count + hsl_count
515
+ if total_colors > 3:
516
+ # Check for dominant colors (should be ~60%)
517
+ bg_declarations = re.findall(r'(?:background|bg-|bg\[)([^;}\s]+)', content)
518
+ text_declarations = re.findall(r'(?:color|text-)([^;}\s]+)', content)
519
+ if len(bg_declarations) > 0 and len(text_declarations) > 0:
520
+ # Just warn if too many distinct colors
521
+ unique_hexes = set(re.findall(r'#[0-9a-fA-F]{6}', content))
522
+ if len(unique_hexes) > 5:
523
+ self.warnings.append(f"[Color] {filename}: {len(unique_hexes)} distinct colors. Consider 60-30-10 rule: dominant (60%), secondary (30%), accent (10%).")
524
+
525
+ # 4.3 Color Scheme Pattern Detection
526
+ # Detect monochromatic (same hue, different lightness)
527
+ hsl_matches = re.findall(r'hsl\((\d+),\s*\d+%,\s*\d+%\)', content)
528
+ if len(hsl_matches) >= 3:
529
+ hues = [int(h) for h in hsl_matches]
530
+ hue_range = max(hues) - min(hues)
531
+ if hue_range < 10:
532
+ self.warnings.append(f"[Color] {filename}: Monochromatic palette detected (hue variance: {hue_range}deg). Ensure adequate contrast.")
533
+
534
+ # 4.4 Dark Mode Compliance
535
+ # Check for pure black (#000000) or pure white (#FFFFFF) text (forbidden)
536
+ if re.search(r'color:\s*#000000|#000\b', content):
537
+ self.warnings.append(f"[Color] {filename}: Pure black (#000000) detected. Use #1a1a1a or darker grays for better dark mode.")
538
+ if re.search(r'background:\s*#ffffff|#fff\b', content) and re.search(r'dark:\s*|dark:', content):
539
+ self.warnings.append(f"[Color] {filename}: Pure white background in dark mode context. Use slight off-white (#f9fafb) for reduced eye strain.")
540
+
541
+ # 4.5 WCAG Contrast Pattern Check
542
+ # Look for potential low-contrast combinations
543
+ light_bg_light_text = bool(re.search(r'bg-(?:gray|slate|zinc)-50|bg-white.*text-(?:gray|slate)-[12]', content))
544
+ dark_bg_dark_text = bool(re.search(r'bg-(?:gray|slate|zinct)-9|bg-black.*text-(?:gray|slate)-[89]', content))
545
+ if light_bg_light_text or dark_bg_dark_text:
546
+ self.warnings.append(f"[Color] {filename}: Possible low-contrast combination detected. Verify WCAG AA (4.5:1 for text).")
547
+
548
+ # 4.6 Color Psychology Context Check
549
+ # Warn if blue used for food/restaurant context
550
+ has_blue = bool(re.search(r'bg-blue|text-blue|from-blue|#[0-9a-fA-F]*00[0-9A-Fa-f]{2}|#[0-9a-fA-F]*1[0-9A-Fa-f]{2}', content))
551
+ has_food_context = bool(re.search(r'restaurant|food|cooking|recipe|menu|dish|meal', content, re.IGNORECASE))
552
+ if has_blue and has_food_context:
553
+ self.warnings.append(f"[Color] {filename}: Blue color in food context. Blue suppresses appetite; consider warm colors (red, orange, yellow).")
554
+
555
+ # 4.7 HSL-Based Palette Detection
556
+ # Check if using HSL for palette (recommended in color-system.md)
557
+ has_color_vars = bool(re.search(r'--color-|color-|primary-|secondary-', content))
558
+ if has_color_vars and not re.search(r'hsl\(', content):
559
+ self.warnings.append(f"[Color] {filename}: Color variables without HSL. Consider HSL for easier palette adjustment (Hue, Saturation, Lightness).")
560
+
561
+ # --- 5. ANIMATION GUIDE (animation-guide.md) ---
562
+
563
+ # 5.1 Duration Appropriateness
564
+ # Check for excessively long or short animations
565
+ durations = re.findall(r'(?:duration|animation-duration|transition-duration):\s*([\d.]+)(s|ms)', content)
566
+ for duration, unit in durations:
567
+ duration_ms = float(duration) * (1000 if unit == 's' else 1)
568
+ if duration_ms < 50:
569
+ self.warnings.append(f"[Animation] {filename}: Very fast animation ({duration}{unit}). Minimum 50ms for visibility.")
570
+ elif duration_ms > 1000 and 'transition' in content.lower():
571
+ self.warnings.append(f"[Animation] {filename}: Long transition ({duration}{unit}). Transitions should be 100-300ms for responsiveness.")
572
+
573
+ # 5.2 Easing Function Correctness
574
+ # Check for incorrect easing patterns
575
+ if re.search(r'ease-in\s+.*entry|fade-in.*ease-in', content):
576
+ self.warnings.append(f"[Animation] {filename}: Entry animation with ease-in. Entry should use ease-out for snappy feel.")
577
+ if re.search(r'ease-out\s+.*exit|fade-out.*ease-out', content):
578
+ self.warnings.append(f"[Animation] {filename}: Exit animation with ease-out. Exit should use ease-in for natural feel.")
579
+
580
+ # 5.3 Micro-interaction Feedback Patterns
581
+ # Check for interactive elements without hover/focus states
582
+ interactive_elements = len(re.findall(r'<button|<a\s+href|onClick|@click', content))
583
+ has_hover_focus = bool(re.search(r'hover:|focus:|:hover|:focus', content))
584
+ if interactive_elements > 2 and not has_hover_focus:
585
+ self.warnings.append(f"[Animation] {filename}: Interactive elements without hover/focus states. Add micro-interactions for feedback.")
586
+
587
+ # 5.4 Loading State Indicators
588
+ # Check for loading patterns
589
+ has_async = bool(re.search(r'async|await|fetch|axios|loading|isLoading', content))
590
+ has_loading_indicator = bool(re.search(r'skeleton|spinner|progress|loading|<circle.*animate', content))
591
+ if has_async and not has_loading_indicator:
592
+ self.warnings.append(f"[Animation] {filename}: Async operations without loading indicator. Add skeleton or spinner for perceived performance.")
593
+
594
+ # 5.5 Page Transition Patterns
595
+ # Check for page/view transitions
596
+ has_routing = bool(re.search(r'router|navigate|Link.*to|useHistory', content))
597
+ has_page_transition = bool(re.search(r'AnimatePresence|motion\.|transition.*page|fade.*route', content))
598
+ if has_routing and not has_page_transition:
599
+ self.warnings.append(f"[Animation] {filename}: Routing detected without page transitions. Consider fade/slide for context continuity.")
600
+
601
+ # 5.6 Scroll Animation Performance
602
+ # Check for scroll-driven animations
603
+ has_scroll_anim = bool(re.search(r'onScroll|scroll.*trigger|IntersectionObserver', content))
604
+ if has_scroll_anim:
605
+ # Check if using expensive properties in scroll handlers
606
+ if re.search(r'onScroll.*[^\w](width|height|top|left)', content):
607
+ self.issues.append(f"[Animation] {filename}: Scroll handler animating layout properties. Use transform/opacity for 60fps.")
608
+
609
+ # --- 6. MOTION GRAPHICS (motion-graphics.md) ---
610
+
611
+ # 6.1 Lottie Animation Checks
612
+ has_lottie = bool(re.search(r'lottie|Lottie|@lottie-react', content))
613
+ if has_lottie:
614
+ # Check for reduced motion fallback
615
+ has_lottie_fallback = bool(re.search(r'prefers-reduced-motion.*lottie|lottie.*isPaused|lottie.*stop', content))
616
+ if not has_lottie_fallback:
617
+ self.warnings.append(f"[Motion] {filename}: Lottie animation without reduced-motion fallback. Add pause/stop for accessibility.")
618
+
619
+ # 6.2 GSAP Memory Leak Risks
620
+ has_gsap = bool(re.search(r'gsap|ScrollTrigger|from\(.*gsap', content))
621
+ if has_gsap:
622
+ # Check for cleanup patterns
623
+ has_gsap_cleanup = bool(re.search(r'kill\(|revert\(|useEffect.*return.*gsap', content))
624
+ if not has_gsap_cleanup:
625
+ self.issues.append(f"[Motion] {filename}: GSAP animation without cleanup (kill/revert). Memory leak risk on unmount.")
626
+
627
+ # 6.3 SVG Animation Performance
628
+ svg_animations = re.findall(r'<animate|<animateTransform|stroke-dasharray|stroke-dashoffset', content)
629
+ if len(svg_animations) > 3:
630
+ self.warnings.append(f"[Motion] {filename}: Multiple SVG animations detected. Ensure stroke-dashoffset is used sparingly for mobile performance.")
631
+
632
+ # 6.4 3D Transform Performance
633
+ has_3d_transform = bool(re.search(r'transform3d|perspective\(|rotate3d|translate3d', content))
634
+ if has_3d_transform:
635
+ # Check for perspective on parent
636
+ has_perspective_parent = bool(re.search(r'perspective:\s*\d+px|perspective\s*\(', content))
637
+ if not has_perspective_parent:
638
+ self.warnings.append(f"[Motion] {filename}: 3D transform without perspective parent. Add perspective: 1000px for realistic depth.")
639
+
640
+ # Warn about mobile performance
641
+ self.warnings.append(f"[Motion] {filename}: 3D transforms detected. Test on mobile; can impact performance on low-end devices.")
642
+
643
+ # 6.5 Particle Effect Warnings
644
+ # Check for canvas/WebGL particle systems
645
+ has_particles = bool(re.search(r'particle|canvas.*loop|requestAnimationFrame.*draw|Three\.js', content))
646
+ if has_particles:
647
+ self.warnings.append(f"[Motion] {filename}: Particle effects detected. Ensure fallback or reduced-quality option for mobile devices.")
648
+
649
+ # 6.6 Scroll-Driven Animation Performance
650
+ has_scroll_driven = bool(re.search(r'IntersectionObserver.*animate|scroll.*progress|view-timeline', content))
651
+ if has_scroll_driven:
652
+ # Check for throttling/debouncing
653
+ has_throttle = bool(re.search(r'throttle|debounce|requestAnimationFrame', content))
654
+ if not has_throttle:
655
+ self.issues.append(f"[Motion] {filename}: Scroll-driven animation without throttling. Add requestAnimationFrame for 60fps.")
656
+
657
+ # 6.7 Motion Decision Tree - Context Check
658
+ # Check if animation serves purpose (not just decoration)
659
+ total_animations = (
660
+ len(re.findall(r'@keyframes|transition:|animate-', content)) +
661
+ (1 if has_lottie else 0) +
662
+ (1 if has_gsap else 0)
663
+ )
664
+ if total_animations > 5:
665
+ # Check if animations are functional
666
+ functional_animations = len(re.findall(r'hover:|focus:|disabled|loading|error|success', content))
667
+ if functional_animations < total_animations / 2:
668
+ self.warnings.append(f"[Motion] {filename}: Many animations ({total_animations}). Ensure majority serve functional purpose (feedback, guidance), not decoration.")
669
+
670
+ # --- 7. ACCESSIBILITY ---
671
+ if re.search(r'<img(?![^>]*alt=)[^>]*>', content):
672
+ self.issues.append(f"[Accessibility] {filename}: Missing img alt text")
673
+
674
+ def audit_directory(self, directory: str) -> None:
675
+ extensions = {'.tsx', '.jsx', '.html', '.vue', '.svelte', '.css'}
676
+ for root, dirs, files in os.walk(directory):
677
+ dirs[:] = [d for d in dirs if d not in {'node_modules', '.git', 'dist', 'build', '.next'}]
678
+ for file in files:
679
+ if Path(file).suffix in extensions:
680
+ self.audit_file(os.path.join(root, file))
681
+
682
+ def get_report(self):
683
+ return {
684
+ "files_checked": self.files_checked,
685
+ "issues": self.issues,
686
+ "warnings": self.warnings,
687
+ "passed_checks": self.passed_count,
688
+ "compliant": len(self.issues) == 0
689
+ }
690
+
691
+ def main():
692
+ if len(sys.argv) < 2: sys.exit(1)
693
+
694
+ path = sys.argv[1]
695
+ is_json = "--json" in sys.argv
696
+
697
+ auditor = UXAuditor()
698
+ if os.path.isfile(path): auditor.audit_file(path)
699
+ else: auditor.audit_directory(path)
700
+
701
+ report = auditor.get_report()
702
+
703
+ if is_json:
704
+ print(json.dumps(report))
705
+ else:
706
+ # Use ASCII-safe output for Windows console compatibility
707
+ print(f"\n[UX AUDIT] {report['files_checked']} files checked")
708
+ print("-" * 50)
709
+ if report['issues']:
710
+ print(f"[!] ISSUES ({len(report['issues'])}):")
711
+ for i in report['issues'][:10]: print(f" - {i}")
712
+ if report['warnings']:
713
+ print(f"[*] WARNINGS ({len(report['warnings'])}):")
714
+ for w in report['warnings'][:15]: print(f" - {w}")
715
+ print(f"[+] PASSED CHECKS: {report['passed_checks']}")
716
+ status = "PASS" if report['compliant'] else "FAIL"
717
+ print(f"STATUS: {status}")
718
+
719
+ sys.exit(0 if report['compliant'] else 1)
720
+
721
+ if __name__ == "__main__":
722
+ main()