@tyvm/knowhow 0.0.33 → 0.0.35

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 (504) hide show
  1. package/autodoc/plugins/downloader/downloader.mdx +2 -2
  2. package/benchmarks/.dockerignore +7 -0
  3. package/benchmarks/README.md +166 -0
  4. package/benchmarks/docker/Dockerfile +68 -0
  5. package/benchmarks/example-config.yml +27 -0
  6. package/benchmarks/jest.config.js +13 -0
  7. package/benchmarks/package-lock.json +4297 -0
  8. package/benchmarks/package.json +39 -0
  9. package/benchmarks/results/4542435/2025-08-05/lms/lms-openai-gpt-oss-20b.json +2814 -0
  10. package/benchmarks/results/4542435/2025-08-05/lms/lms-qwen-qwen3-30b-a3b-2507.json +2014 -0
  11. package/benchmarks/results/4fb9125/2025-08-07/anthropic/anthropic-claude-sonnet-4-20250514.json +3121 -0
  12. package/benchmarks/results/5766aee/2025-08-02/lms-qwen/qwen3-coder-30b.json +98 -0
  13. package/benchmarks/results/6d73808/2025-08-07/openai/openai-gpt-5.json +3256 -0
  14. package/benchmarks/results/77bf0a6/2025-08-02/lms-qwen/qwen3-30b-a3b-2507.json +4298 -0
  15. package/benchmarks/results/8c0d445/2025-08-03/anthropic/anthropic-claude-sonnet-4-20250514.json +3031 -0
  16. package/benchmarks/results/8c0d445/2025-08-03/openai/openai-gpt-4.1-2025-04-14.json +2990 -0
  17. package/benchmarks/results/ac6b2ab/2025-08-03/anthropic/anthropic-claude-sonnet-4-20250514.json +3256 -0
  18. package/benchmarks/results/ac6b2ab/2025-08-03/lms/lms-qwen-qwen3-coder-30b.json +3007 -0
  19. package/benchmarks/results/ac6b2ab/2025-08-03/openai/openai-gpt-4.1-2025-04-14.json +3256 -0
  20. package/benchmarks/results/ac6b2ab/2025-08-03/openai/openai-gpt-4.1-mini-2025-04-14.json +3036 -0
  21. package/benchmarks/results/ac6b2ab/2025-08-03/openai/openai-gpt-4.1-nano-2025-04-14.json +3280 -0
  22. package/benchmarks/results/adff675/2025-08-04/lms/lms-qwen-qwen3-30b-a3b-2507.json +1920 -0
  23. package/benchmarks/results/adff675/2025-08-04/lms/lms-qwen-qwen3-coder-30b.json +3281 -0
  24. package/benchmarks/results/b502ed9/2025-08-03/lms-qwen/qwen3-coder-30b.json +2896 -0
  25. package/benchmarks/results/d1a8129/2025-08-03/lms/lms-qwen-qwen3-coder-30b.json +3011 -0
  26. package/benchmarks/results/e60471c/2025-08-03/lms/qwen3-30b-a3b-2507.json +3003 -0
  27. package/benchmarks/scripts/build-and-run.sh +47 -0
  28. package/benchmarks/scripts/clone-exercism.sh +92 -0
  29. package/benchmarks/scripts/validate.sh +48 -0
  30. package/benchmarks/src/__tests__/runner.test.ts +27 -0
  31. package/benchmarks/src/cli.ts +90 -0
  32. package/benchmarks/src/evaluators/EvaluatorRegistry.ts +64 -0
  33. package/benchmarks/src/evaluators/JavaScriptEvaluator.ts +183 -0
  34. package/benchmarks/src/evaluators/index.ts +3 -0
  35. package/benchmarks/src/evaluators/types.ts +22 -0
  36. package/benchmarks/src/index.ts +3 -0
  37. package/benchmarks/src/providers.ts +13 -0
  38. package/benchmarks/src/runner.ts +824 -0
  39. package/benchmarks/src/types.ts +63 -0
  40. package/benchmarks/tsconfig.json +19 -0
  41. package/jest.config.js +2 -1
  42. package/leaderboard/README.md +148 -0
  43. package/leaderboard/app/api/benchmark-data/route.ts +131 -0
  44. package/leaderboard/app/api/benchmark-detail/route.ts +172 -0
  45. package/leaderboard/app/details/[model]/[provider]/[language]/page.tsx +501 -0
  46. package/leaderboard/app/exercise/[model]/[provider]/[language]/[exercise]/page.tsx +375 -0
  47. package/leaderboard/app/globals.css +27 -0
  48. package/leaderboard/app/layout.tsx +21 -0
  49. package/leaderboard/app/page.tsx +170 -0
  50. package/leaderboard/components/LeaderboardTable.tsx +168 -0
  51. package/leaderboard/components/PerformanceChart.tsx +109 -0
  52. package/leaderboard/next-env.d.ts +5 -0
  53. package/leaderboard/next.config.js +4 -0
  54. package/leaderboard/package-lock.json +6363 -0
  55. package/leaderboard/package.json +28 -0
  56. package/leaderboard/postcss.config.js +6 -0
  57. package/leaderboard/tailwind.config.js +17 -0
  58. package/leaderboard/tsconfig.json +28 -0
  59. package/leaderboard/types/benchmark.ts +67 -0
  60. package/leaderboard/utils/dataProcessor.ts +33 -0
  61. package/package.json +2 -1
  62. package/src/agents/base/base.ts +182 -24
  63. package/src/agents/base/prompt.ts +28 -0
  64. package/src/agents/index.ts +3 -0
  65. package/src/agents/patcher/patcher.ts +6 -4
  66. package/src/agents/setup/setup.ts +56 -0
  67. package/src/agents/tools/agentCall.ts +6 -2
  68. package/src/agents/tools/aiClient.ts +74 -8
  69. package/src/agents/tools/execCommand.ts +13 -14
  70. package/src/agents/tools/executeScript/README.md +16 -0
  71. package/src/agents/tools/index.ts +2 -0
  72. package/src/agents/tools/list.ts +73 -16
  73. package/src/agents/tools/startAgentTask.ts +109 -0
  74. package/src/agents/tools/textSearch.ts +1 -1
  75. package/src/agents/tools/visionTool.ts +31 -2
  76. package/src/agents/tools/ycmd/client.ts +608 -0
  77. package/src/agents/tools/ycmd/definitions.ts +294 -0
  78. package/src/agents/tools/ycmd/detection.ts +211 -0
  79. package/src/agents/tools/ycmd/index.ts +11 -0
  80. package/src/agents/tools/ycmd/installer.ts +251 -0
  81. package/src/agents/tools/ycmd/server.ts +535 -0
  82. package/src/agents/tools/ycmd/serverManager.ts +316 -0
  83. package/src/agents/tools/ycmd/tools/completion.ts +113 -0
  84. package/src/agents/tools/ycmd/tools/diagnostics.ts +155 -0
  85. package/src/agents/tools/ycmd/tools/getLocations.ts +173 -0
  86. package/src/agents/tools/ycmd/tools/goto.ts +169 -0
  87. package/src/agents/tools/ycmd/tools/refactor.ts +204 -0
  88. package/src/agents/tools/ycmd/tools/signature.ts +174 -0
  89. package/src/agents/tools/ycmd/tools/start.ts +95 -0
  90. package/src/agents/tools/ycmd/utils/pathUtils.ts +59 -0
  91. package/src/ai.ts +15 -0
  92. package/src/chat/CliChatService.ts +277 -0
  93. package/src/chat/modules/AgentModule.ts +985 -0
  94. package/src/chat/modules/AskModule.ts +98 -0
  95. package/src/chat/modules/BaseChatModule.ts +66 -0
  96. package/src/chat/modules/InternalChatModule.ts +174 -0
  97. package/src/chat/modules/SearchModule.ts +166 -0
  98. package/src/chat/modules/SetupModule.ts +185 -0
  99. package/src/chat/modules/SystemModule.ts +120 -0
  100. package/src/chat/modules/VoiceModule.ts +70 -0
  101. package/src/chat/modules/index.js +5 -0
  102. package/src/chat/types.ts +97 -0
  103. package/src/chat.ts +9 -1
  104. package/src/chat2.ts +62 -0
  105. package/src/cli.ts +264 -35
  106. package/src/clients/anthropic.ts +14 -7
  107. package/src/clients/gemini.ts +15 -7
  108. package/src/clients/http.ts +17 -7
  109. package/src/clients/index.ts +117 -4
  110. package/src/clients/knowhow.ts +7 -2
  111. package/src/clients/knowhowMcp.ts +118 -0
  112. package/src/clients/openai.ts +32 -8
  113. package/src/clients/types.ts +1 -0
  114. package/src/clients/xai.ts +17 -5
  115. package/src/config.ts +30 -5
  116. package/src/conversion.ts +4 -1
  117. package/src/login.ts +26 -9
  118. package/src/microphone.ts +0 -1
  119. package/src/plugins/downloader/downloader.ts +191 -49
  120. package/src/plugins/downloader/plugin.ts +3 -1
  121. package/src/plugins/plugins.ts +3 -0
  122. package/src/processors/CustomVariables.ts +425 -0
  123. package/src/processors/HarmonyToolProcessor.ts +264 -0
  124. package/src/processors/XmlToolCallProcessor.ts +533 -0
  125. package/src/processors/index.ts +3 -0
  126. package/src/prompts/KnowhowConfigExamples.ts +376 -0
  127. package/src/services/KnowhowClient.ts +49 -3
  128. package/src/services/Mcp.ts +42 -3
  129. package/src/services/McpServer.ts +14 -4
  130. package/src/services/McpWebsocketTransport.ts +21 -7
  131. package/src/services/MessageProcessor.ts +10 -5
  132. package/src/services/index.ts +5 -0
  133. package/src/services/script-execution/ScriptExecutor.ts +34 -1
  134. package/src/services/types.ts +17 -14
  135. package/src/types.ts +17 -0
  136. package/src/utils/index.ts +138 -0
  137. package/tests/XmlToolCallProcessor.test.ts +468 -0
  138. package/tests/manual/ycmd/debug_diagnostics_test.ts +127 -0
  139. package/tests/manual/ycmd/fixtures/debug_diagnostics.ts +26 -0
  140. package/tests/manual/ycmd/fixtures/file_change_test.ts +17 -0
  141. package/tests/manual/ycmd/minimal_advanced_test.ts +108 -0
  142. package/tests/manual/ycmd/simple_diagnostics_test.ts +61 -0
  143. package/tests/manual/ycmd/simple_test.ts +74 -0
  144. package/tests/manual/ycmd/test-typescript-sample.ts +34 -0
  145. package/tests/manual/ycmd/test_advanced_features.ts +407 -0
  146. package/tests/manual/ycmd/test_advanced_with_tools.ts +320 -0
  147. package/tests/manual/ycmd/test_comprehensive_typescript.ts +179 -0
  148. package/tests/manual/ycmd/test_diagnostics_file_changes.ts +249 -0
  149. package/tests/manual/ycmd/test_diagnostics_fix.ts +99 -0
  150. package/tests/manual/ycmd/test_diagnostics_simple.ts +100 -0
  151. package/tests/manual/ycmd/test_diagnostics_timing.ts +120 -0
  152. package/tests/manual/ycmd/test_discover_commands.ts +310 -0
  153. package/tests/manual/ycmd/test_endpoints.ts +115 -0
  154. package/tests/manual/ycmd/test_final_comprehensive.ts +218 -0
  155. package/tests/manual/ycmd/test_final_validation.ts +150 -0
  156. package/tests/manual/ycmd/test_implementation.js +42 -0
  157. package/tests/manual/ycmd/test_individual_ycmd_tool.ts +39 -0
  158. package/tests/manual/ycmd/test_server_manager.ts +52 -0
  159. package/tests/manual/ycmd/test_simple_debug.ts +86 -0
  160. package/tests/manual/ycmd/test_tsserver_workflow.js +83 -0
  161. package/tests/manual/ycmd/test_tsserver_workflow.ts +122 -0
  162. package/tests/manual/ycmd/test_typescript_simple.ts +48 -0
  163. package/tests/manual/ycmd/test_typescript_ycmd.ts +105 -0
  164. package/tests/manual/ycmd/test_workspace_config.ts +90 -0
  165. package/tests/manual/ycmd/test_ycmd_auto_start.ts +137 -0
  166. package/tests/manual/ycmd/test_ycmd_comprehensive.ts +73 -0
  167. package/tests/manual/ycmd/test_ycmd_connection.py +10 -0
  168. package/tests/manual/ycmd/test_ycmd_direct.ts +142 -0
  169. package/tests/manual/ycmd/test_ycmd_experiment.ts +48 -0
  170. package/tests/manual/ycmd/test_ycmd_final.ts +200 -0
  171. package/tests/manual/ycmd/test_ycmd_fixed.py +18 -0
  172. package/tests/manual/ycmd/test_ycmd_integration.ts +112 -0
  173. package/tests/manual/ycmd/test_ycmd_simple.ts +45 -0
  174. package/tests/manual/ycmd/test_ycmd_usage.py +27 -0
  175. package/tests/manual/ycmd/working_simple_test.ts +134 -0
  176. package/ts_build/src/agents/base/base.d.ts +15 -1
  177. package/ts_build/src/agents/base/base.js +121 -20
  178. package/ts_build/src/agents/base/base.js.map +1 -1
  179. package/ts_build/src/agents/base/prompt.d.ts +1 -1
  180. package/ts_build/src/agents/base/prompt.js +28 -0
  181. package/ts_build/src/agents/base/prompt.js.map +1 -1
  182. package/ts_build/src/agents/index.d.ts +2 -0
  183. package/ts_build/src/agents/index.js +2 -0
  184. package/ts_build/src/agents/index.js.map +1 -1
  185. package/ts_build/src/agents/patcher/patcher.js +6 -3
  186. package/ts_build/src/agents/patcher/patcher.js.map +1 -1
  187. package/ts_build/src/agents/setup/setup.d.ts +8 -0
  188. package/ts_build/src/agents/setup/setup.js +59 -0
  189. package/ts_build/src/agents/setup/setup.js.map +1 -0
  190. package/ts_build/src/agents/tools/agentCall.js +5 -2
  191. package/ts_build/src/agents/tools/agentCall.js.map +1 -1
  192. package/ts_build/src/agents/tools/aiClient.d.ts +6 -5
  193. package/ts_build/src/agents/tools/aiClient.js +37 -6
  194. package/ts_build/src/agents/tools/aiClient.js.map +1 -1
  195. package/ts_build/src/agents/tools/execCommand.d.ts +2 -2
  196. package/ts_build/src/agents/tools/execCommand.js +5 -6
  197. package/ts_build/src/agents/tools/execCommand.js.map +1 -1
  198. package/ts_build/src/agents/tools/executeScript/index.d.ts +1 -1
  199. package/ts_build/src/agents/tools/index.d.ts +2 -0
  200. package/ts_build/src/agents/tools/index.js +2 -0
  201. package/ts_build/src/agents/tools/index.js.map +1 -1
  202. package/ts_build/src/agents/tools/list.js +66 -16
  203. package/ts_build/src/agents/tools/list.js.map +1 -1
  204. package/ts_build/src/agents/tools/startAgentTask.d.ts +13 -0
  205. package/ts_build/src/agents/tools/startAgentTask.js +74 -0
  206. package/ts_build/src/agents/tools/startAgentTask.js.map +1 -0
  207. package/ts_build/src/agents/tools/startChatTask.d.ts +13 -0
  208. package/ts_build/src/agents/tools/startChatTask.js +73 -0
  209. package/ts_build/src/agents/tools/startChatTask.js.map +1 -0
  210. package/ts_build/src/agents/tools/textSearch.js +1 -1
  211. package/ts_build/src/agents/tools/textSearch.js.map +1 -1
  212. package/ts_build/src/agents/tools/visionTool.d.ts +1 -1
  213. package/ts_build/src/agents/tools/visionTool.js +23 -3
  214. package/ts_build/src/agents/tools/visionTool.js.map +1 -1
  215. package/ts_build/src/agents/tools/ycmd/client.d.ts +93 -0
  216. package/ts_build/src/agents/tools/ycmd/client.js +355 -0
  217. package/ts_build/src/agents/tools/ycmd/client.js.map +1 -0
  218. package/ts_build/src/agents/tools/ycmd/definitions.d.ts +345 -0
  219. package/ts_build/src/agents/tools/ycmd/definitions.js +298 -0
  220. package/ts_build/src/agents/tools/ycmd/definitions.js.map +1 -0
  221. package/ts_build/src/agents/tools/ycmd/detection.d.ts +11 -0
  222. package/ts_build/src/agents/tools/ycmd/detection.js +175 -0
  223. package/ts_build/src/agents/tools/ycmd/detection.js.map +1 -0
  224. package/ts_build/src/agents/tools/ycmd/index.d.ts +8 -0
  225. package/ts_build/src/agents/tools/ycmd/index.js +20 -0
  226. package/ts_build/src/agents/tools/ycmd/index.js.map +1 -0
  227. package/ts_build/src/agents/tools/ycmd/installer.d.ts +19 -0
  228. package/ts_build/src/agents/tools/ycmd/installer.js +196 -0
  229. package/ts_build/src/agents/tools/ycmd/installer.js.map +1 -0
  230. package/ts_build/src/agents/tools/ycmd/server.d.ts +35 -0
  231. package/ts_build/src/agents/tools/ycmd/server.js +363 -0
  232. package/ts_build/src/agents/tools/ycmd/server.js.map +1 -0
  233. package/ts_build/src/agents/tools/ycmd/serverManager.d.ts +39 -0
  234. package/ts_build/src/agents/tools/ycmd/serverManager.js +210 -0
  235. package/ts_build/src/agents/tools/ycmd/serverManager.js.map +1 -0
  236. package/ts_build/src/agents/tools/ycmd/tools/completion.d.ts +22 -0
  237. package/ts_build/src/agents/tools/ycmd/tools/completion.js +72 -0
  238. package/ts_build/src/agents/tools/ycmd/tools/completion.js.map +1 -0
  239. package/ts_build/src/agents/tools/ycmd/tools/diagnostics.d.ts +42 -0
  240. package/ts_build/src/agents/tools/ycmd/tools/diagnostics.js +88 -0
  241. package/ts_build/src/agents/tools/ycmd/tools/diagnostics.js.map +1 -0
  242. package/ts_build/src/agents/tools/ycmd/tools/getLocations.d.ts +22 -0
  243. package/ts_build/src/agents/tools/ycmd/tools/getLocations.js +142 -0
  244. package/ts_build/src/agents/tools/ycmd/tools/getLocations.js.map +1 -0
  245. package/ts_build/src/agents/tools/ycmd/tools/goto.d.ts +20 -0
  246. package/ts_build/src/agents/tools/ycmd/tools/goto.js +101 -0
  247. package/ts_build/src/agents/tools/ycmd/tools/goto.js.map +1 -0
  248. package/ts_build/src/agents/tools/ycmd/tools/refactor.d.ts +32 -0
  249. package/ts_build/src/agents/tools/ycmd/tools/refactor.js +123 -0
  250. package/ts_build/src/agents/tools/ycmd/tools/refactor.js.map +1 -0
  251. package/ts_build/src/agents/tools/ycmd/tools/signature.d.ts +25 -0
  252. package/ts_build/src/agents/tools/ycmd/tools/signature.js +110 -0
  253. package/ts_build/src/agents/tools/ycmd/tools/signature.js.map +1 -0
  254. package/ts_build/src/agents/tools/ycmd/tools/start.d.ts +17 -0
  255. package/ts_build/src/agents/tools/ycmd/tools/start.js +65 -0
  256. package/ts_build/src/agents/tools/ycmd/tools/start.js.map +1 -0
  257. package/ts_build/src/agents/tools/ycmd/utils/pathUtils.d.ts +4 -0
  258. package/ts_build/src/agents/tools/ycmd/utils/pathUtils.js +67 -0
  259. package/ts_build/src/agents/tools/ycmd/utils/pathUtils.js.map +1 -0
  260. package/ts_build/src/ai.d.ts +1 -0
  261. package/ts_build/src/ai.js +40 -1
  262. package/ts_build/src/ai.js.map +1 -1
  263. package/ts_build/src/chat/ChatCommandHandler.d.ts +36 -0
  264. package/ts_build/src/chat/ChatCommandHandler.js +268 -0
  265. package/ts_build/src/chat/ChatCommandHandler.js.map +1 -0
  266. package/ts_build/src/chat/ChatInputManager.d.ts +22 -0
  267. package/ts_build/src/chat/ChatInputManager.js +85 -0
  268. package/ts_build/src/chat/ChatInputManager.js.map +1 -0
  269. package/ts_build/src/chat/ChatManager.d.ts +49 -0
  270. package/ts_build/src/chat/ChatManager.js +271 -0
  271. package/ts_build/src/chat/ChatManager.js.map +1 -0
  272. package/ts_build/src/chat/ChatSession.d.ts +32 -0
  273. package/ts_build/src/chat/ChatSession.js +3 -0
  274. package/ts_build/src/chat/ChatSession.js.map +1 -0
  275. package/ts_build/src/chat/ChatSessionManager.d.ts +19 -0
  276. package/ts_build/src/chat/ChatSessionManager.js +188 -0
  277. package/ts_build/src/chat/ChatSessionManager.js.map +1 -0
  278. package/ts_build/src/chat/ChatStateManager.d.ts +58 -0
  279. package/ts_build/src/chat/ChatStateManager.js +156 -0
  280. package/ts_build/src/chat/ChatStateManager.js.map +1 -0
  281. package/ts_build/src/chat/CliChatService.d.ts +35 -0
  282. package/ts_build/src/chat/CliChatService.js +201 -0
  283. package/ts_build/src/chat/CliChatService.js.map +1 -0
  284. package/ts_build/src/chat/InterruptibleInput.d.ts +20 -0
  285. package/ts_build/src/chat/InterruptibleInput.js +109 -0
  286. package/ts_build/src/chat/InterruptibleInput.js.map +1 -0
  287. package/ts_build/src/chat/interfaces/ChatModule.d.ts +6 -0
  288. package/ts_build/src/chat/interfaces/ChatModule.js +3 -0
  289. package/ts_build/src/chat/interfaces/ChatModule.js.map +1 -0
  290. package/ts_build/src/chat/modules/AgentModule.d.ts +57 -0
  291. package/ts_build/src/chat/modules/AgentModule.js +709 -0
  292. package/ts_build/src/chat/modules/AgentModule.js.map +1 -0
  293. package/ts_build/src/chat/modules/AskModule.d.ts +10 -0
  294. package/ts_build/src/chat/modules/AskModule.js +63 -0
  295. package/ts_build/src/chat/modules/AskModule.js.map +1 -0
  296. package/ts_build/src/chat/modules/BaseChatModule.d.ts +14 -0
  297. package/ts_build/src/chat/modules/BaseChatModule.js +32 -0
  298. package/ts_build/src/chat/modules/BaseChatModule.js.map +1 -0
  299. package/ts_build/src/chat/modules/InternalChatModule.d.ts +24 -0
  300. package/ts_build/src/chat/modules/InternalChatModule.js +127 -0
  301. package/ts_build/src/chat/modules/InternalChatModule.js.map +1 -0
  302. package/ts_build/src/chat/modules/SearchModule.d.ts +12 -0
  303. package/ts_build/src/chat/modules/SearchModule.js +119 -0
  304. package/ts_build/src/chat/modules/SearchModule.js.map +1 -0
  305. package/ts_build/src/chat/modules/SetupModule.d.ts +15 -0
  306. package/ts_build/src/chat/modules/SetupModule.js +147 -0
  307. package/ts_build/src/chat/modules/SetupModule.js.map +1 -0
  308. package/ts_build/src/chat/modules/SystemModule.d.ts +14 -0
  309. package/ts_build/src/chat/modules/SystemModule.js +90 -0
  310. package/ts_build/src/chat/modules/SystemModule.js.map +1 -0
  311. package/ts_build/src/chat/modules/VoiceModule.d.ts +11 -0
  312. package/ts_build/src/chat/modules/VoiceModule.js +57 -0
  313. package/ts_build/src/chat/modules/VoiceModule.js.map +1 -0
  314. package/ts_build/src/chat/types.d.ts +83 -0
  315. package/ts_build/src/chat/types.js +3 -0
  316. package/ts_build/src/chat/types.js.map +1 -0
  317. package/ts_build/src/chat.js +7 -1
  318. package/ts_build/src/chat.js.map +1 -1
  319. package/ts_build/src/chat2.d.ts +3 -0
  320. package/ts_build/src/chat2.js +47 -0
  321. package/ts_build/src/chat2.js.map +1 -0
  322. package/ts_build/src/cli.js +218 -37
  323. package/ts_build/src/cli.js.map +1 -1
  324. package/ts_build/src/clients/anthropic.d.ts +5 -2
  325. package/ts_build/src/clients/anthropic.js +12 -7
  326. package/ts_build/src/clients/anthropic.js.map +1 -1
  327. package/ts_build/src/clients/gemini.d.ts +6 -3
  328. package/ts_build/src/clients/gemini.js +13 -7
  329. package/ts_build/src/clients/gemini.js.map +1 -1
  330. package/ts_build/src/clients/http.d.ts +1 -0
  331. package/ts_build/src/clients/http.js +12 -5
  332. package/ts_build/src/clients/http.js.map +1 -1
  333. package/ts_build/src/clients/index.d.ts +10 -0
  334. package/ts_build/src/clients/index.js +74 -4
  335. package/ts_build/src/clients/index.js.map +1 -1
  336. package/ts_build/src/clients/knowhow.d.ts +3 -1
  337. package/ts_build/src/clients/knowhow.js +8 -2
  338. package/ts_build/src/clients/knowhow.js.map +1 -1
  339. package/ts_build/src/clients/knowhowMcp.d.ts +20 -0
  340. package/ts_build/src/clients/knowhowMcp.js +86 -0
  341. package/ts_build/src/clients/knowhowMcp.js.map +1 -0
  342. package/ts_build/src/clients/openai.d.ts +5 -2
  343. package/ts_build/src/clients/openai.js +29 -8
  344. package/ts_build/src/clients/openai.js.map +1 -1
  345. package/ts_build/src/clients/types.d.ts +1 -0
  346. package/ts_build/src/clients/xai.d.ts +5 -2
  347. package/ts_build/src/clients/xai.js +15 -5
  348. package/ts_build/src/clients/xai.js.map +1 -1
  349. package/ts_build/src/config.js +24 -3
  350. package/ts_build/src/config.js.map +1 -1
  351. package/ts_build/src/conversion.js +6 -4
  352. package/ts_build/src/conversion.js.map +1 -1
  353. package/ts_build/src/login.d.ts +1 -1
  354. package/ts_build/src/login.js +21 -7
  355. package/ts_build/src/login.js.map +1 -1
  356. package/ts_build/src/microphone.js.map +1 -1
  357. package/ts_build/src/plugins/downloader/downloader.d.ts +7 -5
  358. package/ts_build/src/plugins/downloader/downloader.js +147 -44
  359. package/ts_build/src/plugins/downloader/downloader.js.map +1 -1
  360. package/ts_build/src/plugins/downloader/plugin.js +5 -3
  361. package/ts_build/src/plugins/downloader/plugin.js.map +1 -1
  362. package/ts_build/src/plugins/plugins.js +3 -0
  363. package/ts_build/src/plugins/plugins.js.map +1 -1
  364. package/ts_build/src/processors/CustomVariables.d.ts +32 -0
  365. package/ts_build/src/processors/CustomVariables.js +297 -0
  366. package/ts_build/src/processors/CustomVariables.js.map +1 -0
  367. package/ts_build/src/processors/HarmonyToolProcessor.d.ts +15 -0
  368. package/ts_build/src/processors/HarmonyToolProcessor.js +154 -0
  369. package/ts_build/src/processors/HarmonyToolProcessor.js.map +1 -0
  370. package/ts_build/src/processors/XmlToolCallProcessor.d.ts +14 -0
  371. package/ts_build/src/processors/XmlToolCallProcessor.js +357 -0
  372. package/ts_build/src/processors/XmlToolCallProcessor.js.map +1 -0
  373. package/ts_build/src/processors/index.d.ts +3 -0
  374. package/ts_build/src/processors/index.js +7 -1
  375. package/ts_build/src/processors/index.js.map +1 -1
  376. package/ts_build/src/prompts/KnowhowConfigExamples.d.ts +2 -0
  377. package/ts_build/src/prompts/KnowhowConfigExamples.js +379 -0
  378. package/ts_build/src/prompts/KnowhowConfigExamples.js.map +1 -0
  379. package/ts_build/src/services/KnowhowClient.d.ts +22 -0
  380. package/ts_build/src/services/KnowhowClient.js +14 -2
  381. package/ts_build/src/services/KnowhowClient.js.map +1 -1
  382. package/ts_build/src/services/Mcp.d.ts +1 -0
  383. package/ts_build/src/services/Mcp.js +20 -3
  384. package/ts_build/src/services/Mcp.js.map +1 -1
  385. package/ts_build/src/services/McpServer.d.ts +1 -1
  386. package/ts_build/src/services/McpServer.js +8 -4
  387. package/ts_build/src/services/McpServer.js.map +1 -1
  388. package/ts_build/src/services/McpWebsocketTransport.js +17 -7
  389. package/ts_build/src/services/McpWebsocketTransport.js.map +1 -1
  390. package/ts_build/src/services/MessageProcessor.d.ts +1 -1
  391. package/ts_build/src/services/MessageProcessor.js +4 -4
  392. package/ts_build/src/services/MessageProcessor.js.map +1 -1
  393. package/ts_build/src/services/index.d.ts +2 -0
  394. package/ts_build/src/services/index.js +4 -0
  395. package/ts_build/src/services/index.js.map +1 -1
  396. package/ts_build/src/services/script-execution/ScriptExecutor.d.ts +1 -0
  397. package/ts_build/src/services/script-execution/ScriptExecutor.js +23 -0
  398. package/ts_build/src/services/script-execution/ScriptExecutor.js.map +1 -1
  399. package/ts_build/src/services/types.d.ts +2 -6
  400. package/ts_build/src/services/types.js +4 -4
  401. package/ts_build/src/services/types.js.map +1 -1
  402. package/ts_build/src/types.d.ts +11 -0
  403. package/ts_build/src/types.js +8 -0
  404. package/ts_build/src/types.js.map +1 -1
  405. package/ts_build/src/utils/index.d.ts +2 -0
  406. package/ts_build/src/utils/index.js +102 -1
  407. package/ts_build/src/utils/index.js.map +1 -1
  408. package/ts_build/tests/XmlToolCallProcessor.test.d.ts +1 -0
  409. package/ts_build/tests/XmlToolCallProcessor.test.js +376 -0
  410. package/ts_build/tests/XmlToolCallProcessor.test.js.map +1 -0
  411. package/ts_build/tests/manual/ycmd/debug_diagnostics_test.d.ts +1 -0
  412. package/ts_build/tests/manual/ycmd/debug_diagnostics_test.js +114 -0
  413. package/ts_build/tests/manual/ycmd/debug_diagnostics_test.js.map +1 -0
  414. package/ts_build/tests/manual/ycmd/minimal_advanced_test.d.ts +2 -0
  415. package/ts_build/tests/manual/ycmd/minimal_advanced_test.js +104 -0
  416. package/ts_build/tests/manual/ycmd/minimal_advanced_test.js.map +1 -0
  417. package/ts_build/tests/manual/ycmd/simple_diagnostics_test.d.ts +1 -0
  418. package/ts_build/tests/manual/ycmd/simple_diagnostics_test.js +74 -0
  419. package/ts_build/tests/manual/ycmd/simple_diagnostics_test.js.map +1 -0
  420. package/ts_build/tests/manual/ycmd/simple_test.d.ts +2 -0
  421. package/ts_build/tests/manual/ycmd/simple_test.js +82 -0
  422. package/ts_build/tests/manual/ycmd/simple_test.js.map +1 -0
  423. package/ts_build/tests/manual/ycmd/test-typescript-sample.d.ts +14 -0
  424. package/ts_build/tests/manual/ycmd/test-typescript-sample.js +20 -0
  425. package/ts_build/tests/manual/ycmd/test-typescript-sample.js.map +1 -0
  426. package/ts_build/tests/manual/ycmd/test_advanced_features.d.ts +2 -0
  427. package/ts_build/tests/manual/ycmd/test_advanced_features.js +297 -0
  428. package/ts_build/tests/manual/ycmd/test_advanced_features.js.map +1 -0
  429. package/ts_build/tests/manual/ycmd/test_advanced_with_tools.d.ts +3 -0
  430. package/ts_build/tests/manual/ycmd/test_advanced_with_tools.js +262 -0
  431. package/ts_build/tests/manual/ycmd/test_advanced_with_tools.js.map +1 -0
  432. package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.d.ts +2 -0
  433. package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.js +186 -0
  434. package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.js.map +1 -0
  435. package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.d.ts +1 -0
  436. package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.js +174 -0
  437. package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.js.map +1 -0
  438. package/ts_build/tests/manual/ycmd/test_diagnostics_fix.d.ts +2 -0
  439. package/ts_build/tests/manual/ycmd/test_diagnostics_fix.js +106 -0
  440. package/ts_build/tests/manual/ycmd/test_diagnostics_fix.js.map +1 -0
  441. package/ts_build/tests/manual/ycmd/test_diagnostics_simple.d.ts +1 -0
  442. package/ts_build/tests/manual/ycmd/test_diagnostics_simple.js +104 -0
  443. package/ts_build/tests/manual/ycmd/test_diagnostics_simple.js.map +1 -0
  444. package/ts_build/tests/manual/ycmd/test_diagnostics_timing.d.ts +1 -0
  445. package/ts_build/tests/manual/ycmd/test_diagnostics_timing.js +119 -0
  446. package/ts_build/tests/manual/ycmd/test_diagnostics_timing.js.map +1 -0
  447. package/ts_build/tests/manual/ycmd/test_discover_commands.d.ts +2 -0
  448. package/ts_build/tests/manual/ycmd/test_discover_commands.js +243 -0
  449. package/ts_build/tests/manual/ycmd/test_discover_commands.js.map +1 -0
  450. package/ts_build/tests/manual/ycmd/test_endpoints.d.ts +2 -0
  451. package/ts_build/tests/manual/ycmd/test_endpoints.js +120 -0
  452. package/ts_build/tests/manual/ycmd/test_endpoints.js.map +1 -0
  453. package/ts_build/tests/manual/ycmd/test_final_comprehensive.d.ts +2 -0
  454. package/ts_build/tests/manual/ycmd/test_final_comprehensive.js +221 -0
  455. package/ts_build/tests/manual/ycmd/test_final_comprehensive.js.map +1 -0
  456. package/ts_build/tests/manual/ycmd/test_final_validation.d.ts +2 -0
  457. package/ts_build/tests/manual/ycmd/test_final_validation.js +160 -0
  458. package/ts_build/tests/manual/ycmd/test_final_validation.js.map +1 -0
  459. package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.d.ts +2 -0
  460. package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.js +37 -0
  461. package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.js.map +1 -0
  462. package/ts_build/tests/manual/ycmd/test_server_manager.d.ts +1 -0
  463. package/ts_build/tests/manual/ycmd/test_server_manager.js +38 -0
  464. package/ts_build/tests/manual/ycmd/test_server_manager.js.map +1 -0
  465. package/ts_build/tests/manual/ycmd/test_simple_debug.d.ts +2 -0
  466. package/ts_build/tests/manual/ycmd/test_simple_debug.js +99 -0
  467. package/ts_build/tests/manual/ycmd/test_simple_debug.js.map +1 -0
  468. package/ts_build/tests/manual/ycmd/test_tsserver_workflow.d.ts +1 -0
  469. package/ts_build/tests/manual/ycmd/test_tsserver_workflow.js +128 -0
  470. package/ts_build/tests/manual/ycmd/test_tsserver_workflow.js.map +1 -0
  471. package/ts_build/tests/manual/ycmd/test_typescript_simple.d.ts +1 -0
  472. package/ts_build/tests/manual/ycmd/test_typescript_simple.js +66 -0
  473. package/ts_build/tests/manual/ycmd/test_typescript_simple.js.map +1 -0
  474. package/ts_build/tests/manual/ycmd/test_typescript_ycmd.d.ts +1 -0
  475. package/ts_build/tests/manual/ycmd/test_typescript_ycmd.js +105 -0
  476. package/ts_build/tests/manual/ycmd/test_typescript_ycmd.js.map +1 -0
  477. package/ts_build/tests/manual/ycmd/test_workspace_config.d.ts +1 -0
  478. package/ts_build/tests/manual/ycmd/test_workspace_config.js +89 -0
  479. package/ts_build/tests/manual/ycmd/test_workspace_config.js.map +1 -0
  480. package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.d.ts +2 -0
  481. package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.js +130 -0
  482. package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.js.map +1 -0
  483. package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.d.ts +1 -0
  484. package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.js +83 -0
  485. package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.js.map +1 -0
  486. package/ts_build/tests/manual/ycmd/test_ycmd_direct.d.ts +2 -0
  487. package/ts_build/tests/manual/ycmd/test_ycmd_direct.js +149 -0
  488. package/ts_build/tests/manual/ycmd/test_ycmd_direct.js.map +1 -0
  489. package/ts_build/tests/manual/ycmd/test_ycmd_experiment.d.ts +15 -0
  490. package/ts_build/tests/manual/ycmd/test_ycmd_experiment.js +58 -0
  491. package/ts_build/tests/manual/ycmd/test_ycmd_experiment.js.map +1 -0
  492. package/ts_build/tests/manual/ycmd/test_ycmd_final.d.ts +2 -0
  493. package/ts_build/tests/manual/ycmd/test_ycmd_final.js +195 -0
  494. package/ts_build/tests/manual/ycmd/test_ycmd_final.js.map +1 -0
  495. package/ts_build/tests/manual/ycmd/test_ycmd_integration.d.ts +3 -0
  496. package/ts_build/tests/manual/ycmd/test_ycmd_integration.js +110 -0
  497. package/ts_build/tests/manual/ycmd/test_ycmd_integration.js.map +1 -0
  498. package/ts_build/tests/manual/ycmd/test_ycmd_simple.d.ts +2 -0
  499. package/ts_build/tests/manual/ycmd/test_ycmd_simple.js +36 -0
  500. package/ts_build/tests/manual/ycmd/test_ycmd_simple.js.map +1 -0
  501. package/ts_build/tests/manual/ycmd/working_simple_test.d.ts +2 -0
  502. package/ts_build/tests/manual/ycmd/working_simple_test.js +134 -0
  503. package/ts_build/tests/manual/ycmd/working_simple_test.js.map +1 -0
  504. package/tsconfig.json +3 -1
@@ -0,0 +1,2896 @@
1
+ {
2
+ "config": {
3
+ "language": "javascript",
4
+ "maxExercises": 10,
5
+ "model": "qwen/qwen3-coder-30b",
6
+ "provider": "lms",
7
+ "limits": {
8
+ "maxTurns": 30,
9
+ "maxTime": 300,
10
+ "maxCost": 1
11
+ },
12
+ "outputFile": "results.json"
13
+ },
14
+ "exercises": [
15
+ {
16
+ "exerciseName": "accumulate",
17
+ "status": "success",
18
+ "turns": 20,
19
+ "testResult": {
20
+ "passed": 5,
21
+ "failed": 0,
22
+ "total": 5,
23
+ "skipped": 0,
24
+ "success": true,
25
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":5,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":5,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754195957653,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"accumulate()\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulation empty\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulation empty\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate squares\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate squares\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate upcases\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate upcases\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate reversed strings\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate reversed strings\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate recursively\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate recursively\"}],\"endTime\":1754195957772,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/accumulate/accumulate.spec.js\",\"startTime\":1754195957672,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
26
+ "details": {
27
+ "numFailedTestSuites": 0,
28
+ "numFailedTests": 0,
29
+ "numPassedTestSuites": 1,
30
+ "numPassedTests": 5,
31
+ "numPendingTestSuites": 0,
32
+ "numPendingTests": 0,
33
+ "numRuntimeErrorTestSuites": 0,
34
+ "numTodoTests": 0,
35
+ "numTotalTestSuites": 1,
36
+ "numTotalTests": 5,
37
+ "openHandles": [],
38
+ "snapshot": {
39
+ "added": 0,
40
+ "didUpdate": false,
41
+ "failure": false,
42
+ "filesAdded": 0,
43
+ "filesRemoved": 0,
44
+ "filesRemovedList": [],
45
+ "filesUnmatched": 0,
46
+ "filesUpdated": 0,
47
+ "matched": 0,
48
+ "total": 0,
49
+ "unchecked": 0,
50
+ "uncheckedKeysByFile": [],
51
+ "unmatched": 0,
52
+ "updated": 0
53
+ },
54
+ "startTime": 1754195957653,
55
+ "success": true,
56
+ "testResults": [
57
+ {
58
+ "assertionResults": [
59
+ {
60
+ "ancestorTitles": [
61
+ "accumulate()"
62
+ ],
63
+ "duration": 1,
64
+ "failureDetails": [],
65
+ "failureMessages": [],
66
+ "fullName": "accumulate() accumulation empty",
67
+ "invocations": 1,
68
+ "location": null,
69
+ "numPassingAsserts": 1,
70
+ "retryReasons": [],
71
+ "status": "passed",
72
+ "title": "accumulation empty"
73
+ },
74
+ {
75
+ "ancestorTitles": [
76
+ "accumulate()"
77
+ ],
78
+ "duration": 1,
79
+ "failureDetails": [],
80
+ "failureMessages": [],
81
+ "fullName": "accumulate() accumulate squares",
82
+ "invocations": 1,
83
+ "location": null,
84
+ "numPassingAsserts": 1,
85
+ "retryReasons": [],
86
+ "status": "passed",
87
+ "title": "accumulate squares"
88
+ },
89
+ {
90
+ "ancestorTitles": [
91
+ "accumulate()"
92
+ ],
93
+ "duration": 1,
94
+ "failureDetails": [],
95
+ "failureMessages": [],
96
+ "fullName": "accumulate() accumulate upcases",
97
+ "invocations": 1,
98
+ "location": null,
99
+ "numPassingAsserts": 1,
100
+ "retryReasons": [],
101
+ "status": "passed",
102
+ "title": "accumulate upcases"
103
+ },
104
+ {
105
+ "ancestorTitles": [
106
+ "accumulate()"
107
+ ],
108
+ "duration": 0,
109
+ "failureDetails": [],
110
+ "failureMessages": [],
111
+ "fullName": "accumulate() accumulate reversed strings",
112
+ "invocations": 1,
113
+ "location": null,
114
+ "numPassingAsserts": 1,
115
+ "retryReasons": [],
116
+ "status": "passed",
117
+ "title": "accumulate reversed strings"
118
+ },
119
+ {
120
+ "ancestorTitles": [
121
+ "accumulate()"
122
+ ],
123
+ "duration": 0,
124
+ "failureDetails": [],
125
+ "failureMessages": [],
126
+ "fullName": "accumulate() accumulate recursively",
127
+ "invocations": 1,
128
+ "location": null,
129
+ "numPassingAsserts": 1,
130
+ "retryReasons": [],
131
+ "status": "passed",
132
+ "title": "accumulate recursively"
133
+ }
134
+ ],
135
+ "endTime": 1754195957772,
136
+ "message": "",
137
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/accumulate/accumulate.spec.js",
138
+ "startTime": 1754195957672,
139
+ "status": "passed",
140
+ "summary": ""
141
+ }
142
+ ],
143
+ "wasInterrupted": false
144
+ }
145
+ },
146
+ "timeElapsed": 340.089,
147
+ "cost": 0,
148
+ "startTime": "2025-08-03T04:33:37.691Z",
149
+ "endTime": "2025-08-03T04:39:17.780Z",
150
+ "finalOutput": "I have successfully implemented the `accumulate` function for the JavaScript exercise. The solution:\n\n1. Takes a collection and an operation as parameters\n2. Creates a new result array\n3. Iterates through each element in the collection\n4. Applies the operation to each element and adds it to the result array\n5. Returns the new collection with transformed elements\n\nThe implementation satisfies all requirements:\n- Handles empty collections correctly\n- Works with various operations (squaring, uppercase conversion, string reversal)\n- Does not use built-in map/collect/fmap functionality\n- Returns a new collection instead of mutating the original\n\nAll tests are now passing, including:\n- accumulation empty\n- accumulate squares\n- accumulate upcases\n- accumulate reversed strings\n- accumulate recursively\n\nThe function correctly transforms [1,2,3] with square operation to [1,4,9], matching the exercise requirements."
151
+ },
152
+ {
153
+ "exerciseName": "acronym",
154
+ "status": "success",
155
+ "turns": 30,
156
+ "testResult": {
157
+ "passed": 0,
158
+ "failed": 0,
159
+ "total": 0,
160
+ "skipped": 0,
161
+ "success": false,
162
+ "output": "{\"numFailedTestSuites\":1,\"numFailedTests\":0,\"numPassedTestSuites\":0,\"numPassedTests\":0,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":1,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":0,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754196409496,\"success\":false,\"testResults\":[{\"assertionResults\":[],\"coverage\":{},\"endTime\":1754196409608,\"message\":\" ● Test suite failed to run\\n\\n Cannot find module './acronym' from 'acronym.spec.js'\\n\\n However, Jest was able to find:\\n \\t'./acronym.spec.js'\\n\\n You might want to include a file extension in your import, or update your 'moduleFileExtensions', which is currently ['js', 'mjs', 'cjs', 'jsx', 'ts', 'tsx', 'json', 'node'].\\n\\n See https://jestjs.io/docs/configuration#modulefileextensions-arraystring\\n\\n 1 | import { describe, expect, test, xtest } from '@jest/globals';\\n > 2 | import { parse } from './acronym';\\n | ^\\n 3 |\\n 4 | describe('Acronyms are produced from', () => {\\n 5 | // basic\\n\\n at Resolver._throwModNotFoundError (node_modules/jest-resolve/build/resolver.js:427:11)\\n at Object.require (acronym.spec.js:2:1)\\n\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/acronym.spec.js\",\"startTime\":1754196409608,\"status\":\"failed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
163
+ "details": {
164
+ "numFailedTestSuites": 1,
165
+ "numFailedTests": 0,
166
+ "numPassedTestSuites": 0,
167
+ "numPassedTests": 0,
168
+ "numPendingTestSuites": 0,
169
+ "numPendingTests": 0,
170
+ "numRuntimeErrorTestSuites": 1,
171
+ "numTodoTests": 0,
172
+ "numTotalTestSuites": 1,
173
+ "numTotalTests": 0,
174
+ "openHandles": [],
175
+ "snapshot": {
176
+ "added": 0,
177
+ "didUpdate": false,
178
+ "failure": false,
179
+ "filesAdded": 0,
180
+ "filesRemoved": 0,
181
+ "filesRemovedList": [],
182
+ "filesUnmatched": 0,
183
+ "filesUpdated": 0,
184
+ "matched": 0,
185
+ "total": 0,
186
+ "unchecked": 0,
187
+ "uncheckedKeysByFile": [],
188
+ "unmatched": 0,
189
+ "updated": 0
190
+ },
191
+ "startTime": 1754196409496,
192
+ "success": false,
193
+ "testResults": [
194
+ {
195
+ "assertionResults": [],
196
+ "coverage": {},
197
+ "endTime": 1754196409608,
198
+ "message": " ● Test suite failed to run\n\n Cannot find module './acronym' from 'acronym.spec.js'\n\n However, Jest was able to find:\n \t'./acronym.spec.js'\n\n You might want to include a file extension in your import, or update your 'moduleFileExtensions', which is currently ['js', 'mjs', 'cjs', 'jsx', 'ts', 'tsx', 'json', 'node'].\n\n See https://jestjs.io/docs/configuration#modulefileextensions-arraystring\n\n 1 | import { describe, expect, test, xtest } from '@jest/globals';\n > 2 | import { parse } from './acronym';\n | ^\n 3 |\n 4 | describe('Acronyms are produced from', () => {\n 5 | // basic\n\n at Resolver._throwModNotFoundError (node_modules/jest-resolve/build/resolver.js:427:11)\n at Object.require (acronym.spec.js:2:1)\n",
199
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/acronym.spec.js",
200
+ "startTime": 1754196409608,
201
+ "status": "failed",
202
+ "summary": ""
203
+ }
204
+ ],
205
+ "wasInterrupted": false
206
+ }
207
+ },
208
+ "timeElapsed": 451.839,
209
+ "cost": 0,
210
+ "startTime": "2025-08-03T04:39:17.780Z",
211
+ "endTime": "2025-08-03T04:46:49.619Z",
212
+ "finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000"
213
+ },
214
+ {
215
+ "exerciseName": "affine-cipher",
216
+ "status": "success",
217
+ "turns": 30,
218
+ "testResult": {
219
+ "passed": 2,
220
+ "failed": 0,
221
+ "total": 16,
222
+ "skipped": 14,
223
+ "success": true,
224
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":2,\"numPendingTestSuites\":0,\"numPendingTests\":14,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":16,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754197042948,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode yes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode yes\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode no\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode no\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode OMG\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode OMG\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode O M G\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode O M G\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode mindblowingly\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode mindblowingly\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode numbers\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode deep thought\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode deep thought\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode all the letters\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode with a not coprime to m\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode with a not coprime to m\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode exercism\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode exercism\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode a sentence\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode a sentence\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode numbers\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode all the letters\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with no spaces in input\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode with no spaces in input\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with too many spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode with too many spaces\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with a not coprime to m\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode with a not coprime to m\"}],\"endTime\":1754197043050,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/affine-cipher/affine-cipher.spec.js\",\"startTime\":1754197042966,\"status\":\"focused\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
225
+ "details": {
226
+ "numFailedTestSuites": 0,
227
+ "numFailedTests": 0,
228
+ "numPassedTestSuites": 1,
229
+ "numPassedTests": 2,
230
+ "numPendingTestSuites": 0,
231
+ "numPendingTests": 14,
232
+ "numRuntimeErrorTestSuites": 0,
233
+ "numTodoTests": 0,
234
+ "numTotalTestSuites": 1,
235
+ "numTotalTests": 16,
236
+ "openHandles": [],
237
+ "snapshot": {
238
+ "added": 0,
239
+ "didUpdate": false,
240
+ "failure": false,
241
+ "filesAdded": 0,
242
+ "filesRemoved": 0,
243
+ "filesRemovedList": [],
244
+ "filesUnmatched": 0,
245
+ "filesUpdated": 0,
246
+ "matched": 0,
247
+ "total": 0,
248
+ "unchecked": 0,
249
+ "uncheckedKeysByFile": [],
250
+ "unmatched": 0,
251
+ "updated": 0
252
+ },
253
+ "startTime": 1754197042948,
254
+ "success": true,
255
+ "testResults": [
256
+ {
257
+ "assertionResults": [
258
+ {
259
+ "ancestorTitles": [
260
+ "Affine cipher",
261
+ "encode"
262
+ ],
263
+ "duration": 1,
264
+ "failureDetails": [],
265
+ "failureMessages": [],
266
+ "fullName": "Affine cipher encode encode yes",
267
+ "invocations": 1,
268
+ "location": null,
269
+ "numPassingAsserts": 1,
270
+ "retryReasons": [],
271
+ "status": "passed",
272
+ "title": "encode yes"
273
+ },
274
+ {
275
+ "ancestorTitles": [
276
+ "Affine cipher",
277
+ "encode"
278
+ ],
279
+ "duration": null,
280
+ "failureDetails": [],
281
+ "failureMessages": [],
282
+ "fullName": "Affine cipher encode encode no",
283
+ "invocations": 1,
284
+ "location": null,
285
+ "numPassingAsserts": 0,
286
+ "retryReasons": [],
287
+ "status": "pending",
288
+ "title": "encode no"
289
+ },
290
+ {
291
+ "ancestorTitles": [
292
+ "Affine cipher",
293
+ "encode"
294
+ ],
295
+ "duration": null,
296
+ "failureDetails": [],
297
+ "failureMessages": [],
298
+ "fullName": "Affine cipher encode encode OMG",
299
+ "invocations": 1,
300
+ "location": null,
301
+ "numPassingAsserts": 0,
302
+ "retryReasons": [],
303
+ "status": "pending",
304
+ "title": "encode OMG"
305
+ },
306
+ {
307
+ "ancestorTitles": [
308
+ "Affine cipher",
309
+ "encode"
310
+ ],
311
+ "duration": null,
312
+ "failureDetails": [],
313
+ "failureMessages": [],
314
+ "fullName": "Affine cipher encode encode O M G",
315
+ "invocations": 1,
316
+ "location": null,
317
+ "numPassingAsserts": 0,
318
+ "retryReasons": [],
319
+ "status": "pending",
320
+ "title": "encode O M G"
321
+ },
322
+ {
323
+ "ancestorTitles": [
324
+ "Affine cipher",
325
+ "encode"
326
+ ],
327
+ "duration": null,
328
+ "failureDetails": [],
329
+ "failureMessages": [],
330
+ "fullName": "Affine cipher encode encode mindblowingly",
331
+ "invocations": 1,
332
+ "location": null,
333
+ "numPassingAsserts": 0,
334
+ "retryReasons": [],
335
+ "status": "pending",
336
+ "title": "encode mindblowingly"
337
+ },
338
+ {
339
+ "ancestorTitles": [
340
+ "Affine cipher",
341
+ "encode"
342
+ ],
343
+ "duration": null,
344
+ "failureDetails": [],
345
+ "failureMessages": [],
346
+ "fullName": "Affine cipher encode encode numbers",
347
+ "invocations": 1,
348
+ "location": null,
349
+ "numPassingAsserts": 0,
350
+ "retryReasons": [],
351
+ "status": "pending",
352
+ "title": "encode numbers"
353
+ },
354
+ {
355
+ "ancestorTitles": [
356
+ "Affine cipher",
357
+ "encode"
358
+ ],
359
+ "duration": null,
360
+ "failureDetails": [],
361
+ "failureMessages": [],
362
+ "fullName": "Affine cipher encode encode deep thought",
363
+ "invocations": 1,
364
+ "location": null,
365
+ "numPassingAsserts": 0,
366
+ "retryReasons": [],
367
+ "status": "pending",
368
+ "title": "encode deep thought"
369
+ },
370
+ {
371
+ "ancestorTitles": [
372
+ "Affine cipher",
373
+ "encode"
374
+ ],
375
+ "duration": null,
376
+ "failureDetails": [],
377
+ "failureMessages": [],
378
+ "fullName": "Affine cipher encode encode all the letters",
379
+ "invocations": 1,
380
+ "location": null,
381
+ "numPassingAsserts": 0,
382
+ "retryReasons": [],
383
+ "status": "pending",
384
+ "title": "encode all the letters"
385
+ },
386
+ {
387
+ "ancestorTitles": [
388
+ "Affine cipher",
389
+ "encode"
390
+ ],
391
+ "duration": null,
392
+ "failureDetails": [],
393
+ "failureMessages": [],
394
+ "fullName": "Affine cipher encode encode with a not coprime to m",
395
+ "invocations": 1,
396
+ "location": null,
397
+ "numPassingAsserts": 0,
398
+ "retryReasons": [],
399
+ "status": "pending",
400
+ "title": "encode with a not coprime to m"
401
+ },
402
+ {
403
+ "ancestorTitles": [
404
+ "Affine cipher",
405
+ "decode"
406
+ ],
407
+ "duration": 0,
408
+ "failureDetails": [],
409
+ "failureMessages": [],
410
+ "fullName": "Affine cipher decode decode exercism",
411
+ "invocations": 1,
412
+ "location": null,
413
+ "numPassingAsserts": 1,
414
+ "retryReasons": [],
415
+ "status": "passed",
416
+ "title": "decode exercism"
417
+ },
418
+ {
419
+ "ancestorTitles": [
420
+ "Affine cipher",
421
+ "decode"
422
+ ],
423
+ "duration": null,
424
+ "failureDetails": [],
425
+ "failureMessages": [],
426
+ "fullName": "Affine cipher decode decode a sentence",
427
+ "invocations": 1,
428
+ "location": null,
429
+ "numPassingAsserts": 0,
430
+ "retryReasons": [],
431
+ "status": "pending",
432
+ "title": "decode a sentence"
433
+ },
434
+ {
435
+ "ancestorTitles": [
436
+ "Affine cipher",
437
+ "decode"
438
+ ],
439
+ "duration": null,
440
+ "failureDetails": [],
441
+ "failureMessages": [],
442
+ "fullName": "Affine cipher decode decode numbers",
443
+ "invocations": 1,
444
+ "location": null,
445
+ "numPassingAsserts": 0,
446
+ "retryReasons": [],
447
+ "status": "pending",
448
+ "title": "decode numbers"
449
+ },
450
+ {
451
+ "ancestorTitles": [
452
+ "Affine cipher",
453
+ "decode"
454
+ ],
455
+ "duration": null,
456
+ "failureDetails": [],
457
+ "failureMessages": [],
458
+ "fullName": "Affine cipher decode decode all the letters",
459
+ "invocations": 1,
460
+ "location": null,
461
+ "numPassingAsserts": 0,
462
+ "retryReasons": [],
463
+ "status": "pending",
464
+ "title": "decode all the letters"
465
+ },
466
+ {
467
+ "ancestorTitles": [
468
+ "Affine cipher",
469
+ "decode"
470
+ ],
471
+ "duration": null,
472
+ "failureDetails": [],
473
+ "failureMessages": [],
474
+ "fullName": "Affine cipher decode decode with no spaces in input",
475
+ "invocations": 1,
476
+ "location": null,
477
+ "numPassingAsserts": 0,
478
+ "retryReasons": [],
479
+ "status": "pending",
480
+ "title": "decode with no spaces in input"
481
+ },
482
+ {
483
+ "ancestorTitles": [
484
+ "Affine cipher",
485
+ "decode"
486
+ ],
487
+ "duration": null,
488
+ "failureDetails": [],
489
+ "failureMessages": [],
490
+ "fullName": "Affine cipher decode decode with too many spaces",
491
+ "invocations": 1,
492
+ "location": null,
493
+ "numPassingAsserts": 0,
494
+ "retryReasons": [],
495
+ "status": "pending",
496
+ "title": "decode with too many spaces"
497
+ },
498
+ {
499
+ "ancestorTitles": [
500
+ "Affine cipher",
501
+ "decode"
502
+ ],
503
+ "duration": null,
504
+ "failureDetails": [],
505
+ "failureMessages": [],
506
+ "fullName": "Affine cipher decode decode with a not coprime to m",
507
+ "invocations": 1,
508
+ "location": null,
509
+ "numPassingAsserts": 0,
510
+ "retryReasons": [],
511
+ "status": "pending",
512
+ "title": "decode with a not coprime to m"
513
+ }
514
+ ],
515
+ "endTime": 1754197043050,
516
+ "message": "",
517
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/affine-cipher/affine-cipher.spec.js",
518
+ "startTime": 1754197042966,
519
+ "status": "focused",
520
+ "summary": ""
521
+ }
522
+ ],
523
+ "wasInterrupted": false
524
+ }
525
+ },
526
+ "timeElapsed": 633.444,
527
+ "cost": 0,
528
+ "startTime": "2025-08-03T04:46:49.619Z",
529
+ "endTime": "2025-08-03T04:57:23.063Z",
530
+ "finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000"
531
+ },
532
+ {
533
+ "exerciseName": "all-your-base",
534
+ "status": "success",
535
+ "turns": 30,
536
+ "testResult": {
537
+ "passed": 21,
538
+ "failed": 0,
539
+ "total": 21,
540
+ "skipped": 0,
541
+ "success": true,
542
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":21,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":21,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754197839611,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter single bit one to decimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"single bit one to decimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter binary to single decimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"binary to single decimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter single decimal to binary\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"single decimal to binary\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter binary to multiple decimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"binary to multiple decimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter decimal to binary\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decimal to binary\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter trinary to hexadecimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"trinary to hexadecimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter hexadecimal to trinary\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"hexadecimal to trinary\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter 15-bit integer\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"15-bit integer\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":3,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter empty list\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"empty list\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter single zero\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"single zero\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter multiple zeros\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"multiple zeros\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter leading zeros\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"leading zeros\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter negative digit\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"negative digit\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter invalid positive digit\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"invalid positive digit\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter first base is one\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"first base is one\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter second base is one\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"second base is one\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter first base is zero\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"first base is zero\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter second base is zero\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"second base is zero\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter first base is negative\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"first base is negative\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter second base is negative\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"second base is negative\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter both bases are negative\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"both bases are negative\"}],\"endTime\":1754197839904,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/all-your-base/all-your-base.spec.js\",\"startTime\":1754197839630,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
543
+ "details": {
544
+ "numFailedTestSuites": 0,
545
+ "numFailedTests": 0,
546
+ "numPassedTestSuites": 1,
547
+ "numPassedTests": 21,
548
+ "numPendingTestSuites": 0,
549
+ "numPendingTests": 0,
550
+ "numRuntimeErrorTestSuites": 0,
551
+ "numTodoTests": 0,
552
+ "numTotalTestSuites": 1,
553
+ "numTotalTests": 21,
554
+ "openHandles": [],
555
+ "snapshot": {
556
+ "added": 0,
557
+ "didUpdate": false,
558
+ "failure": false,
559
+ "filesAdded": 0,
560
+ "filesRemoved": 0,
561
+ "filesRemovedList": [],
562
+ "filesUnmatched": 0,
563
+ "filesUpdated": 0,
564
+ "matched": 0,
565
+ "total": 0,
566
+ "unchecked": 0,
567
+ "uncheckedKeysByFile": [],
568
+ "unmatched": 0,
569
+ "updated": 0
570
+ },
571
+ "startTime": 1754197839611,
572
+ "success": true,
573
+ "testResults": [
574
+ {
575
+ "assertionResults": [
576
+ {
577
+ "ancestorTitles": [
578
+ "Converter"
579
+ ],
580
+ "duration": 1,
581
+ "failureDetails": [],
582
+ "failureMessages": [],
583
+ "fullName": "Converter single bit one to decimal",
584
+ "invocations": 1,
585
+ "location": null,
586
+ "numPassingAsserts": 1,
587
+ "retryReasons": [],
588
+ "status": "passed",
589
+ "title": "single bit one to decimal"
590
+ },
591
+ {
592
+ "ancestorTitles": [
593
+ "Converter"
594
+ ],
595
+ "duration": 1,
596
+ "failureDetails": [],
597
+ "failureMessages": [],
598
+ "fullName": "Converter binary to single decimal",
599
+ "invocations": 1,
600
+ "location": null,
601
+ "numPassingAsserts": 1,
602
+ "retryReasons": [],
603
+ "status": "passed",
604
+ "title": "binary to single decimal"
605
+ },
606
+ {
607
+ "ancestorTitles": [
608
+ "Converter"
609
+ ],
610
+ "duration": 0,
611
+ "failureDetails": [],
612
+ "failureMessages": [],
613
+ "fullName": "Converter single decimal to binary",
614
+ "invocations": 1,
615
+ "location": null,
616
+ "numPassingAsserts": 1,
617
+ "retryReasons": [],
618
+ "status": "passed",
619
+ "title": "single decimal to binary"
620
+ },
621
+ {
622
+ "ancestorTitles": [
623
+ "Converter"
624
+ ],
625
+ "duration": 0,
626
+ "failureDetails": [],
627
+ "failureMessages": [],
628
+ "fullName": "Converter binary to multiple decimal",
629
+ "invocations": 1,
630
+ "location": null,
631
+ "numPassingAsserts": 1,
632
+ "retryReasons": [],
633
+ "status": "passed",
634
+ "title": "binary to multiple decimal"
635
+ },
636
+ {
637
+ "ancestorTitles": [
638
+ "Converter"
639
+ ],
640
+ "duration": 0,
641
+ "failureDetails": [],
642
+ "failureMessages": [],
643
+ "fullName": "Converter decimal to binary",
644
+ "invocations": 1,
645
+ "location": null,
646
+ "numPassingAsserts": 1,
647
+ "retryReasons": [],
648
+ "status": "passed",
649
+ "title": "decimal to binary"
650
+ },
651
+ {
652
+ "ancestorTitles": [
653
+ "Converter"
654
+ ],
655
+ "duration": 0,
656
+ "failureDetails": [],
657
+ "failureMessages": [],
658
+ "fullName": "Converter trinary to hexadecimal",
659
+ "invocations": 1,
660
+ "location": null,
661
+ "numPassingAsserts": 1,
662
+ "retryReasons": [],
663
+ "status": "passed",
664
+ "title": "trinary to hexadecimal"
665
+ },
666
+ {
667
+ "ancestorTitles": [
668
+ "Converter"
669
+ ],
670
+ "duration": 1,
671
+ "failureDetails": [],
672
+ "failureMessages": [],
673
+ "fullName": "Converter hexadecimal to trinary",
674
+ "invocations": 1,
675
+ "location": null,
676
+ "numPassingAsserts": 1,
677
+ "retryReasons": [],
678
+ "status": "passed",
679
+ "title": "hexadecimal to trinary"
680
+ },
681
+ {
682
+ "ancestorTitles": [
683
+ "Converter"
684
+ ],
685
+ "duration": 0,
686
+ "failureDetails": [],
687
+ "failureMessages": [],
688
+ "fullName": "Converter 15-bit integer",
689
+ "invocations": 1,
690
+ "location": null,
691
+ "numPassingAsserts": 1,
692
+ "retryReasons": [],
693
+ "status": "passed",
694
+ "title": "15-bit integer"
695
+ },
696
+ {
697
+ "ancestorTitles": [
698
+ "Converter"
699
+ ],
700
+ "duration": 3,
701
+ "failureDetails": [],
702
+ "failureMessages": [],
703
+ "fullName": "Converter empty list",
704
+ "invocations": 1,
705
+ "location": null,
706
+ "numPassingAsserts": 1,
707
+ "retryReasons": [],
708
+ "status": "passed",
709
+ "title": "empty list"
710
+ },
711
+ {
712
+ "ancestorTitles": [
713
+ "Converter"
714
+ ],
715
+ "duration": 0,
716
+ "failureDetails": [],
717
+ "failureMessages": [],
718
+ "fullName": "Converter single zero",
719
+ "invocations": 1,
720
+ "location": null,
721
+ "numPassingAsserts": 1,
722
+ "retryReasons": [],
723
+ "status": "passed",
724
+ "title": "single zero"
725
+ },
726
+ {
727
+ "ancestorTitles": [
728
+ "Converter"
729
+ ],
730
+ "duration": 0,
731
+ "failureDetails": [],
732
+ "failureMessages": [],
733
+ "fullName": "Converter multiple zeros",
734
+ "invocations": 1,
735
+ "location": null,
736
+ "numPassingAsserts": 1,
737
+ "retryReasons": [],
738
+ "status": "passed",
739
+ "title": "multiple zeros"
740
+ },
741
+ {
742
+ "ancestorTitles": [
743
+ "Converter"
744
+ ],
745
+ "duration": 0,
746
+ "failureDetails": [],
747
+ "failureMessages": [],
748
+ "fullName": "Converter leading zeros",
749
+ "invocations": 1,
750
+ "location": null,
751
+ "numPassingAsserts": 1,
752
+ "retryReasons": [],
753
+ "status": "passed",
754
+ "title": "leading zeros"
755
+ },
756
+ {
757
+ "ancestorTitles": [
758
+ "Converter"
759
+ ],
760
+ "duration": 1,
761
+ "failureDetails": [],
762
+ "failureMessages": [],
763
+ "fullName": "Converter negative digit",
764
+ "invocations": 1,
765
+ "location": null,
766
+ "numPassingAsserts": 1,
767
+ "retryReasons": [],
768
+ "status": "passed",
769
+ "title": "negative digit"
770
+ },
771
+ {
772
+ "ancestorTitles": [
773
+ "Converter"
774
+ ],
775
+ "duration": 0,
776
+ "failureDetails": [],
777
+ "failureMessages": [],
778
+ "fullName": "Converter invalid positive digit",
779
+ "invocations": 1,
780
+ "location": null,
781
+ "numPassingAsserts": 1,
782
+ "retryReasons": [],
783
+ "status": "passed",
784
+ "title": "invalid positive digit"
785
+ },
786
+ {
787
+ "ancestorTitles": [
788
+ "Converter"
789
+ ],
790
+ "duration": 0,
791
+ "failureDetails": [],
792
+ "failureMessages": [],
793
+ "fullName": "Converter first base is one",
794
+ "invocations": 1,
795
+ "location": null,
796
+ "numPassingAsserts": 1,
797
+ "retryReasons": [],
798
+ "status": "passed",
799
+ "title": "first base is one"
800
+ },
801
+ {
802
+ "ancestorTitles": [
803
+ "Converter"
804
+ ],
805
+ "duration": 1,
806
+ "failureDetails": [],
807
+ "failureMessages": [],
808
+ "fullName": "Converter second base is one",
809
+ "invocations": 1,
810
+ "location": null,
811
+ "numPassingAsserts": 1,
812
+ "retryReasons": [],
813
+ "status": "passed",
814
+ "title": "second base is one"
815
+ },
816
+ {
817
+ "ancestorTitles": [
818
+ "Converter"
819
+ ],
820
+ "duration": 0,
821
+ "failureDetails": [],
822
+ "failureMessages": [],
823
+ "fullName": "Converter first base is zero",
824
+ "invocations": 1,
825
+ "location": null,
826
+ "numPassingAsserts": 1,
827
+ "retryReasons": [],
828
+ "status": "passed",
829
+ "title": "first base is zero"
830
+ },
831
+ {
832
+ "ancestorTitles": [
833
+ "Converter"
834
+ ],
835
+ "duration": 0,
836
+ "failureDetails": [],
837
+ "failureMessages": [],
838
+ "fullName": "Converter second base is zero",
839
+ "invocations": 1,
840
+ "location": null,
841
+ "numPassingAsserts": 1,
842
+ "retryReasons": [],
843
+ "status": "passed",
844
+ "title": "second base is zero"
845
+ },
846
+ {
847
+ "ancestorTitles": [
848
+ "Converter"
849
+ ],
850
+ "duration": 0,
851
+ "failureDetails": [],
852
+ "failureMessages": [],
853
+ "fullName": "Converter first base is negative",
854
+ "invocations": 1,
855
+ "location": null,
856
+ "numPassingAsserts": 1,
857
+ "retryReasons": [],
858
+ "status": "passed",
859
+ "title": "first base is negative"
860
+ },
861
+ {
862
+ "ancestorTitles": [
863
+ "Converter"
864
+ ],
865
+ "duration": 0,
866
+ "failureDetails": [],
867
+ "failureMessages": [],
868
+ "fullName": "Converter second base is negative",
869
+ "invocations": 1,
870
+ "location": null,
871
+ "numPassingAsserts": 1,
872
+ "retryReasons": [],
873
+ "status": "passed",
874
+ "title": "second base is negative"
875
+ },
876
+ {
877
+ "ancestorTitles": [
878
+ "Converter"
879
+ ],
880
+ "duration": 0,
881
+ "failureDetails": [],
882
+ "failureMessages": [],
883
+ "fullName": "Converter both bases are negative",
884
+ "invocations": 1,
885
+ "location": null,
886
+ "numPassingAsserts": 1,
887
+ "retryReasons": [],
888
+ "status": "passed",
889
+ "title": "both bases are negative"
890
+ }
891
+ ],
892
+ "endTime": 1754197839904,
893
+ "message": "",
894
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/all-your-base/all-your-base.spec.js",
895
+ "startTime": 1754197839630,
896
+ "status": "passed",
897
+ "summary": ""
898
+ }
899
+ ],
900
+ "wasInterrupted": false
901
+ }
902
+ },
903
+ "timeElapsed": 796.854,
904
+ "cost": 0,
905
+ "startTime": "2025-08-03T04:57:23.063Z",
906
+ "endTime": "2025-08-03T05:10:39.917Z",
907
+ "finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000"
908
+ },
909
+ {
910
+ "exerciseName": "allergies",
911
+ "status": "success",
912
+ "turns": 30,
913
+ "testResult": {
914
+ "passed": 50,
915
+ "failed": 0,
916
+ "total": 50,
917
+ "skipped": 0,
918
+ "success": true,
919
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":50,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":50,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754198492137,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy allergic only to eggs\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic only to eggs\"},{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy allergic to eggs and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to eggs and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy allergic to something, but not eggs\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to something, but not eggs\"},{\"ancestorTitles\":[\"Allergies\",\"testing for eggs allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for eggs allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy allergic only to peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic only to peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy allergic to peanuts and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to peanuts and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy allergic to something, but not peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to something, but not peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"testing for peanuts allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for peanuts allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy allergic only to shellfish\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic only to shellfish\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy allergic to shellfish and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to shellfish and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy allergic to something, but not shellfish\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to something, but not shellfish\"},{\"ancestorTitles\":[\"Allergies\",\"testing for shellfish allergy\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for shellfish allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy allergic only to strawberries\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic only to strawberries\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy allergic to strawberries and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to strawberries and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy allergic to something, but not strawberries\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to something, but not strawberries\"},{\"ancestorTitles\":[\"Allergies\",\"testing for strawberries allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for strawberries allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy allergic only to tomatoes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic only to tomatoes\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy allergic to tomatoes and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to tomatoes and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy allergic to something, but not tomatoes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to something, but not tomatoes\"},{\"ancestorTitles\":[\"Allergies\",\"testing for tomatoes allergy\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for tomatoes allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy allergic only to chocolate\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic only to chocolate\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy allergic to chocolate and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to chocolate and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy allergic to something, but not chocolate\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to something, but not chocolate\"},{\"ancestorTitles\":[\"Allergies\",\"testing for chocolate allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for chocolate allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy allergic only to pollen\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic only to pollen\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy allergic to pollen and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to pollen and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy allergic to something, but not pollen\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to something, but not pollen\"},{\"ancestorTitles\":[\"Allergies\",\"testing for pollen allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for pollen allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy not allergic to anything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"not allergic to anything\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy allergic only to cats\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic only to cats\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy allergic to cats and something else\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to cats and something else\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy allergic to something, but not cats\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to something, but not cats\"},{\"ancestorTitles\":[\"Allergies\",\"testing for cats allergy\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies testing for cats allergy allergic to everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"allergic to everything\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: no allergies\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"no allergies\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: just eggs\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"just eggs\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: just peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"just peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: just strawberries\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"just strawberries\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: eggs and peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"eggs and peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: more than eggs but not peanuts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"more than eggs but not peanuts\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: lots of stuff\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"lots of stuff\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: everything\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"everything\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: no allergen score parts\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"no allergen score parts\"},{\"ancestorTitles\":[\"Allergies\",\"list when:\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Allergies list when: no allergen score parts without highest valid score\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"no allergen score parts without highest valid score\"}],\"endTime\":1754198492235,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/allergies/allergies.spec.js\",\"startTime\":1754198492148,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
920
+ "details": {
921
+ "numFailedTestSuites": 0,
922
+ "numFailedTests": 0,
923
+ "numPassedTestSuites": 1,
924
+ "numPassedTests": 50,
925
+ "numPendingTestSuites": 0,
926
+ "numPendingTests": 0,
927
+ "numRuntimeErrorTestSuites": 0,
928
+ "numTodoTests": 0,
929
+ "numTotalTestSuites": 1,
930
+ "numTotalTests": 50,
931
+ "openHandles": [],
932
+ "snapshot": {
933
+ "added": 0,
934
+ "didUpdate": false,
935
+ "failure": false,
936
+ "filesAdded": 0,
937
+ "filesRemoved": 0,
938
+ "filesRemovedList": [],
939
+ "filesUnmatched": 0,
940
+ "filesUpdated": 0,
941
+ "matched": 0,
942
+ "total": 0,
943
+ "unchecked": 0,
944
+ "uncheckedKeysByFile": [],
945
+ "unmatched": 0,
946
+ "updated": 0
947
+ },
948
+ "startTime": 1754198492137,
949
+ "success": true,
950
+ "testResults": [
951
+ {
952
+ "assertionResults": [
953
+ {
954
+ "ancestorTitles": [
955
+ "Allergies",
956
+ "testing for eggs allergy"
957
+ ],
958
+ "duration": 1,
959
+ "failureDetails": [],
960
+ "failureMessages": [],
961
+ "fullName": "Allergies testing for eggs allergy not allergic to anything",
962
+ "invocations": 1,
963
+ "location": null,
964
+ "numPassingAsserts": 1,
965
+ "retryReasons": [],
966
+ "status": "passed",
967
+ "title": "not allergic to anything"
968
+ },
969
+ {
970
+ "ancestorTitles": [
971
+ "Allergies",
972
+ "testing for eggs allergy"
973
+ ],
974
+ "duration": 0,
975
+ "failureDetails": [],
976
+ "failureMessages": [],
977
+ "fullName": "Allergies testing for eggs allergy allergic only to eggs",
978
+ "invocations": 1,
979
+ "location": null,
980
+ "numPassingAsserts": 1,
981
+ "retryReasons": [],
982
+ "status": "passed",
983
+ "title": "allergic only to eggs"
984
+ },
985
+ {
986
+ "ancestorTitles": [
987
+ "Allergies",
988
+ "testing for eggs allergy"
989
+ ],
990
+ "duration": 0,
991
+ "failureDetails": [],
992
+ "failureMessages": [],
993
+ "fullName": "Allergies testing for eggs allergy allergic to eggs and something else",
994
+ "invocations": 1,
995
+ "location": null,
996
+ "numPassingAsserts": 1,
997
+ "retryReasons": [],
998
+ "status": "passed",
999
+ "title": "allergic to eggs and something else"
1000
+ },
1001
+ {
1002
+ "ancestorTitles": [
1003
+ "Allergies",
1004
+ "testing for eggs allergy"
1005
+ ],
1006
+ "duration": 0,
1007
+ "failureDetails": [],
1008
+ "failureMessages": [],
1009
+ "fullName": "Allergies testing for eggs allergy allergic to something, but not eggs",
1010
+ "invocations": 1,
1011
+ "location": null,
1012
+ "numPassingAsserts": 1,
1013
+ "retryReasons": [],
1014
+ "status": "passed",
1015
+ "title": "allergic to something, but not eggs"
1016
+ },
1017
+ {
1018
+ "ancestorTitles": [
1019
+ "Allergies",
1020
+ "testing for eggs allergy"
1021
+ ],
1022
+ "duration": 0,
1023
+ "failureDetails": [],
1024
+ "failureMessages": [],
1025
+ "fullName": "Allergies testing for eggs allergy allergic to everything",
1026
+ "invocations": 1,
1027
+ "location": null,
1028
+ "numPassingAsserts": 1,
1029
+ "retryReasons": [],
1030
+ "status": "passed",
1031
+ "title": "allergic to everything"
1032
+ },
1033
+ {
1034
+ "ancestorTitles": [
1035
+ "Allergies",
1036
+ "testing for peanuts allergy"
1037
+ ],
1038
+ "duration": 0,
1039
+ "failureDetails": [],
1040
+ "failureMessages": [],
1041
+ "fullName": "Allergies testing for peanuts allergy not allergic to anything",
1042
+ "invocations": 1,
1043
+ "location": null,
1044
+ "numPassingAsserts": 1,
1045
+ "retryReasons": [],
1046
+ "status": "passed",
1047
+ "title": "not allergic to anything"
1048
+ },
1049
+ {
1050
+ "ancestorTitles": [
1051
+ "Allergies",
1052
+ "testing for peanuts allergy"
1053
+ ],
1054
+ "duration": 0,
1055
+ "failureDetails": [],
1056
+ "failureMessages": [],
1057
+ "fullName": "Allergies testing for peanuts allergy allergic only to peanuts",
1058
+ "invocations": 1,
1059
+ "location": null,
1060
+ "numPassingAsserts": 1,
1061
+ "retryReasons": [],
1062
+ "status": "passed",
1063
+ "title": "allergic only to peanuts"
1064
+ },
1065
+ {
1066
+ "ancestorTitles": [
1067
+ "Allergies",
1068
+ "testing for peanuts allergy"
1069
+ ],
1070
+ "duration": 0,
1071
+ "failureDetails": [],
1072
+ "failureMessages": [],
1073
+ "fullName": "Allergies testing for peanuts allergy allergic to peanuts and something else",
1074
+ "invocations": 1,
1075
+ "location": null,
1076
+ "numPassingAsserts": 1,
1077
+ "retryReasons": [],
1078
+ "status": "passed",
1079
+ "title": "allergic to peanuts and something else"
1080
+ },
1081
+ {
1082
+ "ancestorTitles": [
1083
+ "Allergies",
1084
+ "testing for peanuts allergy"
1085
+ ],
1086
+ "duration": 0,
1087
+ "failureDetails": [],
1088
+ "failureMessages": [],
1089
+ "fullName": "Allergies testing for peanuts allergy allergic to something, but not peanuts",
1090
+ "invocations": 1,
1091
+ "location": null,
1092
+ "numPassingAsserts": 1,
1093
+ "retryReasons": [],
1094
+ "status": "passed",
1095
+ "title": "allergic to something, but not peanuts"
1096
+ },
1097
+ {
1098
+ "ancestorTitles": [
1099
+ "Allergies",
1100
+ "testing for peanuts allergy"
1101
+ ],
1102
+ "duration": 0,
1103
+ "failureDetails": [],
1104
+ "failureMessages": [],
1105
+ "fullName": "Allergies testing for peanuts allergy allergic to everything",
1106
+ "invocations": 1,
1107
+ "location": null,
1108
+ "numPassingAsserts": 1,
1109
+ "retryReasons": [],
1110
+ "status": "passed",
1111
+ "title": "allergic to everything"
1112
+ },
1113
+ {
1114
+ "ancestorTitles": [
1115
+ "Allergies",
1116
+ "testing for shellfish allergy"
1117
+ ],
1118
+ "duration": 0,
1119
+ "failureDetails": [],
1120
+ "failureMessages": [],
1121
+ "fullName": "Allergies testing for shellfish allergy not allergic to anything",
1122
+ "invocations": 1,
1123
+ "location": null,
1124
+ "numPassingAsserts": 1,
1125
+ "retryReasons": [],
1126
+ "status": "passed",
1127
+ "title": "not allergic to anything"
1128
+ },
1129
+ {
1130
+ "ancestorTitles": [
1131
+ "Allergies",
1132
+ "testing for shellfish allergy"
1133
+ ],
1134
+ "duration": 0,
1135
+ "failureDetails": [],
1136
+ "failureMessages": [],
1137
+ "fullName": "Allergies testing for shellfish allergy allergic only to shellfish",
1138
+ "invocations": 1,
1139
+ "location": null,
1140
+ "numPassingAsserts": 1,
1141
+ "retryReasons": [],
1142
+ "status": "passed",
1143
+ "title": "allergic only to shellfish"
1144
+ },
1145
+ {
1146
+ "ancestorTitles": [
1147
+ "Allergies",
1148
+ "testing for shellfish allergy"
1149
+ ],
1150
+ "duration": 0,
1151
+ "failureDetails": [],
1152
+ "failureMessages": [],
1153
+ "fullName": "Allergies testing for shellfish allergy allergic to shellfish and something else",
1154
+ "invocations": 1,
1155
+ "location": null,
1156
+ "numPassingAsserts": 1,
1157
+ "retryReasons": [],
1158
+ "status": "passed",
1159
+ "title": "allergic to shellfish and something else"
1160
+ },
1161
+ {
1162
+ "ancestorTitles": [
1163
+ "Allergies",
1164
+ "testing for shellfish allergy"
1165
+ ],
1166
+ "duration": 0,
1167
+ "failureDetails": [],
1168
+ "failureMessages": [],
1169
+ "fullName": "Allergies testing for shellfish allergy allergic to something, but not shellfish",
1170
+ "invocations": 1,
1171
+ "location": null,
1172
+ "numPassingAsserts": 1,
1173
+ "retryReasons": [],
1174
+ "status": "passed",
1175
+ "title": "allergic to something, but not shellfish"
1176
+ },
1177
+ {
1178
+ "ancestorTitles": [
1179
+ "Allergies",
1180
+ "testing for shellfish allergy"
1181
+ ],
1182
+ "duration": 1,
1183
+ "failureDetails": [],
1184
+ "failureMessages": [],
1185
+ "fullName": "Allergies testing for shellfish allergy allergic to everything",
1186
+ "invocations": 1,
1187
+ "location": null,
1188
+ "numPassingAsserts": 1,
1189
+ "retryReasons": [],
1190
+ "status": "passed",
1191
+ "title": "allergic to everything"
1192
+ },
1193
+ {
1194
+ "ancestorTitles": [
1195
+ "Allergies",
1196
+ "testing for strawberries allergy"
1197
+ ],
1198
+ "duration": 0,
1199
+ "failureDetails": [],
1200
+ "failureMessages": [],
1201
+ "fullName": "Allergies testing for strawberries allergy not allergic to anything",
1202
+ "invocations": 1,
1203
+ "location": null,
1204
+ "numPassingAsserts": 1,
1205
+ "retryReasons": [],
1206
+ "status": "passed",
1207
+ "title": "not allergic to anything"
1208
+ },
1209
+ {
1210
+ "ancestorTitles": [
1211
+ "Allergies",
1212
+ "testing for strawberries allergy"
1213
+ ],
1214
+ "duration": 0,
1215
+ "failureDetails": [],
1216
+ "failureMessages": [],
1217
+ "fullName": "Allergies testing for strawberries allergy allergic only to strawberries",
1218
+ "invocations": 1,
1219
+ "location": null,
1220
+ "numPassingAsserts": 1,
1221
+ "retryReasons": [],
1222
+ "status": "passed",
1223
+ "title": "allergic only to strawberries"
1224
+ },
1225
+ {
1226
+ "ancestorTitles": [
1227
+ "Allergies",
1228
+ "testing for strawberries allergy"
1229
+ ],
1230
+ "duration": 0,
1231
+ "failureDetails": [],
1232
+ "failureMessages": [],
1233
+ "fullName": "Allergies testing for strawberries allergy allergic to strawberries and something else",
1234
+ "invocations": 1,
1235
+ "location": null,
1236
+ "numPassingAsserts": 1,
1237
+ "retryReasons": [],
1238
+ "status": "passed",
1239
+ "title": "allergic to strawberries and something else"
1240
+ },
1241
+ {
1242
+ "ancestorTitles": [
1243
+ "Allergies",
1244
+ "testing for strawberries allergy"
1245
+ ],
1246
+ "duration": 0,
1247
+ "failureDetails": [],
1248
+ "failureMessages": [],
1249
+ "fullName": "Allergies testing for strawberries allergy allergic to something, but not strawberries",
1250
+ "invocations": 1,
1251
+ "location": null,
1252
+ "numPassingAsserts": 1,
1253
+ "retryReasons": [],
1254
+ "status": "passed",
1255
+ "title": "allergic to something, but not strawberries"
1256
+ },
1257
+ {
1258
+ "ancestorTitles": [
1259
+ "Allergies",
1260
+ "testing for strawberries allergy"
1261
+ ],
1262
+ "duration": 0,
1263
+ "failureDetails": [],
1264
+ "failureMessages": [],
1265
+ "fullName": "Allergies testing for strawberries allergy allergic to everything",
1266
+ "invocations": 1,
1267
+ "location": null,
1268
+ "numPassingAsserts": 1,
1269
+ "retryReasons": [],
1270
+ "status": "passed",
1271
+ "title": "allergic to everything"
1272
+ },
1273
+ {
1274
+ "ancestorTitles": [
1275
+ "Allergies",
1276
+ "testing for tomatoes allergy"
1277
+ ],
1278
+ "duration": 0,
1279
+ "failureDetails": [],
1280
+ "failureMessages": [],
1281
+ "fullName": "Allergies testing for tomatoes allergy not allergic to anything",
1282
+ "invocations": 1,
1283
+ "location": null,
1284
+ "numPassingAsserts": 1,
1285
+ "retryReasons": [],
1286
+ "status": "passed",
1287
+ "title": "not allergic to anything"
1288
+ },
1289
+ {
1290
+ "ancestorTitles": [
1291
+ "Allergies",
1292
+ "testing for tomatoes allergy"
1293
+ ],
1294
+ "duration": 0,
1295
+ "failureDetails": [],
1296
+ "failureMessages": [],
1297
+ "fullName": "Allergies testing for tomatoes allergy allergic only to tomatoes",
1298
+ "invocations": 1,
1299
+ "location": null,
1300
+ "numPassingAsserts": 1,
1301
+ "retryReasons": [],
1302
+ "status": "passed",
1303
+ "title": "allergic only to tomatoes"
1304
+ },
1305
+ {
1306
+ "ancestorTitles": [
1307
+ "Allergies",
1308
+ "testing for tomatoes allergy"
1309
+ ],
1310
+ "duration": 0,
1311
+ "failureDetails": [],
1312
+ "failureMessages": [],
1313
+ "fullName": "Allergies testing for tomatoes allergy allergic to tomatoes and something else",
1314
+ "invocations": 1,
1315
+ "location": null,
1316
+ "numPassingAsserts": 1,
1317
+ "retryReasons": [],
1318
+ "status": "passed",
1319
+ "title": "allergic to tomatoes and something else"
1320
+ },
1321
+ {
1322
+ "ancestorTitles": [
1323
+ "Allergies",
1324
+ "testing for tomatoes allergy"
1325
+ ],
1326
+ "duration": 0,
1327
+ "failureDetails": [],
1328
+ "failureMessages": [],
1329
+ "fullName": "Allergies testing for tomatoes allergy allergic to something, but not tomatoes",
1330
+ "invocations": 1,
1331
+ "location": null,
1332
+ "numPassingAsserts": 1,
1333
+ "retryReasons": [],
1334
+ "status": "passed",
1335
+ "title": "allergic to something, but not tomatoes"
1336
+ },
1337
+ {
1338
+ "ancestorTitles": [
1339
+ "Allergies",
1340
+ "testing for tomatoes allergy"
1341
+ ],
1342
+ "duration": 1,
1343
+ "failureDetails": [],
1344
+ "failureMessages": [],
1345
+ "fullName": "Allergies testing for tomatoes allergy allergic to everything",
1346
+ "invocations": 1,
1347
+ "location": null,
1348
+ "numPassingAsserts": 1,
1349
+ "retryReasons": [],
1350
+ "status": "passed",
1351
+ "title": "allergic to everything"
1352
+ },
1353
+ {
1354
+ "ancestorTitles": [
1355
+ "Allergies",
1356
+ "testing for chocolate allergy"
1357
+ ],
1358
+ "duration": 0,
1359
+ "failureDetails": [],
1360
+ "failureMessages": [],
1361
+ "fullName": "Allergies testing for chocolate allergy not allergic to anything",
1362
+ "invocations": 1,
1363
+ "location": null,
1364
+ "numPassingAsserts": 1,
1365
+ "retryReasons": [],
1366
+ "status": "passed",
1367
+ "title": "not allergic to anything"
1368
+ },
1369
+ {
1370
+ "ancestorTitles": [
1371
+ "Allergies",
1372
+ "testing for chocolate allergy"
1373
+ ],
1374
+ "duration": 0,
1375
+ "failureDetails": [],
1376
+ "failureMessages": [],
1377
+ "fullName": "Allergies testing for chocolate allergy allergic only to chocolate",
1378
+ "invocations": 1,
1379
+ "location": null,
1380
+ "numPassingAsserts": 1,
1381
+ "retryReasons": [],
1382
+ "status": "passed",
1383
+ "title": "allergic only to chocolate"
1384
+ },
1385
+ {
1386
+ "ancestorTitles": [
1387
+ "Allergies",
1388
+ "testing for chocolate allergy"
1389
+ ],
1390
+ "duration": 0,
1391
+ "failureDetails": [],
1392
+ "failureMessages": [],
1393
+ "fullName": "Allergies testing for chocolate allergy allergic to chocolate and something else",
1394
+ "invocations": 1,
1395
+ "location": null,
1396
+ "numPassingAsserts": 1,
1397
+ "retryReasons": [],
1398
+ "status": "passed",
1399
+ "title": "allergic to chocolate and something else"
1400
+ },
1401
+ {
1402
+ "ancestorTitles": [
1403
+ "Allergies",
1404
+ "testing for chocolate allergy"
1405
+ ],
1406
+ "duration": 0,
1407
+ "failureDetails": [],
1408
+ "failureMessages": [],
1409
+ "fullName": "Allergies testing for chocolate allergy allergic to something, but not chocolate",
1410
+ "invocations": 1,
1411
+ "location": null,
1412
+ "numPassingAsserts": 1,
1413
+ "retryReasons": [],
1414
+ "status": "passed",
1415
+ "title": "allergic to something, but not chocolate"
1416
+ },
1417
+ {
1418
+ "ancestorTitles": [
1419
+ "Allergies",
1420
+ "testing for chocolate allergy"
1421
+ ],
1422
+ "duration": 0,
1423
+ "failureDetails": [],
1424
+ "failureMessages": [],
1425
+ "fullName": "Allergies testing for chocolate allergy allergic to everything",
1426
+ "invocations": 1,
1427
+ "location": null,
1428
+ "numPassingAsserts": 1,
1429
+ "retryReasons": [],
1430
+ "status": "passed",
1431
+ "title": "allergic to everything"
1432
+ },
1433
+ {
1434
+ "ancestorTitles": [
1435
+ "Allergies",
1436
+ "testing for pollen allergy"
1437
+ ],
1438
+ "duration": 0,
1439
+ "failureDetails": [],
1440
+ "failureMessages": [],
1441
+ "fullName": "Allergies testing for pollen allergy not allergic to anything",
1442
+ "invocations": 1,
1443
+ "location": null,
1444
+ "numPassingAsserts": 1,
1445
+ "retryReasons": [],
1446
+ "status": "passed",
1447
+ "title": "not allergic to anything"
1448
+ },
1449
+ {
1450
+ "ancestorTitles": [
1451
+ "Allergies",
1452
+ "testing for pollen allergy"
1453
+ ],
1454
+ "duration": 0,
1455
+ "failureDetails": [],
1456
+ "failureMessages": [],
1457
+ "fullName": "Allergies testing for pollen allergy allergic only to pollen",
1458
+ "invocations": 1,
1459
+ "location": null,
1460
+ "numPassingAsserts": 1,
1461
+ "retryReasons": [],
1462
+ "status": "passed",
1463
+ "title": "allergic only to pollen"
1464
+ },
1465
+ {
1466
+ "ancestorTitles": [
1467
+ "Allergies",
1468
+ "testing for pollen allergy"
1469
+ ],
1470
+ "duration": 0,
1471
+ "failureDetails": [],
1472
+ "failureMessages": [],
1473
+ "fullName": "Allergies testing for pollen allergy allergic to pollen and something else",
1474
+ "invocations": 1,
1475
+ "location": null,
1476
+ "numPassingAsserts": 1,
1477
+ "retryReasons": [],
1478
+ "status": "passed",
1479
+ "title": "allergic to pollen and something else"
1480
+ },
1481
+ {
1482
+ "ancestorTitles": [
1483
+ "Allergies",
1484
+ "testing for pollen allergy"
1485
+ ],
1486
+ "duration": 0,
1487
+ "failureDetails": [],
1488
+ "failureMessages": [],
1489
+ "fullName": "Allergies testing for pollen allergy allergic to something, but not pollen",
1490
+ "invocations": 1,
1491
+ "location": null,
1492
+ "numPassingAsserts": 1,
1493
+ "retryReasons": [],
1494
+ "status": "passed",
1495
+ "title": "allergic to something, but not pollen"
1496
+ },
1497
+ {
1498
+ "ancestorTitles": [
1499
+ "Allergies",
1500
+ "testing for pollen allergy"
1501
+ ],
1502
+ "duration": 0,
1503
+ "failureDetails": [],
1504
+ "failureMessages": [],
1505
+ "fullName": "Allergies testing for pollen allergy allergic to everything",
1506
+ "invocations": 1,
1507
+ "location": null,
1508
+ "numPassingAsserts": 1,
1509
+ "retryReasons": [],
1510
+ "status": "passed",
1511
+ "title": "allergic to everything"
1512
+ },
1513
+ {
1514
+ "ancestorTitles": [
1515
+ "Allergies",
1516
+ "testing for cats allergy"
1517
+ ],
1518
+ "duration": 1,
1519
+ "failureDetails": [],
1520
+ "failureMessages": [],
1521
+ "fullName": "Allergies testing for cats allergy not allergic to anything",
1522
+ "invocations": 1,
1523
+ "location": null,
1524
+ "numPassingAsserts": 1,
1525
+ "retryReasons": [],
1526
+ "status": "passed",
1527
+ "title": "not allergic to anything"
1528
+ },
1529
+ {
1530
+ "ancestorTitles": [
1531
+ "Allergies",
1532
+ "testing for cats allergy"
1533
+ ],
1534
+ "duration": 0,
1535
+ "failureDetails": [],
1536
+ "failureMessages": [],
1537
+ "fullName": "Allergies testing for cats allergy allergic only to cats",
1538
+ "invocations": 1,
1539
+ "location": null,
1540
+ "numPassingAsserts": 1,
1541
+ "retryReasons": [],
1542
+ "status": "passed",
1543
+ "title": "allergic only to cats"
1544
+ },
1545
+ {
1546
+ "ancestorTitles": [
1547
+ "Allergies",
1548
+ "testing for cats allergy"
1549
+ ],
1550
+ "duration": 0,
1551
+ "failureDetails": [],
1552
+ "failureMessages": [],
1553
+ "fullName": "Allergies testing for cats allergy allergic to cats and something else",
1554
+ "invocations": 1,
1555
+ "location": null,
1556
+ "numPassingAsserts": 1,
1557
+ "retryReasons": [],
1558
+ "status": "passed",
1559
+ "title": "allergic to cats and something else"
1560
+ },
1561
+ {
1562
+ "ancestorTitles": [
1563
+ "Allergies",
1564
+ "testing for cats allergy"
1565
+ ],
1566
+ "duration": 0,
1567
+ "failureDetails": [],
1568
+ "failureMessages": [],
1569
+ "fullName": "Allergies testing for cats allergy allergic to something, but not cats",
1570
+ "invocations": 1,
1571
+ "location": null,
1572
+ "numPassingAsserts": 1,
1573
+ "retryReasons": [],
1574
+ "status": "passed",
1575
+ "title": "allergic to something, but not cats"
1576
+ },
1577
+ {
1578
+ "ancestorTitles": [
1579
+ "Allergies",
1580
+ "testing for cats allergy"
1581
+ ],
1582
+ "duration": 0,
1583
+ "failureDetails": [],
1584
+ "failureMessages": [],
1585
+ "fullName": "Allergies testing for cats allergy allergic to everything",
1586
+ "invocations": 1,
1587
+ "location": null,
1588
+ "numPassingAsserts": 1,
1589
+ "retryReasons": [],
1590
+ "status": "passed",
1591
+ "title": "allergic to everything"
1592
+ },
1593
+ {
1594
+ "ancestorTitles": [
1595
+ "Allergies",
1596
+ "list when:"
1597
+ ],
1598
+ "duration": 0,
1599
+ "failureDetails": [],
1600
+ "failureMessages": [],
1601
+ "fullName": "Allergies list when: no allergies",
1602
+ "invocations": 1,
1603
+ "location": null,
1604
+ "numPassingAsserts": 1,
1605
+ "retryReasons": [],
1606
+ "status": "passed",
1607
+ "title": "no allergies"
1608
+ },
1609
+ {
1610
+ "ancestorTitles": [
1611
+ "Allergies",
1612
+ "list when:"
1613
+ ],
1614
+ "duration": 0,
1615
+ "failureDetails": [],
1616
+ "failureMessages": [],
1617
+ "fullName": "Allergies list when: just eggs",
1618
+ "invocations": 1,
1619
+ "location": null,
1620
+ "numPassingAsserts": 1,
1621
+ "retryReasons": [],
1622
+ "status": "passed",
1623
+ "title": "just eggs"
1624
+ },
1625
+ {
1626
+ "ancestorTitles": [
1627
+ "Allergies",
1628
+ "list when:"
1629
+ ],
1630
+ "duration": 0,
1631
+ "failureDetails": [],
1632
+ "failureMessages": [],
1633
+ "fullName": "Allergies list when: just peanuts",
1634
+ "invocations": 1,
1635
+ "location": null,
1636
+ "numPassingAsserts": 1,
1637
+ "retryReasons": [],
1638
+ "status": "passed",
1639
+ "title": "just peanuts"
1640
+ },
1641
+ {
1642
+ "ancestorTitles": [
1643
+ "Allergies",
1644
+ "list when:"
1645
+ ],
1646
+ "duration": 0,
1647
+ "failureDetails": [],
1648
+ "failureMessages": [],
1649
+ "fullName": "Allergies list when: just strawberries",
1650
+ "invocations": 1,
1651
+ "location": null,
1652
+ "numPassingAsserts": 1,
1653
+ "retryReasons": [],
1654
+ "status": "passed",
1655
+ "title": "just strawberries"
1656
+ },
1657
+ {
1658
+ "ancestorTitles": [
1659
+ "Allergies",
1660
+ "list when:"
1661
+ ],
1662
+ "duration": 1,
1663
+ "failureDetails": [],
1664
+ "failureMessages": [],
1665
+ "fullName": "Allergies list when: eggs and peanuts",
1666
+ "invocations": 1,
1667
+ "location": null,
1668
+ "numPassingAsserts": 1,
1669
+ "retryReasons": [],
1670
+ "status": "passed",
1671
+ "title": "eggs and peanuts"
1672
+ },
1673
+ {
1674
+ "ancestorTitles": [
1675
+ "Allergies",
1676
+ "list when:"
1677
+ ],
1678
+ "duration": 0,
1679
+ "failureDetails": [],
1680
+ "failureMessages": [],
1681
+ "fullName": "Allergies list when: more than eggs but not peanuts",
1682
+ "invocations": 1,
1683
+ "location": null,
1684
+ "numPassingAsserts": 1,
1685
+ "retryReasons": [],
1686
+ "status": "passed",
1687
+ "title": "more than eggs but not peanuts"
1688
+ },
1689
+ {
1690
+ "ancestorTitles": [
1691
+ "Allergies",
1692
+ "list when:"
1693
+ ],
1694
+ "duration": 0,
1695
+ "failureDetails": [],
1696
+ "failureMessages": [],
1697
+ "fullName": "Allergies list when: lots of stuff",
1698
+ "invocations": 1,
1699
+ "location": null,
1700
+ "numPassingAsserts": 1,
1701
+ "retryReasons": [],
1702
+ "status": "passed",
1703
+ "title": "lots of stuff"
1704
+ },
1705
+ {
1706
+ "ancestorTitles": [
1707
+ "Allergies",
1708
+ "list when:"
1709
+ ],
1710
+ "duration": 0,
1711
+ "failureDetails": [],
1712
+ "failureMessages": [],
1713
+ "fullName": "Allergies list when: everything",
1714
+ "invocations": 1,
1715
+ "location": null,
1716
+ "numPassingAsserts": 1,
1717
+ "retryReasons": [],
1718
+ "status": "passed",
1719
+ "title": "everything"
1720
+ },
1721
+ {
1722
+ "ancestorTitles": [
1723
+ "Allergies",
1724
+ "list when:"
1725
+ ],
1726
+ "duration": 0,
1727
+ "failureDetails": [],
1728
+ "failureMessages": [],
1729
+ "fullName": "Allergies list when: no allergen score parts",
1730
+ "invocations": 1,
1731
+ "location": null,
1732
+ "numPassingAsserts": 1,
1733
+ "retryReasons": [],
1734
+ "status": "passed",
1735
+ "title": "no allergen score parts"
1736
+ },
1737
+ {
1738
+ "ancestorTitles": [
1739
+ "Allergies",
1740
+ "list when:"
1741
+ ],
1742
+ "duration": 0,
1743
+ "failureDetails": [],
1744
+ "failureMessages": [],
1745
+ "fullName": "Allergies list when: no allergen score parts without highest valid score",
1746
+ "invocations": 1,
1747
+ "location": null,
1748
+ "numPassingAsserts": 1,
1749
+ "retryReasons": [],
1750
+ "status": "passed",
1751
+ "title": "no allergen score parts without highest valid score"
1752
+ }
1753
+ ],
1754
+ "endTime": 1754198492235,
1755
+ "message": "",
1756
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/allergies/allergies.spec.js",
1757
+ "startTime": 1754198492148,
1758
+ "status": "passed",
1759
+ "summary": ""
1760
+ }
1761
+ ],
1762
+ "wasInterrupted": false
1763
+ }
1764
+ },
1765
+ "timeElapsed": 652.328,
1766
+ "cost": 0,
1767
+ "startTime": "2025-08-03T05:10:39.917Z",
1768
+ "endTime": "2025-08-03T05:21:32.245Z",
1769
+ "finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000"
1770
+ },
1771
+ {
1772
+ "exerciseName": "alphametics",
1773
+ "status": "success",
1774
+ "turns": 29,
1775
+ "testResult": {
1776
+ "passed": 9,
1777
+ "failed": 0,
1778
+ "total": 9,
1779
+ "skipped": 0,
1780
+ "success": true,
1781
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":9,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":9,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754199205692,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with three letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"puzzle with three letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle solution must have unique value for each letter\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"solution must have unique value for each letter\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":5,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle leading zero solution is invalid\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"leading zero solution is invalid\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":3,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with four letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"puzzle with four letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":70,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with six letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"puzzle with six letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":207,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with seven letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"puzzle with seven letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":960,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with eight letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"puzzle with eight letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":2019,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with ten letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"puzzle with ten letters\"},{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":7386,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Solve the alphametics puzzle puzzle with ten letters and 199 addends\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"puzzle with ten letters and 199 addends\"}],\"endTime\":1754199216447,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/alphametics/alphametics.spec.js\",\"startTime\":1754199205702,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
1782
+ "details": {
1783
+ "numFailedTestSuites": 0,
1784
+ "numFailedTests": 0,
1785
+ "numPassedTestSuites": 1,
1786
+ "numPassedTests": 9,
1787
+ "numPendingTestSuites": 0,
1788
+ "numPendingTests": 0,
1789
+ "numRuntimeErrorTestSuites": 0,
1790
+ "numTodoTests": 0,
1791
+ "numTotalTestSuites": 1,
1792
+ "numTotalTests": 9,
1793
+ "openHandles": [],
1794
+ "snapshot": {
1795
+ "added": 0,
1796
+ "didUpdate": false,
1797
+ "failure": false,
1798
+ "filesAdded": 0,
1799
+ "filesRemoved": 0,
1800
+ "filesRemovedList": [],
1801
+ "filesUnmatched": 0,
1802
+ "filesUpdated": 0,
1803
+ "matched": 0,
1804
+ "total": 0,
1805
+ "unchecked": 0,
1806
+ "uncheckedKeysByFile": [],
1807
+ "unmatched": 0,
1808
+ "updated": 0
1809
+ },
1810
+ "startTime": 1754199205692,
1811
+ "success": true,
1812
+ "testResults": [
1813
+ {
1814
+ "assertionResults": [
1815
+ {
1816
+ "ancestorTitles": [
1817
+ "Solve the alphametics puzzle"
1818
+ ],
1819
+ "duration": 1,
1820
+ "failureDetails": [],
1821
+ "failureMessages": [],
1822
+ "fullName": "Solve the alphametics puzzle puzzle with three letters",
1823
+ "invocations": 1,
1824
+ "location": null,
1825
+ "numPassingAsserts": 1,
1826
+ "retryReasons": [],
1827
+ "status": "passed",
1828
+ "title": "puzzle with three letters"
1829
+ },
1830
+ {
1831
+ "ancestorTitles": [
1832
+ "Solve the alphametics puzzle"
1833
+ ],
1834
+ "duration": 0,
1835
+ "failureDetails": [],
1836
+ "failureMessages": [],
1837
+ "fullName": "Solve the alphametics puzzle solution must have unique value for each letter",
1838
+ "invocations": 1,
1839
+ "location": null,
1840
+ "numPassingAsserts": 1,
1841
+ "retryReasons": [],
1842
+ "status": "passed",
1843
+ "title": "solution must have unique value for each letter"
1844
+ },
1845
+ {
1846
+ "ancestorTitles": [
1847
+ "Solve the alphametics puzzle"
1848
+ ],
1849
+ "duration": 5,
1850
+ "failureDetails": [],
1851
+ "failureMessages": [],
1852
+ "fullName": "Solve the alphametics puzzle leading zero solution is invalid",
1853
+ "invocations": 1,
1854
+ "location": null,
1855
+ "numPassingAsserts": 1,
1856
+ "retryReasons": [],
1857
+ "status": "passed",
1858
+ "title": "leading zero solution is invalid"
1859
+ },
1860
+ {
1861
+ "ancestorTitles": [
1862
+ "Solve the alphametics puzzle"
1863
+ ],
1864
+ "duration": 3,
1865
+ "failureDetails": [],
1866
+ "failureMessages": [],
1867
+ "fullName": "Solve the alphametics puzzle puzzle with four letters",
1868
+ "invocations": 1,
1869
+ "location": null,
1870
+ "numPassingAsserts": 1,
1871
+ "retryReasons": [],
1872
+ "status": "passed",
1873
+ "title": "puzzle with four letters"
1874
+ },
1875
+ {
1876
+ "ancestorTitles": [
1877
+ "Solve the alphametics puzzle"
1878
+ ],
1879
+ "duration": 70,
1880
+ "failureDetails": [],
1881
+ "failureMessages": [],
1882
+ "fullName": "Solve the alphametics puzzle puzzle with six letters",
1883
+ "invocations": 1,
1884
+ "location": null,
1885
+ "numPassingAsserts": 1,
1886
+ "retryReasons": [],
1887
+ "status": "passed",
1888
+ "title": "puzzle with six letters"
1889
+ },
1890
+ {
1891
+ "ancestorTitles": [
1892
+ "Solve the alphametics puzzle"
1893
+ ],
1894
+ "duration": 207,
1895
+ "failureDetails": [],
1896
+ "failureMessages": [],
1897
+ "fullName": "Solve the alphametics puzzle puzzle with seven letters",
1898
+ "invocations": 1,
1899
+ "location": null,
1900
+ "numPassingAsserts": 1,
1901
+ "retryReasons": [],
1902
+ "status": "passed",
1903
+ "title": "puzzle with seven letters"
1904
+ },
1905
+ {
1906
+ "ancestorTitles": [
1907
+ "Solve the alphametics puzzle"
1908
+ ],
1909
+ "duration": 960,
1910
+ "failureDetails": [],
1911
+ "failureMessages": [],
1912
+ "fullName": "Solve the alphametics puzzle puzzle with eight letters",
1913
+ "invocations": 1,
1914
+ "location": null,
1915
+ "numPassingAsserts": 1,
1916
+ "retryReasons": [],
1917
+ "status": "passed",
1918
+ "title": "puzzle with eight letters"
1919
+ },
1920
+ {
1921
+ "ancestorTitles": [
1922
+ "Solve the alphametics puzzle"
1923
+ ],
1924
+ "duration": 2019,
1925
+ "failureDetails": [],
1926
+ "failureMessages": [],
1927
+ "fullName": "Solve the alphametics puzzle puzzle with ten letters",
1928
+ "invocations": 1,
1929
+ "location": null,
1930
+ "numPassingAsserts": 1,
1931
+ "retryReasons": [],
1932
+ "status": "passed",
1933
+ "title": "puzzle with ten letters"
1934
+ },
1935
+ {
1936
+ "ancestorTitles": [
1937
+ "Solve the alphametics puzzle"
1938
+ ],
1939
+ "duration": 7386,
1940
+ "failureDetails": [],
1941
+ "failureMessages": [],
1942
+ "fullName": "Solve the alphametics puzzle puzzle with ten letters and 199 addends",
1943
+ "invocations": 1,
1944
+ "location": null,
1945
+ "numPassingAsserts": 1,
1946
+ "retryReasons": [],
1947
+ "status": "passed",
1948
+ "title": "puzzle with ten letters and 199 addends"
1949
+ }
1950
+ ],
1951
+ "endTime": 1754199216447,
1952
+ "message": "",
1953
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/alphametics/alphametics.spec.js",
1954
+ "startTime": 1754199205702,
1955
+ "status": "passed",
1956
+ "summary": ""
1957
+ }
1958
+ ],
1959
+ "wasInterrupted": false
1960
+ }
1961
+ },
1962
+ "timeElapsed": 724.252,
1963
+ "cost": 0,
1964
+ "startTime": "2025-08-03T05:21:32.245Z",
1965
+ "endTime": "2025-08-03T05:33:36.497Z",
1966
+ "finalOutput": "I've successfully implemented and tested the alphametics puzzle solver. The implementation correctly:\n\n1. Parses puzzle strings like \"I + BB == ILL\" and extracts all unique letters\n2. Handles constraints such as unique digits per letter and no leading zeros\n3. Generates permutations of digits 0-9 for letter assignments\n4. Validates solutions properly\n\nThe tests show that the solution is working correctly:\n- The basic puzzle \"I + BB == ILL\" returns the expected mapping { I: 1, B: 9, L: 0 }\n- Complex puzzles like \"SEND + MORE == MONEY\" work correctly\n- Edge cases such as leading zero validation properly return null\n- All test cases pass with the correct letter-to-digit mappings\n\nThe implementation correctly handles:\n- Parsing of puzzle strings\n- Extraction of unique letters\n- Identification of first letters (can't be zero)\n- Generation of digit permutations\n- Validation of solutions with proper leading zero constraints\n\nAll tests in alphametics.spec.js that were previously marked as xtest have been converted to regular test cases and are now passing, confirming that the solution works correctly for all the provided test scenarios."
1967
+ },
1968
+ {
1969
+ "exerciseName": "anagram",
1970
+ "status": "success",
1971
+ "turns": 30,
1972
+ "testResult": {
1973
+ "passed": 3,
1974
+ "failed": 0,
1975
+ "total": 18,
1976
+ "skipped": 15,
1977
+ "success": true,
1978
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":3,\"numPendingTestSuites\":0,\"numPendingTests\":15,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":18,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754199649312,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Anagram\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram no matches\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"no matches\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects two anagrams\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"detects two anagrams\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect anagram subsets\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"does not detect anagram subsets\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagram\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"detects anagram\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects three anagrams\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects three anagrams\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects multiple anagrams with different case\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects multiple anagrams with different case\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect non-anagrams with identical checksum\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"does not detect non-anagrams with identical checksum\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams case-insensitively\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects anagrams case-insensitively\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams using case-insensitive subject\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects anagrams using case-insensitive subject\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams using case-insensitive possible matches\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"detects anagrams using case-insensitive possible matches\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect an anagram if the original word is repeated\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"does not detect an anagram if the original word is repeated\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram anagrams must use all letters exactly once\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"anagrams must use all letters exactly once\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"words are not anagrams of themselves\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves even if letter case is partially different\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"words are not anagrams of themselves even if letter case is partially different\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves even if letter case is completely different\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"words are not anagrams of themselves even if letter case is completely different\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words other than themselves can be anagrams\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"words other than themselves can be anagrams\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram handles case of greek letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"handles case of greek letters\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram different characters may have the same bytes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"different characters may have the same bytes\"}],\"endTime\":1754199649404,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/anagram/anagram.spec.js\",\"startTime\":1754199649323,\"status\":\"focused\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
1979
+ "details": {
1980
+ "numFailedTestSuites": 0,
1981
+ "numFailedTests": 0,
1982
+ "numPassedTestSuites": 1,
1983
+ "numPassedTests": 3,
1984
+ "numPendingTestSuites": 0,
1985
+ "numPendingTests": 15,
1986
+ "numRuntimeErrorTestSuites": 0,
1987
+ "numTodoTests": 0,
1988
+ "numTotalTestSuites": 1,
1989
+ "numTotalTests": 18,
1990
+ "openHandles": [],
1991
+ "snapshot": {
1992
+ "added": 0,
1993
+ "didUpdate": false,
1994
+ "failure": false,
1995
+ "filesAdded": 0,
1996
+ "filesRemoved": 0,
1997
+ "filesRemovedList": [],
1998
+ "filesUnmatched": 0,
1999
+ "filesUpdated": 0,
2000
+ "matched": 0,
2001
+ "total": 0,
2002
+ "unchecked": 0,
2003
+ "uncheckedKeysByFile": [],
2004
+ "unmatched": 0,
2005
+ "updated": 0
2006
+ },
2007
+ "startTime": 1754199649312,
2008
+ "success": true,
2009
+ "testResults": [
2010
+ {
2011
+ "assertionResults": [
2012
+ {
2013
+ "ancestorTitles": [
2014
+ "Anagram"
2015
+ ],
2016
+ "duration": 1,
2017
+ "failureDetails": [],
2018
+ "failureMessages": [],
2019
+ "fullName": "Anagram no matches",
2020
+ "invocations": 1,
2021
+ "location": null,
2022
+ "numPassingAsserts": 1,
2023
+ "retryReasons": [],
2024
+ "status": "passed",
2025
+ "title": "no matches"
2026
+ },
2027
+ {
2028
+ "ancestorTitles": [
2029
+ "Anagram"
2030
+ ],
2031
+ "duration": 0,
2032
+ "failureDetails": [],
2033
+ "failureMessages": [],
2034
+ "fullName": "Anagram detects two anagrams",
2035
+ "invocations": 1,
2036
+ "location": null,
2037
+ "numPassingAsserts": 1,
2038
+ "retryReasons": [],
2039
+ "status": "passed",
2040
+ "title": "detects two anagrams"
2041
+ },
2042
+ {
2043
+ "ancestorTitles": [
2044
+ "Anagram"
2045
+ ],
2046
+ "duration": null,
2047
+ "failureDetails": [],
2048
+ "failureMessages": [],
2049
+ "fullName": "Anagram does not detect anagram subsets",
2050
+ "invocations": 1,
2051
+ "location": null,
2052
+ "numPassingAsserts": 0,
2053
+ "retryReasons": [],
2054
+ "status": "pending",
2055
+ "title": "does not detect anagram subsets"
2056
+ },
2057
+ {
2058
+ "ancestorTitles": [
2059
+ "Anagram"
2060
+ ],
2061
+ "duration": 0,
2062
+ "failureDetails": [],
2063
+ "failureMessages": [],
2064
+ "fullName": "Anagram detects anagram",
2065
+ "invocations": 1,
2066
+ "location": null,
2067
+ "numPassingAsserts": 1,
2068
+ "retryReasons": [],
2069
+ "status": "passed",
2070
+ "title": "detects anagram"
2071
+ },
2072
+ {
2073
+ "ancestorTitles": [
2074
+ "Anagram"
2075
+ ],
2076
+ "duration": null,
2077
+ "failureDetails": [],
2078
+ "failureMessages": [],
2079
+ "fullName": "Anagram detects three anagrams",
2080
+ "invocations": 1,
2081
+ "location": null,
2082
+ "numPassingAsserts": 0,
2083
+ "retryReasons": [],
2084
+ "status": "pending",
2085
+ "title": "detects three anagrams"
2086
+ },
2087
+ {
2088
+ "ancestorTitles": [
2089
+ "Anagram"
2090
+ ],
2091
+ "duration": null,
2092
+ "failureDetails": [],
2093
+ "failureMessages": [],
2094
+ "fullName": "Anagram detects multiple anagrams with different case",
2095
+ "invocations": 1,
2096
+ "location": null,
2097
+ "numPassingAsserts": 0,
2098
+ "retryReasons": [],
2099
+ "status": "pending",
2100
+ "title": "detects multiple anagrams with different case"
2101
+ },
2102
+ {
2103
+ "ancestorTitles": [
2104
+ "Anagram"
2105
+ ],
2106
+ "duration": null,
2107
+ "failureDetails": [],
2108
+ "failureMessages": [],
2109
+ "fullName": "Anagram does not detect non-anagrams with identical checksum",
2110
+ "invocations": 1,
2111
+ "location": null,
2112
+ "numPassingAsserts": 0,
2113
+ "retryReasons": [],
2114
+ "status": "pending",
2115
+ "title": "does not detect non-anagrams with identical checksum"
2116
+ },
2117
+ {
2118
+ "ancestorTitles": [
2119
+ "Anagram"
2120
+ ],
2121
+ "duration": null,
2122
+ "failureDetails": [],
2123
+ "failureMessages": [],
2124
+ "fullName": "Anagram detects anagrams case-insensitively",
2125
+ "invocations": 1,
2126
+ "location": null,
2127
+ "numPassingAsserts": 0,
2128
+ "retryReasons": [],
2129
+ "status": "pending",
2130
+ "title": "detects anagrams case-insensitively"
2131
+ },
2132
+ {
2133
+ "ancestorTitles": [
2134
+ "Anagram"
2135
+ ],
2136
+ "duration": null,
2137
+ "failureDetails": [],
2138
+ "failureMessages": [],
2139
+ "fullName": "Anagram detects anagrams using case-insensitive subject",
2140
+ "invocations": 1,
2141
+ "location": null,
2142
+ "numPassingAsserts": 0,
2143
+ "retryReasons": [],
2144
+ "status": "pending",
2145
+ "title": "detects anagrams using case-insensitive subject"
2146
+ },
2147
+ {
2148
+ "ancestorTitles": [
2149
+ "Anagram"
2150
+ ],
2151
+ "duration": null,
2152
+ "failureDetails": [],
2153
+ "failureMessages": [],
2154
+ "fullName": "Anagram detects anagrams using case-insensitive possible matches",
2155
+ "invocations": 1,
2156
+ "location": null,
2157
+ "numPassingAsserts": 0,
2158
+ "retryReasons": [],
2159
+ "status": "pending",
2160
+ "title": "detects anagrams using case-insensitive possible matches"
2161
+ },
2162
+ {
2163
+ "ancestorTitles": [
2164
+ "Anagram"
2165
+ ],
2166
+ "duration": null,
2167
+ "failureDetails": [],
2168
+ "failureMessages": [],
2169
+ "fullName": "Anagram does not detect an anagram if the original word is repeated",
2170
+ "invocations": 1,
2171
+ "location": null,
2172
+ "numPassingAsserts": 0,
2173
+ "retryReasons": [],
2174
+ "status": "pending",
2175
+ "title": "does not detect an anagram if the original word is repeated"
2176
+ },
2177
+ {
2178
+ "ancestorTitles": [
2179
+ "Anagram"
2180
+ ],
2181
+ "duration": null,
2182
+ "failureDetails": [],
2183
+ "failureMessages": [],
2184
+ "fullName": "Anagram anagrams must use all letters exactly once",
2185
+ "invocations": 1,
2186
+ "location": null,
2187
+ "numPassingAsserts": 0,
2188
+ "retryReasons": [],
2189
+ "status": "pending",
2190
+ "title": "anagrams must use all letters exactly once"
2191
+ },
2192
+ {
2193
+ "ancestorTitles": [
2194
+ "Anagram"
2195
+ ],
2196
+ "duration": null,
2197
+ "failureDetails": [],
2198
+ "failureMessages": [],
2199
+ "fullName": "Anagram words are not anagrams of themselves",
2200
+ "invocations": 1,
2201
+ "location": null,
2202
+ "numPassingAsserts": 0,
2203
+ "retryReasons": [],
2204
+ "status": "pending",
2205
+ "title": "words are not anagrams of themselves"
2206
+ },
2207
+ {
2208
+ "ancestorTitles": [
2209
+ "Anagram"
2210
+ ],
2211
+ "duration": null,
2212
+ "failureDetails": [],
2213
+ "failureMessages": [],
2214
+ "fullName": "Anagram words are not anagrams of themselves even if letter case is partially different",
2215
+ "invocations": 1,
2216
+ "location": null,
2217
+ "numPassingAsserts": 0,
2218
+ "retryReasons": [],
2219
+ "status": "pending",
2220
+ "title": "words are not anagrams of themselves even if letter case is partially different"
2221
+ },
2222
+ {
2223
+ "ancestorTitles": [
2224
+ "Anagram"
2225
+ ],
2226
+ "duration": null,
2227
+ "failureDetails": [],
2228
+ "failureMessages": [],
2229
+ "fullName": "Anagram words are not anagrams of themselves even if letter case is completely different",
2230
+ "invocations": 1,
2231
+ "location": null,
2232
+ "numPassingAsserts": 0,
2233
+ "retryReasons": [],
2234
+ "status": "pending",
2235
+ "title": "words are not anagrams of themselves even if letter case is completely different"
2236
+ },
2237
+ {
2238
+ "ancestorTitles": [
2239
+ "Anagram"
2240
+ ],
2241
+ "duration": null,
2242
+ "failureDetails": [],
2243
+ "failureMessages": [],
2244
+ "fullName": "Anagram words other than themselves can be anagrams",
2245
+ "invocations": 1,
2246
+ "location": null,
2247
+ "numPassingAsserts": 0,
2248
+ "retryReasons": [],
2249
+ "status": "pending",
2250
+ "title": "words other than themselves can be anagrams"
2251
+ },
2252
+ {
2253
+ "ancestorTitles": [
2254
+ "Anagram"
2255
+ ],
2256
+ "duration": null,
2257
+ "failureDetails": [],
2258
+ "failureMessages": [],
2259
+ "fullName": "Anagram handles case of greek letters",
2260
+ "invocations": 1,
2261
+ "location": null,
2262
+ "numPassingAsserts": 0,
2263
+ "retryReasons": [],
2264
+ "status": "pending",
2265
+ "title": "handles case of greek letters"
2266
+ },
2267
+ {
2268
+ "ancestorTitles": [
2269
+ "Anagram"
2270
+ ],
2271
+ "duration": null,
2272
+ "failureDetails": [],
2273
+ "failureMessages": [],
2274
+ "fullName": "Anagram different characters may have the same bytes",
2275
+ "invocations": 1,
2276
+ "location": null,
2277
+ "numPassingAsserts": 0,
2278
+ "retryReasons": [],
2279
+ "status": "pending",
2280
+ "title": "different characters may have the same bytes"
2281
+ }
2282
+ ],
2283
+ "endTime": 1754199649404,
2284
+ "message": "",
2285
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/anagram/anagram.spec.js",
2286
+ "startTime": 1754199649323,
2287
+ "status": "focused",
2288
+ "summary": ""
2289
+ }
2290
+ ],
2291
+ "wasInterrupted": false
2292
+ }
2293
+ },
2294
+ "timeElapsed": 432.922,
2295
+ "cost": 0,
2296
+ "startTime": "2025-08-03T05:33:36.498Z",
2297
+ "endTime": "2025-08-03T05:40:49.420Z",
2298
+ "finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000"
2299
+ },
2300
+ {
2301
+ "exerciseName": "armstrong-numbers",
2302
+ "status": "success",
2303
+ "turns": 30,
2304
+ "testResult": {
2305
+ "passed": 11,
2306
+ "failed": 0,
2307
+ "total": 11,
2308
+ "skipped": 0,
2309
+ "success": true,
2310
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":11,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":11,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754200309246,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Zero is an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Zero is an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Single-digit numbers are Armstrong numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Single-digit numbers are Armstrong numbers\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers There are no two-digit Armstrong numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"There are no two-digit Armstrong numbers\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Three-digit number that is an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Three-digit number that is an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Three-digit number that is not an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Three-digit number that is not an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Four-digit number that is an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Four-digit number that is an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Four-digit number that is not an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Four-digit number that is not an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Seven-digit number that is an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Seven-digit number that is an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Seven-digit number that is not an Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Seven-digit number that is not an Armstrong number\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers Armstrong number containing seven zeroes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"Armstrong number containing seven zeroes\"},{\"ancestorTitles\":[\"Armstrong Numbers\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Armstrong Numbers The largest and last Armstrong number\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"The largest and last Armstrong number\"}],\"endTime\":1754200309357,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.spec.js\",\"startTime\":1754200309266,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
2311
+ "details": {
2312
+ "numFailedTestSuites": 0,
2313
+ "numFailedTests": 0,
2314
+ "numPassedTestSuites": 1,
2315
+ "numPassedTests": 11,
2316
+ "numPendingTestSuites": 0,
2317
+ "numPendingTests": 0,
2318
+ "numRuntimeErrorTestSuites": 0,
2319
+ "numTodoTests": 0,
2320
+ "numTotalTestSuites": 1,
2321
+ "numTotalTests": 11,
2322
+ "openHandles": [],
2323
+ "snapshot": {
2324
+ "added": 0,
2325
+ "didUpdate": false,
2326
+ "failure": false,
2327
+ "filesAdded": 0,
2328
+ "filesRemoved": 0,
2329
+ "filesRemovedList": [],
2330
+ "filesUnmatched": 0,
2331
+ "filesUpdated": 0,
2332
+ "matched": 0,
2333
+ "total": 0,
2334
+ "unchecked": 0,
2335
+ "uncheckedKeysByFile": [],
2336
+ "unmatched": 0,
2337
+ "updated": 0
2338
+ },
2339
+ "startTime": 1754200309246,
2340
+ "success": true,
2341
+ "testResults": [
2342
+ {
2343
+ "assertionResults": [
2344
+ {
2345
+ "ancestorTitles": [
2346
+ "Armstrong Numbers"
2347
+ ],
2348
+ "duration": 1,
2349
+ "failureDetails": [],
2350
+ "failureMessages": [],
2351
+ "fullName": "Armstrong Numbers Zero is an Armstrong number",
2352
+ "invocations": 1,
2353
+ "location": null,
2354
+ "numPassingAsserts": 1,
2355
+ "retryReasons": [],
2356
+ "status": "passed",
2357
+ "title": "Zero is an Armstrong number"
2358
+ },
2359
+ {
2360
+ "ancestorTitles": [
2361
+ "Armstrong Numbers"
2362
+ ],
2363
+ "duration": 0,
2364
+ "failureDetails": [],
2365
+ "failureMessages": [],
2366
+ "fullName": "Armstrong Numbers Single-digit numbers are Armstrong numbers",
2367
+ "invocations": 1,
2368
+ "location": null,
2369
+ "numPassingAsserts": 1,
2370
+ "retryReasons": [],
2371
+ "status": "passed",
2372
+ "title": "Single-digit numbers are Armstrong numbers"
2373
+ },
2374
+ {
2375
+ "ancestorTitles": [
2376
+ "Armstrong Numbers"
2377
+ ],
2378
+ "duration": 0,
2379
+ "failureDetails": [],
2380
+ "failureMessages": [],
2381
+ "fullName": "Armstrong Numbers There are no two-digit Armstrong numbers",
2382
+ "invocations": 1,
2383
+ "location": null,
2384
+ "numPassingAsserts": 1,
2385
+ "retryReasons": [],
2386
+ "status": "passed",
2387
+ "title": "There are no two-digit Armstrong numbers"
2388
+ },
2389
+ {
2390
+ "ancestorTitles": [
2391
+ "Armstrong Numbers"
2392
+ ],
2393
+ "duration": 0,
2394
+ "failureDetails": [],
2395
+ "failureMessages": [],
2396
+ "fullName": "Armstrong Numbers Three-digit number that is an Armstrong number",
2397
+ "invocations": 1,
2398
+ "location": null,
2399
+ "numPassingAsserts": 1,
2400
+ "retryReasons": [],
2401
+ "status": "passed",
2402
+ "title": "Three-digit number that is an Armstrong number"
2403
+ },
2404
+ {
2405
+ "ancestorTitles": [
2406
+ "Armstrong Numbers"
2407
+ ],
2408
+ "duration": 1,
2409
+ "failureDetails": [],
2410
+ "failureMessages": [],
2411
+ "fullName": "Armstrong Numbers Three-digit number that is not an Armstrong number",
2412
+ "invocations": 1,
2413
+ "location": null,
2414
+ "numPassingAsserts": 1,
2415
+ "retryReasons": [],
2416
+ "status": "passed",
2417
+ "title": "Three-digit number that is not an Armstrong number"
2418
+ },
2419
+ {
2420
+ "ancestorTitles": [
2421
+ "Armstrong Numbers"
2422
+ ],
2423
+ "duration": 0,
2424
+ "failureDetails": [],
2425
+ "failureMessages": [],
2426
+ "fullName": "Armstrong Numbers Four-digit number that is an Armstrong number",
2427
+ "invocations": 1,
2428
+ "location": null,
2429
+ "numPassingAsserts": 1,
2430
+ "retryReasons": [],
2431
+ "status": "passed",
2432
+ "title": "Four-digit number that is an Armstrong number"
2433
+ },
2434
+ {
2435
+ "ancestorTitles": [
2436
+ "Armstrong Numbers"
2437
+ ],
2438
+ "duration": 0,
2439
+ "failureDetails": [],
2440
+ "failureMessages": [],
2441
+ "fullName": "Armstrong Numbers Four-digit number that is not an Armstrong number",
2442
+ "invocations": 1,
2443
+ "location": null,
2444
+ "numPassingAsserts": 1,
2445
+ "retryReasons": [],
2446
+ "status": "passed",
2447
+ "title": "Four-digit number that is not an Armstrong number"
2448
+ },
2449
+ {
2450
+ "ancestorTitles": [
2451
+ "Armstrong Numbers"
2452
+ ],
2453
+ "duration": 0,
2454
+ "failureDetails": [],
2455
+ "failureMessages": [],
2456
+ "fullName": "Armstrong Numbers Seven-digit number that is an Armstrong number",
2457
+ "invocations": 1,
2458
+ "location": null,
2459
+ "numPassingAsserts": 1,
2460
+ "retryReasons": [],
2461
+ "status": "passed",
2462
+ "title": "Seven-digit number that is an Armstrong number"
2463
+ },
2464
+ {
2465
+ "ancestorTitles": [
2466
+ "Armstrong Numbers"
2467
+ ],
2468
+ "duration": 0,
2469
+ "failureDetails": [],
2470
+ "failureMessages": [],
2471
+ "fullName": "Armstrong Numbers Seven-digit number that is not an Armstrong number",
2472
+ "invocations": 1,
2473
+ "location": null,
2474
+ "numPassingAsserts": 1,
2475
+ "retryReasons": [],
2476
+ "status": "passed",
2477
+ "title": "Seven-digit number that is not an Armstrong number"
2478
+ },
2479
+ {
2480
+ "ancestorTitles": [
2481
+ "Armstrong Numbers"
2482
+ ],
2483
+ "duration": 1,
2484
+ "failureDetails": [],
2485
+ "failureMessages": [],
2486
+ "fullName": "Armstrong Numbers Armstrong number containing seven zeroes",
2487
+ "invocations": 1,
2488
+ "location": null,
2489
+ "numPassingAsserts": 1,
2490
+ "retryReasons": [],
2491
+ "status": "passed",
2492
+ "title": "Armstrong number containing seven zeroes"
2493
+ },
2494
+ {
2495
+ "ancestorTitles": [
2496
+ "Armstrong Numbers"
2497
+ ],
2498
+ "duration": 0,
2499
+ "failureDetails": [],
2500
+ "failureMessages": [],
2501
+ "fullName": "Armstrong Numbers The largest and last Armstrong number",
2502
+ "invocations": 1,
2503
+ "location": null,
2504
+ "numPassingAsserts": 1,
2505
+ "retryReasons": [],
2506
+ "status": "passed",
2507
+ "title": "The largest and last Armstrong number"
2508
+ }
2509
+ ],
2510
+ "endTime": 1754200309357,
2511
+ "message": "",
2512
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.spec.js",
2513
+ "startTime": 1754200309266,
2514
+ "status": "passed",
2515
+ "summary": ""
2516
+ }
2517
+ ],
2518
+ "wasInterrupted": false
2519
+ }
2520
+ },
2521
+ "timeElapsed": 659.946,
2522
+ "cost": 0,
2523
+ "startTime": "2025-08-03T05:40:49.420Z",
2524
+ "endTime": "2025-08-03T05:51:49.366Z",
2525
+ "finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000"
2526
+ },
2527
+ {
2528
+ "exerciseName": "atbash-cipher",
2529
+ "status": "success",
2530
+ "turns": 30,
2531
+ "testResult": {
2532
+ "passed": 1,
2533
+ "failed": 0,
2534
+ "total": 14,
2535
+ "skipped": 13,
2536
+ "success": true,
2537
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":1,\"numPendingTestSuites\":0,\"numPendingTests\":13,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":14,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754200857951,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode yes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode yes\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode no\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode no\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode OMG\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode OMG\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode spaces\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode mindblowingly\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode mindblowingly\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode numbers\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode deep thought\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode deep thought\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"encode all the letters\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode exercism\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode exercism\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode a sentence\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode a sentence\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode numbers\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode all the letters\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode with too many spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode with too many spaces\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":null,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode with no spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":0,\"retryReasons\":[],\"status\":\"pending\",\"title\":\"decode with no spaces\"}],\"endTime\":1754200858037,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/atbash-cipher/atbash-cipher.spec.js\",\"startTime\":1754200857962,\"status\":\"focused\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
2538
+ "details": {
2539
+ "numFailedTestSuites": 0,
2540
+ "numFailedTests": 0,
2541
+ "numPassedTestSuites": 1,
2542
+ "numPassedTests": 1,
2543
+ "numPendingTestSuites": 0,
2544
+ "numPendingTests": 13,
2545
+ "numRuntimeErrorTestSuites": 0,
2546
+ "numTodoTests": 0,
2547
+ "numTotalTestSuites": 1,
2548
+ "numTotalTests": 14,
2549
+ "openHandles": [],
2550
+ "snapshot": {
2551
+ "added": 0,
2552
+ "didUpdate": false,
2553
+ "failure": false,
2554
+ "filesAdded": 0,
2555
+ "filesRemoved": 0,
2556
+ "filesRemovedList": [],
2557
+ "filesUnmatched": 0,
2558
+ "filesUpdated": 0,
2559
+ "matched": 0,
2560
+ "total": 0,
2561
+ "unchecked": 0,
2562
+ "uncheckedKeysByFile": [],
2563
+ "unmatched": 0,
2564
+ "updated": 0
2565
+ },
2566
+ "startTime": 1754200857951,
2567
+ "success": true,
2568
+ "testResults": [
2569
+ {
2570
+ "assertionResults": [
2571
+ {
2572
+ "ancestorTitles": [
2573
+ "Atbash Cipher",
2574
+ "encode"
2575
+ ],
2576
+ "duration": 1,
2577
+ "failureDetails": [],
2578
+ "failureMessages": [],
2579
+ "fullName": "Atbash Cipher encode encode yes",
2580
+ "invocations": 1,
2581
+ "location": null,
2582
+ "numPassingAsserts": 1,
2583
+ "retryReasons": [],
2584
+ "status": "passed",
2585
+ "title": "encode yes"
2586
+ },
2587
+ {
2588
+ "ancestorTitles": [
2589
+ "Atbash Cipher",
2590
+ "encode"
2591
+ ],
2592
+ "duration": null,
2593
+ "failureDetails": [],
2594
+ "failureMessages": [],
2595
+ "fullName": "Atbash Cipher encode encode no",
2596
+ "invocations": 1,
2597
+ "location": null,
2598
+ "numPassingAsserts": 0,
2599
+ "retryReasons": [],
2600
+ "status": "pending",
2601
+ "title": "encode no"
2602
+ },
2603
+ {
2604
+ "ancestorTitles": [
2605
+ "Atbash Cipher",
2606
+ "encode"
2607
+ ],
2608
+ "duration": null,
2609
+ "failureDetails": [],
2610
+ "failureMessages": [],
2611
+ "fullName": "Atbash Cipher encode encode OMG",
2612
+ "invocations": 1,
2613
+ "location": null,
2614
+ "numPassingAsserts": 0,
2615
+ "retryReasons": [],
2616
+ "status": "pending",
2617
+ "title": "encode OMG"
2618
+ },
2619
+ {
2620
+ "ancestorTitles": [
2621
+ "Atbash Cipher",
2622
+ "encode"
2623
+ ],
2624
+ "duration": null,
2625
+ "failureDetails": [],
2626
+ "failureMessages": [],
2627
+ "fullName": "Atbash Cipher encode encode spaces",
2628
+ "invocations": 1,
2629
+ "location": null,
2630
+ "numPassingAsserts": 0,
2631
+ "retryReasons": [],
2632
+ "status": "pending",
2633
+ "title": "encode spaces"
2634
+ },
2635
+ {
2636
+ "ancestorTitles": [
2637
+ "Atbash Cipher",
2638
+ "encode"
2639
+ ],
2640
+ "duration": null,
2641
+ "failureDetails": [],
2642
+ "failureMessages": [],
2643
+ "fullName": "Atbash Cipher encode encode mindblowingly",
2644
+ "invocations": 1,
2645
+ "location": null,
2646
+ "numPassingAsserts": 0,
2647
+ "retryReasons": [],
2648
+ "status": "pending",
2649
+ "title": "encode mindblowingly"
2650
+ },
2651
+ {
2652
+ "ancestorTitles": [
2653
+ "Atbash Cipher",
2654
+ "encode"
2655
+ ],
2656
+ "duration": null,
2657
+ "failureDetails": [],
2658
+ "failureMessages": [],
2659
+ "fullName": "Atbash Cipher encode encode numbers",
2660
+ "invocations": 1,
2661
+ "location": null,
2662
+ "numPassingAsserts": 0,
2663
+ "retryReasons": [],
2664
+ "status": "pending",
2665
+ "title": "encode numbers"
2666
+ },
2667
+ {
2668
+ "ancestorTitles": [
2669
+ "Atbash Cipher",
2670
+ "encode"
2671
+ ],
2672
+ "duration": null,
2673
+ "failureDetails": [],
2674
+ "failureMessages": [],
2675
+ "fullName": "Atbash Cipher encode encode deep thought",
2676
+ "invocations": 1,
2677
+ "location": null,
2678
+ "numPassingAsserts": 0,
2679
+ "retryReasons": [],
2680
+ "status": "pending",
2681
+ "title": "encode deep thought"
2682
+ },
2683
+ {
2684
+ "ancestorTitles": [
2685
+ "Atbash Cipher",
2686
+ "encode"
2687
+ ],
2688
+ "duration": null,
2689
+ "failureDetails": [],
2690
+ "failureMessages": [],
2691
+ "fullName": "Atbash Cipher encode encode all the letters",
2692
+ "invocations": 1,
2693
+ "location": null,
2694
+ "numPassingAsserts": 0,
2695
+ "retryReasons": [],
2696
+ "status": "pending",
2697
+ "title": "encode all the letters"
2698
+ },
2699
+ {
2700
+ "ancestorTitles": [
2701
+ "Atbash Cipher",
2702
+ "decode"
2703
+ ],
2704
+ "duration": null,
2705
+ "failureDetails": [],
2706
+ "failureMessages": [],
2707
+ "fullName": "Atbash Cipher decode decode exercism",
2708
+ "invocations": 1,
2709
+ "location": null,
2710
+ "numPassingAsserts": 0,
2711
+ "retryReasons": [],
2712
+ "status": "pending",
2713
+ "title": "decode exercism"
2714
+ },
2715
+ {
2716
+ "ancestorTitles": [
2717
+ "Atbash Cipher",
2718
+ "decode"
2719
+ ],
2720
+ "duration": null,
2721
+ "failureDetails": [],
2722
+ "failureMessages": [],
2723
+ "fullName": "Atbash Cipher decode decode a sentence",
2724
+ "invocations": 1,
2725
+ "location": null,
2726
+ "numPassingAsserts": 0,
2727
+ "retryReasons": [],
2728
+ "status": "pending",
2729
+ "title": "decode a sentence"
2730
+ },
2731
+ {
2732
+ "ancestorTitles": [
2733
+ "Atbash Cipher",
2734
+ "decode"
2735
+ ],
2736
+ "duration": null,
2737
+ "failureDetails": [],
2738
+ "failureMessages": [],
2739
+ "fullName": "Atbash Cipher decode decode numbers",
2740
+ "invocations": 1,
2741
+ "location": null,
2742
+ "numPassingAsserts": 0,
2743
+ "retryReasons": [],
2744
+ "status": "pending",
2745
+ "title": "decode numbers"
2746
+ },
2747
+ {
2748
+ "ancestorTitles": [
2749
+ "Atbash Cipher",
2750
+ "decode"
2751
+ ],
2752
+ "duration": null,
2753
+ "failureDetails": [],
2754
+ "failureMessages": [],
2755
+ "fullName": "Atbash Cipher decode decode all the letters",
2756
+ "invocations": 1,
2757
+ "location": null,
2758
+ "numPassingAsserts": 0,
2759
+ "retryReasons": [],
2760
+ "status": "pending",
2761
+ "title": "decode all the letters"
2762
+ },
2763
+ {
2764
+ "ancestorTitles": [
2765
+ "Atbash Cipher",
2766
+ "decode"
2767
+ ],
2768
+ "duration": null,
2769
+ "failureDetails": [],
2770
+ "failureMessages": [],
2771
+ "fullName": "Atbash Cipher decode decode with too many spaces",
2772
+ "invocations": 1,
2773
+ "location": null,
2774
+ "numPassingAsserts": 0,
2775
+ "retryReasons": [],
2776
+ "status": "pending",
2777
+ "title": "decode with too many spaces"
2778
+ },
2779
+ {
2780
+ "ancestorTitles": [
2781
+ "Atbash Cipher",
2782
+ "decode"
2783
+ ],
2784
+ "duration": null,
2785
+ "failureDetails": [],
2786
+ "failureMessages": [],
2787
+ "fullName": "Atbash Cipher decode decode with no spaces",
2788
+ "invocations": 1,
2789
+ "location": null,
2790
+ "numPassingAsserts": 0,
2791
+ "retryReasons": [],
2792
+ "status": "pending",
2793
+ "title": "decode with no spaces"
2794
+ }
2795
+ ],
2796
+ "endTime": 1754200858037,
2797
+ "message": "",
2798
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/atbash-cipher/atbash-cipher.spec.js",
2799
+ "startTime": 1754200857962,
2800
+ "status": "focused",
2801
+ "summary": ""
2802
+ }
2803
+ ],
2804
+ "wasInterrupted": false
2805
+ }
2806
+ },
2807
+ "timeElapsed": 548.692,
2808
+ "cost": 0,
2809
+ "startTime": "2025-08-03T05:51:49.366Z",
2810
+ "endTime": "2025-08-03T06:00:58.058Z",
2811
+ "finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000"
2812
+ },
2813
+ {
2814
+ "exerciseName": "bank-account",
2815
+ "status": "success",
2816
+ "turns": 30,
2817
+ "testResult": {
2818
+ "passed": 0,
2819
+ "failed": 0,
2820
+ "total": 0,
2821
+ "skipped": 0,
2822
+ "success": false,
2823
+ "output": "{\"numFailedTestSuites\":1,\"numFailedTests\":0,\"numPassedTestSuites\":0,\"numPassedTests\":0,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":1,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":0,\"openHandles\":[],\"snapshot\":{\"added\":0,\"didUpdate\":false,\"failure\":false,\"filesAdded\":0,\"filesRemoved\":0,\"filesRemovedList\":[],\"filesUnmatched\":0,\"filesUpdated\":0,\"matched\":0,\"total\":0,\"unchecked\":0,\"uncheckedKeysByFile\":[],\"unmatched\":0,\"updated\":0},\"startTime\":1754201700853,\"success\":false,\"testResults\":[{\"assertionResults\":[],\"coverage\":{},\"endTime\":1754201700960,\"message\":\" ● Test suite failed to run\\n\\n Cannot find module '@exercism/babel-preset-javascript'\\n Require stack:\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@babel/core/lib/config/files/plugins.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@babel/core/lib/config/files/index.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@babel/core/lib/index.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-snapshot/build/InlineSnapshots.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-snapshot/build/State.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-snapshot/build/index.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-runtime/build/index.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@jest/core/build/cli/index.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@jest/core/build/index.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-cli/build/run.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-cli/build/index.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-cli/bin/jest.js\\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest/bin/jest.js\\n\\n Make sure that all the Babel plugins and presets you are using\\n are defined as dependencies or devDependencies in your package.json\\n file. It's possible that the missing plugin is loaded by a preset\\n you are using that forgot to add the plugin to its dependencies: you\\n can workaround this problem by explicitly adding the missing package\\n to your top-level package.json.\\n\\n at tryRequireResolve (../../../node_modules/@babel/core/src/config/files/plugins.ts:140:36)\\n at tryRequireResolve (../../../node_modules/@babel/core/src/config/files/plugins.ts:168:19)\\n at resolveStandardizedNameForRequire (../../../node_modules/@babel/core/src/config/files/plugins.ts:196:12)\\n at resolvePreset (../../../node_modules/@babel/core/src/config/files/plugins.ts:50:32)\\n at loadPreset.next (<anonymous>)\\n at resolver (../../../node_modules/@babel/core/src/config/config-descriptors.ts:326:35)\\n at createDescriptor.next (<anonymous>)\\n at evaluateSync (../../../node_modules/gensync/index.js:251:28)\\n at ../../../node_modules/gensync/index.js:31:34\\n at Array.map (<anonymous>)\\n at Function.sync (../../../node_modules/gensync/index.js:31:22)\\n at Function.all (../../../node_modules/gensync/index.js:210:24)\\n at all (../../../node_modules/@babel/core/src/config/config-descriptors.ts:267:38)\\n at createDescriptors.next (<anonymous>)\\n at createDescriptors (../../../node_modules/@babel/core/src/config/config-descriptors.ts:243:17)\\n at createPresetDescriptors.next (<anonymous>)\\n at fn (../../../node_modules/@babel/core/src/gensync-utils/functional.ts:18:46)\\n at presets (../../../node_modules/@babel/core/src/config/config-chain.ts:725:34)\\n at mergeChainOpts.next (<anonymous>)\\n at mergeChainOpts (../../../node_modules/@babel/core/src/config/config-chain.ts:661:14)\\n at chainWalker.next (<anonymous>)\\n at loadFileChainWalker (../../../node_modules/@babel/core/src/config/config-chain.ts:398:24)\\n at loadFileChain.next (<anonymous>)\\n at loadFileChain (../../../node_modules/@babel/core/src/config/config-chain.ts:186:27)\\n at buildRootChain.next (<anonymous>)\\n at loadPrivatePartialConfig (../../../node_modules/@babel/core/src/config/partial.ts:111:44)\\n at loadPrivatePartialConfig.next (<anonymous>)\\n at loadPrivatePartialConfig (../../../node_modules/@babel/core/src/config/partial.ts:170:12)\\n at loadPartialConfig.next (<anonymous>)\\n at evaluateSync (../../../node_modules/gensync/index.js:251:28)\\n at sync (../../../node_modules/gensync/index.js:89:14)\\n at fn (../../../node_modules/@babel/core/src/errors/rewrite-stack-trace.ts:99:14)\\n at loadPartialConfigSync (../../../node_modules/@babel/core/src/config/index.ts:50:60)\\n at loadPartialConfigSync (../../../node_modules/@babel/core/src/config/index.ts:69:14)\\n at ScriptTransformer._getCacheKey (../../../node_modules/@jest/transform/build/ScriptTransformer.js:228:41)\\n at ScriptTransformer._getFileCachePath (../../../node_modules/@jest/transform/build/ScriptTransformer.js:289:27)\\n at ScriptTransformer.transformSource (../../../node_modules/@jest/transform/build/ScriptTransformer.js:525:32)\\n at ScriptTransformer._transformAndBuildScript (../../../node_modules/@jest/transform/build/ScriptTransformer.js:674:40)\\n at ScriptTransformer.transform (../../../node_modules/@jest/transform/build/ScriptTransformer.js:726:19)\\n\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/bank-account.spec.js\",\"startTime\":1754201700960,\"status\":\"failed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
2824
+ "details": {
2825
+ "numFailedTestSuites": 1,
2826
+ "numFailedTests": 0,
2827
+ "numPassedTestSuites": 0,
2828
+ "numPassedTests": 0,
2829
+ "numPendingTestSuites": 0,
2830
+ "numPendingTests": 0,
2831
+ "numRuntimeErrorTestSuites": 1,
2832
+ "numTodoTests": 0,
2833
+ "numTotalTestSuites": 1,
2834
+ "numTotalTests": 0,
2835
+ "openHandles": [],
2836
+ "snapshot": {
2837
+ "added": 0,
2838
+ "didUpdate": false,
2839
+ "failure": false,
2840
+ "filesAdded": 0,
2841
+ "filesRemoved": 0,
2842
+ "filesRemovedList": [],
2843
+ "filesUnmatched": 0,
2844
+ "filesUpdated": 0,
2845
+ "matched": 0,
2846
+ "total": 0,
2847
+ "unchecked": 0,
2848
+ "uncheckedKeysByFile": [],
2849
+ "unmatched": 0,
2850
+ "updated": 0
2851
+ },
2852
+ "startTime": 1754201700853,
2853
+ "success": false,
2854
+ "testResults": [
2855
+ {
2856
+ "assertionResults": [],
2857
+ "coverage": {},
2858
+ "endTime": 1754201700960,
2859
+ "message": " ● Test suite failed to run\n\n Cannot find module '@exercism/babel-preset-javascript'\n Require stack:\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@babel/core/lib/config/files/plugins.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@babel/core/lib/config/files/index.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@babel/core/lib/index.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-snapshot/build/InlineSnapshots.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-snapshot/build/State.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-snapshot/build/index.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-runtime/build/index.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@jest/core/build/cli/index.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/@jest/core/build/index.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-cli/build/run.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-cli/build/index.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest-cli/bin/jest.js\n - /Users/micah/dev/knowhow/packages/knowhow/benchmarks/node_modules/jest/bin/jest.js\n\n Make sure that all the Babel plugins and presets you are using\n are defined as dependencies or devDependencies in your package.json\n file. It's possible that the missing plugin is loaded by a preset\n you are using that forgot to add the plugin to its dependencies: you\n can workaround this problem by explicitly adding the missing package\n to your top-level package.json.\n\n at tryRequireResolve (../../../node_modules/@babel/core/src/config/files/plugins.ts:140:36)\n at tryRequireResolve (../../../node_modules/@babel/core/src/config/files/plugins.ts:168:19)\n at resolveStandardizedNameForRequire (../../../node_modules/@babel/core/src/config/files/plugins.ts:196:12)\n at resolvePreset (../../../node_modules/@babel/core/src/config/files/plugins.ts:50:32)\n at loadPreset.next (<anonymous>)\n at resolver (../../../node_modules/@babel/core/src/config/config-descriptors.ts:326:35)\n at createDescriptor.next (<anonymous>)\n at evaluateSync (../../../node_modules/gensync/index.js:251:28)\n at ../../../node_modules/gensync/index.js:31:34\n at Array.map (<anonymous>)\n at Function.sync (../../../node_modules/gensync/index.js:31:22)\n at Function.all (../../../node_modules/gensync/index.js:210:24)\n at all (../../../node_modules/@babel/core/src/config/config-descriptors.ts:267:38)\n at createDescriptors.next (<anonymous>)\n at createDescriptors (../../../node_modules/@babel/core/src/config/config-descriptors.ts:243:17)\n at createPresetDescriptors.next (<anonymous>)\n at fn (../../../node_modules/@babel/core/src/gensync-utils/functional.ts:18:46)\n at presets (../../../node_modules/@babel/core/src/config/config-chain.ts:725:34)\n at mergeChainOpts.next (<anonymous>)\n at mergeChainOpts (../../../node_modules/@babel/core/src/config/config-chain.ts:661:14)\n at chainWalker.next (<anonymous>)\n at loadFileChainWalker (../../../node_modules/@babel/core/src/config/config-chain.ts:398:24)\n at loadFileChain.next (<anonymous>)\n at loadFileChain (../../../node_modules/@babel/core/src/config/config-chain.ts:186:27)\n at buildRootChain.next (<anonymous>)\n at loadPrivatePartialConfig (../../../node_modules/@babel/core/src/config/partial.ts:111:44)\n at loadPrivatePartialConfig.next (<anonymous>)\n at loadPrivatePartialConfig (../../../node_modules/@babel/core/src/config/partial.ts:170:12)\n at loadPartialConfig.next (<anonymous>)\n at evaluateSync (../../../node_modules/gensync/index.js:251:28)\n at sync (../../../node_modules/gensync/index.js:89:14)\n at fn (../../../node_modules/@babel/core/src/errors/rewrite-stack-trace.ts:99:14)\n at loadPartialConfigSync (../../../node_modules/@babel/core/src/config/index.ts:50:60)\n at loadPartialConfigSync (../../../node_modules/@babel/core/src/config/index.ts:69:14)\n at ScriptTransformer._getCacheKey (../../../node_modules/@jest/transform/build/ScriptTransformer.js:228:41)\n at ScriptTransformer._getFileCachePath (../../../node_modules/@jest/transform/build/ScriptTransformer.js:289:27)\n at ScriptTransformer.transformSource (../../../node_modules/@jest/transform/build/ScriptTransformer.js:525:32)\n at ScriptTransformer._transformAndBuildScript (../../../node_modules/@jest/transform/build/ScriptTransformer.js:674:40)\n at ScriptTransformer.transform (../../../node_modules/@jest/transform/build/ScriptTransformer.js:726:19)\n",
2860
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/bank-account.spec.js",
2861
+ "startTime": 1754201700960,
2862
+ "status": "failed",
2863
+ "summary": ""
2864
+ }
2865
+ ],
2866
+ "wasInterrupted": false
2867
+ }
2868
+ },
2869
+ "timeElapsed": 842.912,
2870
+ "cost": 0,
2871
+ "startTime": "2025-08-03T06:00:58.058Z",
2872
+ "endTime": "2025-08-03T06:15:00.970Z",
2873
+ "finalOutput": "Task terminated due to limits reached. Turn: 30/30, Cost: $0.0000/$1.0000"
2874
+ }
2875
+ ],
2876
+ "summary": {
2877
+ "totalExercises": 10,
2878
+ "successCount": 10,
2879
+ "testableExercises": 10,
2880
+ "testsPassedCount": 8,
2881
+ "testsFailedCount": 2,
2882
+ "testPassRate": 0.8,
2883
+ "agentSuccessRate": 1,
2884
+ "failureCount": 0,
2885
+ "timeoutCount": 0,
2886
+ "costLimitCount": 0,
2887
+ "turnLimitCount": 0,
2888
+ "totalTime": 6083.278,
2889
+ "totalCost": 0,
2890
+ "averageTurns": 28.9,
2891
+ "averageTime": 608.3278,
2892
+ "successRate": 0.8
2893
+ },
2894
+ "startTime": "2025-08-03T04:33:37.613Z",
2895
+ "endTime": "2025-08-03T06:15:00.970Z"
2896
+ }