@tyvm/knowhow 0.0.32 → 0.0.34

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 (508) 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 +147 -21
  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 +980 -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/embeddings.ts +79 -23
  118. package/src/login.ts +26 -9
  119. package/src/microphone.ts +0 -1
  120. package/src/plugins/downloader/downloader.ts +72 -24
  121. package/src/plugins/downloader/plugin.ts +3 -1
  122. package/src/plugins/plugins.ts +3 -0
  123. package/src/processors/CustomVariables.ts +425 -0
  124. package/src/processors/HarmonyToolProcessor.ts +264 -0
  125. package/src/processors/XmlToolCallProcessor.ts +533 -0
  126. package/src/processors/index.ts +3 -0
  127. package/src/prompts/KnowhowConfigExamples.ts +376 -0
  128. package/src/services/KnowhowClient.ts +49 -3
  129. package/src/services/Mcp.ts +42 -3
  130. package/src/services/McpServer.ts +14 -4
  131. package/src/services/McpWebsocketTransport.ts +21 -7
  132. package/src/services/MessageProcessor.ts +10 -5
  133. package/src/services/index.ts +5 -0
  134. package/src/services/script-execution/ScriptExecutor.ts +34 -1
  135. package/src/services/types.ts +17 -14
  136. package/src/types.ts +17 -0
  137. package/src/utils/index.ts +138 -0
  138. package/tests/XmlToolCallProcessor.test.ts +468 -0
  139. package/tests/manual/ycmd/debug_diagnostics_test.ts +127 -0
  140. package/tests/manual/ycmd/fixtures/debug_diagnostics.ts +26 -0
  141. package/tests/manual/ycmd/fixtures/file_change_test.ts +17 -0
  142. package/tests/manual/ycmd/minimal_advanced_test.ts +108 -0
  143. package/tests/manual/ycmd/simple_diagnostics_test.ts +61 -0
  144. package/tests/manual/ycmd/simple_test.ts +74 -0
  145. package/tests/manual/ycmd/test-typescript-sample.ts +34 -0
  146. package/tests/manual/ycmd/test_advanced_features.ts +407 -0
  147. package/tests/manual/ycmd/test_advanced_with_tools.ts +320 -0
  148. package/tests/manual/ycmd/test_comprehensive_typescript.ts +179 -0
  149. package/tests/manual/ycmd/test_diagnostics_file_changes.ts +249 -0
  150. package/tests/manual/ycmd/test_diagnostics_fix.ts +99 -0
  151. package/tests/manual/ycmd/test_diagnostics_simple.ts +100 -0
  152. package/tests/manual/ycmd/test_diagnostics_timing.ts +120 -0
  153. package/tests/manual/ycmd/test_discover_commands.ts +310 -0
  154. package/tests/manual/ycmd/test_endpoints.ts +115 -0
  155. package/tests/manual/ycmd/test_final_comprehensive.ts +218 -0
  156. package/tests/manual/ycmd/test_final_validation.ts +150 -0
  157. package/tests/manual/ycmd/test_implementation.js +42 -0
  158. package/tests/manual/ycmd/test_individual_ycmd_tool.ts +39 -0
  159. package/tests/manual/ycmd/test_server_manager.ts +52 -0
  160. package/tests/manual/ycmd/test_simple_debug.ts +86 -0
  161. package/tests/manual/ycmd/test_tsserver_workflow.js +83 -0
  162. package/tests/manual/ycmd/test_tsserver_workflow.ts +122 -0
  163. package/tests/manual/ycmd/test_typescript_simple.ts +48 -0
  164. package/tests/manual/ycmd/test_typescript_ycmd.ts +105 -0
  165. package/tests/manual/ycmd/test_workspace_config.ts +90 -0
  166. package/tests/manual/ycmd/test_ycmd_auto_start.ts +137 -0
  167. package/tests/manual/ycmd/test_ycmd_comprehensive.ts +73 -0
  168. package/tests/manual/ycmd/test_ycmd_connection.py +10 -0
  169. package/tests/manual/ycmd/test_ycmd_direct.ts +142 -0
  170. package/tests/manual/ycmd/test_ycmd_experiment.ts +48 -0
  171. package/tests/manual/ycmd/test_ycmd_final.ts +200 -0
  172. package/tests/manual/ycmd/test_ycmd_fixed.py +18 -0
  173. package/tests/manual/ycmd/test_ycmd_integration.ts +112 -0
  174. package/tests/manual/ycmd/test_ycmd_simple.ts +45 -0
  175. package/tests/manual/ycmd/test_ycmd_usage.py +27 -0
  176. package/tests/manual/ycmd/working_simple_test.ts +134 -0
  177. package/ts_build/src/agents/base/base.d.ts +14 -1
  178. package/ts_build/src/agents/base/base.js +91 -17
  179. package/ts_build/src/agents/base/base.js.map +1 -1
  180. package/ts_build/src/agents/base/prompt.d.ts +1 -1
  181. package/ts_build/src/agents/base/prompt.js +28 -0
  182. package/ts_build/src/agents/base/prompt.js.map +1 -1
  183. package/ts_build/src/agents/index.d.ts +2 -0
  184. package/ts_build/src/agents/index.js +2 -0
  185. package/ts_build/src/agents/index.js.map +1 -1
  186. package/ts_build/src/agents/patcher/patcher.js +6 -3
  187. package/ts_build/src/agents/patcher/patcher.js.map +1 -1
  188. package/ts_build/src/agents/setup/setup.d.ts +8 -0
  189. package/ts_build/src/agents/setup/setup.js +59 -0
  190. package/ts_build/src/agents/setup/setup.js.map +1 -0
  191. package/ts_build/src/agents/tools/agentCall.js +5 -2
  192. package/ts_build/src/agents/tools/agentCall.js.map +1 -1
  193. package/ts_build/src/agents/tools/aiClient.d.ts +6 -5
  194. package/ts_build/src/agents/tools/aiClient.js +37 -6
  195. package/ts_build/src/agents/tools/aiClient.js.map +1 -1
  196. package/ts_build/src/agents/tools/execCommand.d.ts +2 -2
  197. package/ts_build/src/agents/tools/execCommand.js +5 -6
  198. package/ts_build/src/agents/tools/execCommand.js.map +1 -1
  199. package/ts_build/src/agents/tools/executeScript/index.d.ts +1 -1
  200. package/ts_build/src/agents/tools/index.d.ts +2 -0
  201. package/ts_build/src/agents/tools/index.js +2 -0
  202. package/ts_build/src/agents/tools/index.js.map +1 -1
  203. package/ts_build/src/agents/tools/list.js +66 -16
  204. package/ts_build/src/agents/tools/list.js.map +1 -1
  205. package/ts_build/src/agents/tools/startAgentTask.d.ts +13 -0
  206. package/ts_build/src/agents/tools/startAgentTask.js +74 -0
  207. package/ts_build/src/agents/tools/startAgentTask.js.map +1 -0
  208. package/ts_build/src/agents/tools/startChatTask.d.ts +13 -0
  209. package/ts_build/src/agents/tools/startChatTask.js +73 -0
  210. package/ts_build/src/agents/tools/startChatTask.js.map +1 -0
  211. package/ts_build/src/agents/tools/textSearch.js +1 -1
  212. package/ts_build/src/agents/tools/textSearch.js.map +1 -1
  213. package/ts_build/src/agents/tools/visionTool.d.ts +1 -1
  214. package/ts_build/src/agents/tools/visionTool.js +23 -3
  215. package/ts_build/src/agents/tools/visionTool.js.map +1 -1
  216. package/ts_build/src/agents/tools/ycmd/client.d.ts +93 -0
  217. package/ts_build/src/agents/tools/ycmd/client.js +355 -0
  218. package/ts_build/src/agents/tools/ycmd/client.js.map +1 -0
  219. package/ts_build/src/agents/tools/ycmd/definitions.d.ts +345 -0
  220. package/ts_build/src/agents/tools/ycmd/definitions.js +298 -0
  221. package/ts_build/src/agents/tools/ycmd/definitions.js.map +1 -0
  222. package/ts_build/src/agents/tools/ycmd/detection.d.ts +11 -0
  223. package/ts_build/src/agents/tools/ycmd/detection.js +175 -0
  224. package/ts_build/src/agents/tools/ycmd/detection.js.map +1 -0
  225. package/ts_build/src/agents/tools/ycmd/index.d.ts +8 -0
  226. package/ts_build/src/agents/tools/ycmd/index.js +20 -0
  227. package/ts_build/src/agents/tools/ycmd/index.js.map +1 -0
  228. package/ts_build/src/agents/tools/ycmd/installer.d.ts +19 -0
  229. package/ts_build/src/agents/tools/ycmd/installer.js +196 -0
  230. package/ts_build/src/agents/tools/ycmd/installer.js.map +1 -0
  231. package/ts_build/src/agents/tools/ycmd/server.d.ts +35 -0
  232. package/ts_build/src/agents/tools/ycmd/server.js +363 -0
  233. package/ts_build/src/agents/tools/ycmd/server.js.map +1 -0
  234. package/ts_build/src/agents/tools/ycmd/serverManager.d.ts +39 -0
  235. package/ts_build/src/agents/tools/ycmd/serverManager.js +210 -0
  236. package/ts_build/src/agents/tools/ycmd/serverManager.js.map +1 -0
  237. package/ts_build/src/agents/tools/ycmd/tools/completion.d.ts +22 -0
  238. package/ts_build/src/agents/tools/ycmd/tools/completion.js +72 -0
  239. package/ts_build/src/agents/tools/ycmd/tools/completion.js.map +1 -0
  240. package/ts_build/src/agents/tools/ycmd/tools/diagnostics.d.ts +42 -0
  241. package/ts_build/src/agents/tools/ycmd/tools/diagnostics.js +88 -0
  242. package/ts_build/src/agents/tools/ycmd/tools/diagnostics.js.map +1 -0
  243. package/ts_build/src/agents/tools/ycmd/tools/getLocations.d.ts +22 -0
  244. package/ts_build/src/agents/tools/ycmd/tools/getLocations.js +142 -0
  245. package/ts_build/src/agents/tools/ycmd/tools/getLocations.js.map +1 -0
  246. package/ts_build/src/agents/tools/ycmd/tools/goto.d.ts +20 -0
  247. package/ts_build/src/agents/tools/ycmd/tools/goto.js +101 -0
  248. package/ts_build/src/agents/tools/ycmd/tools/goto.js.map +1 -0
  249. package/ts_build/src/agents/tools/ycmd/tools/refactor.d.ts +32 -0
  250. package/ts_build/src/agents/tools/ycmd/tools/refactor.js +123 -0
  251. package/ts_build/src/agents/tools/ycmd/tools/refactor.js.map +1 -0
  252. package/ts_build/src/agents/tools/ycmd/tools/signature.d.ts +25 -0
  253. package/ts_build/src/agents/tools/ycmd/tools/signature.js +110 -0
  254. package/ts_build/src/agents/tools/ycmd/tools/signature.js.map +1 -0
  255. package/ts_build/src/agents/tools/ycmd/tools/start.d.ts +17 -0
  256. package/ts_build/src/agents/tools/ycmd/tools/start.js +65 -0
  257. package/ts_build/src/agents/tools/ycmd/tools/start.js.map +1 -0
  258. package/ts_build/src/agents/tools/ycmd/utils/pathUtils.d.ts +4 -0
  259. package/ts_build/src/agents/tools/ycmd/utils/pathUtils.js +67 -0
  260. package/ts_build/src/agents/tools/ycmd/utils/pathUtils.js.map +1 -0
  261. package/ts_build/src/ai.d.ts +1 -0
  262. package/ts_build/src/ai.js +40 -1
  263. package/ts_build/src/ai.js.map +1 -1
  264. package/ts_build/src/chat/ChatCommandHandler.d.ts +36 -0
  265. package/ts_build/src/chat/ChatCommandHandler.js +268 -0
  266. package/ts_build/src/chat/ChatCommandHandler.js.map +1 -0
  267. package/ts_build/src/chat/ChatInputManager.d.ts +22 -0
  268. package/ts_build/src/chat/ChatInputManager.js +85 -0
  269. package/ts_build/src/chat/ChatInputManager.js.map +1 -0
  270. package/ts_build/src/chat/ChatManager.d.ts +49 -0
  271. package/ts_build/src/chat/ChatManager.js +271 -0
  272. package/ts_build/src/chat/ChatManager.js.map +1 -0
  273. package/ts_build/src/chat/ChatSession.d.ts +32 -0
  274. package/ts_build/src/chat/ChatSession.js +3 -0
  275. package/ts_build/src/chat/ChatSession.js.map +1 -0
  276. package/ts_build/src/chat/ChatSessionManager.d.ts +19 -0
  277. package/ts_build/src/chat/ChatSessionManager.js +188 -0
  278. package/ts_build/src/chat/ChatSessionManager.js.map +1 -0
  279. package/ts_build/src/chat/ChatStateManager.d.ts +58 -0
  280. package/ts_build/src/chat/ChatStateManager.js +156 -0
  281. package/ts_build/src/chat/ChatStateManager.js.map +1 -0
  282. package/ts_build/src/chat/CliChatService.d.ts +35 -0
  283. package/ts_build/src/chat/CliChatService.js +201 -0
  284. package/ts_build/src/chat/CliChatService.js.map +1 -0
  285. package/ts_build/src/chat/InterruptibleInput.d.ts +20 -0
  286. package/ts_build/src/chat/InterruptibleInput.js +109 -0
  287. package/ts_build/src/chat/InterruptibleInput.js.map +1 -0
  288. package/ts_build/src/chat/interfaces/ChatModule.d.ts +6 -0
  289. package/ts_build/src/chat/interfaces/ChatModule.js +3 -0
  290. package/ts_build/src/chat/interfaces/ChatModule.js.map +1 -0
  291. package/ts_build/src/chat/modules/AgentModule.d.ts +56 -0
  292. package/ts_build/src/chat/modules/AgentModule.js +705 -0
  293. package/ts_build/src/chat/modules/AgentModule.js.map +1 -0
  294. package/ts_build/src/chat/modules/AskModule.d.ts +10 -0
  295. package/ts_build/src/chat/modules/AskModule.js +63 -0
  296. package/ts_build/src/chat/modules/AskModule.js.map +1 -0
  297. package/ts_build/src/chat/modules/BaseChatModule.d.ts +14 -0
  298. package/ts_build/src/chat/modules/BaseChatModule.js +32 -0
  299. package/ts_build/src/chat/modules/BaseChatModule.js.map +1 -0
  300. package/ts_build/src/chat/modules/InternalChatModule.d.ts +24 -0
  301. package/ts_build/src/chat/modules/InternalChatModule.js +127 -0
  302. package/ts_build/src/chat/modules/InternalChatModule.js.map +1 -0
  303. package/ts_build/src/chat/modules/SearchModule.d.ts +12 -0
  304. package/ts_build/src/chat/modules/SearchModule.js +119 -0
  305. package/ts_build/src/chat/modules/SearchModule.js.map +1 -0
  306. package/ts_build/src/chat/modules/SetupModule.d.ts +15 -0
  307. package/ts_build/src/chat/modules/SetupModule.js +147 -0
  308. package/ts_build/src/chat/modules/SetupModule.js.map +1 -0
  309. package/ts_build/src/chat/modules/SystemModule.d.ts +14 -0
  310. package/ts_build/src/chat/modules/SystemModule.js +90 -0
  311. package/ts_build/src/chat/modules/SystemModule.js.map +1 -0
  312. package/ts_build/src/chat/modules/VoiceModule.d.ts +11 -0
  313. package/ts_build/src/chat/modules/VoiceModule.js +57 -0
  314. package/ts_build/src/chat/modules/VoiceModule.js.map +1 -0
  315. package/ts_build/src/chat/types.d.ts +83 -0
  316. package/ts_build/src/chat/types.js +3 -0
  317. package/ts_build/src/chat/types.js.map +1 -0
  318. package/ts_build/src/chat.js +7 -1
  319. package/ts_build/src/chat.js.map +1 -1
  320. package/ts_build/src/chat2.d.ts +3 -0
  321. package/ts_build/src/chat2.js +47 -0
  322. package/ts_build/src/chat2.js.map +1 -0
  323. package/ts_build/src/cli.js +218 -37
  324. package/ts_build/src/cli.js.map +1 -1
  325. package/ts_build/src/clients/anthropic.d.ts +5 -2
  326. package/ts_build/src/clients/anthropic.js +12 -7
  327. package/ts_build/src/clients/anthropic.js.map +1 -1
  328. package/ts_build/src/clients/gemini.d.ts +6 -3
  329. package/ts_build/src/clients/gemini.js +13 -7
  330. package/ts_build/src/clients/gemini.js.map +1 -1
  331. package/ts_build/src/clients/http.d.ts +1 -0
  332. package/ts_build/src/clients/http.js +12 -5
  333. package/ts_build/src/clients/http.js.map +1 -1
  334. package/ts_build/src/clients/index.d.ts +10 -0
  335. package/ts_build/src/clients/index.js +74 -4
  336. package/ts_build/src/clients/index.js.map +1 -1
  337. package/ts_build/src/clients/knowhow.d.ts +3 -1
  338. package/ts_build/src/clients/knowhow.js +8 -2
  339. package/ts_build/src/clients/knowhow.js.map +1 -1
  340. package/ts_build/src/clients/knowhowMcp.d.ts +20 -0
  341. package/ts_build/src/clients/knowhowMcp.js +86 -0
  342. package/ts_build/src/clients/knowhowMcp.js.map +1 -0
  343. package/ts_build/src/clients/openai.d.ts +5 -2
  344. package/ts_build/src/clients/openai.js +29 -8
  345. package/ts_build/src/clients/openai.js.map +1 -1
  346. package/ts_build/src/clients/types.d.ts +1 -0
  347. package/ts_build/src/clients/xai.d.ts +5 -2
  348. package/ts_build/src/clients/xai.js +15 -5
  349. package/ts_build/src/clients/xai.js.map +1 -1
  350. package/ts_build/src/config.js +24 -3
  351. package/ts_build/src/config.js.map +1 -1
  352. package/ts_build/src/conversion.js +6 -4
  353. package/ts_build/src/conversion.js.map +1 -1
  354. package/ts_build/src/embeddings.d.ts +2 -1
  355. package/ts_build/src/embeddings.js +62 -17
  356. package/ts_build/src/embeddings.js.map +1 -1
  357. package/ts_build/src/login.d.ts +1 -1
  358. package/ts_build/src/login.js +21 -7
  359. package/ts_build/src/login.js.map +1 -1
  360. package/ts_build/src/microphone.js.map +1 -1
  361. package/ts_build/src/plugins/downloader/downloader.d.ts +4 -5
  362. package/ts_build/src/plugins/downloader/downloader.js +55 -26
  363. package/ts_build/src/plugins/downloader/downloader.js.map +1 -1
  364. package/ts_build/src/plugins/downloader/plugin.js +5 -3
  365. package/ts_build/src/plugins/downloader/plugin.js.map +1 -1
  366. package/ts_build/src/plugins/plugins.js +3 -0
  367. package/ts_build/src/plugins/plugins.js.map +1 -1
  368. package/ts_build/src/processors/CustomVariables.d.ts +32 -0
  369. package/ts_build/src/processors/CustomVariables.js +297 -0
  370. package/ts_build/src/processors/CustomVariables.js.map +1 -0
  371. package/ts_build/src/processors/HarmonyToolProcessor.d.ts +15 -0
  372. package/ts_build/src/processors/HarmonyToolProcessor.js +154 -0
  373. package/ts_build/src/processors/HarmonyToolProcessor.js.map +1 -0
  374. package/ts_build/src/processors/XmlToolCallProcessor.d.ts +14 -0
  375. package/ts_build/src/processors/XmlToolCallProcessor.js +357 -0
  376. package/ts_build/src/processors/XmlToolCallProcessor.js.map +1 -0
  377. package/ts_build/src/processors/index.d.ts +3 -0
  378. package/ts_build/src/processors/index.js +7 -1
  379. package/ts_build/src/processors/index.js.map +1 -1
  380. package/ts_build/src/prompts/KnowhowConfigExamples.d.ts +2 -0
  381. package/ts_build/src/prompts/KnowhowConfigExamples.js +379 -0
  382. package/ts_build/src/prompts/KnowhowConfigExamples.js.map +1 -0
  383. package/ts_build/src/services/KnowhowClient.d.ts +22 -0
  384. package/ts_build/src/services/KnowhowClient.js +14 -2
  385. package/ts_build/src/services/KnowhowClient.js.map +1 -1
  386. package/ts_build/src/services/Mcp.d.ts +1 -0
  387. package/ts_build/src/services/Mcp.js +20 -3
  388. package/ts_build/src/services/Mcp.js.map +1 -1
  389. package/ts_build/src/services/McpServer.d.ts +1 -1
  390. package/ts_build/src/services/McpServer.js +8 -4
  391. package/ts_build/src/services/McpServer.js.map +1 -1
  392. package/ts_build/src/services/McpWebsocketTransport.js +17 -7
  393. package/ts_build/src/services/McpWebsocketTransport.js.map +1 -1
  394. package/ts_build/src/services/MessageProcessor.d.ts +1 -1
  395. package/ts_build/src/services/MessageProcessor.js +4 -4
  396. package/ts_build/src/services/MessageProcessor.js.map +1 -1
  397. package/ts_build/src/services/index.d.ts +2 -0
  398. package/ts_build/src/services/index.js +4 -0
  399. package/ts_build/src/services/index.js.map +1 -1
  400. package/ts_build/src/services/script-execution/ScriptExecutor.d.ts +1 -0
  401. package/ts_build/src/services/script-execution/ScriptExecutor.js +23 -0
  402. package/ts_build/src/services/script-execution/ScriptExecutor.js.map +1 -1
  403. package/ts_build/src/services/types.d.ts +2 -6
  404. package/ts_build/src/services/types.js +4 -4
  405. package/ts_build/src/services/types.js.map +1 -1
  406. package/ts_build/src/types.d.ts +11 -0
  407. package/ts_build/src/types.js +8 -0
  408. package/ts_build/src/types.js.map +1 -1
  409. package/ts_build/src/utils/index.d.ts +2 -0
  410. package/ts_build/src/utils/index.js +102 -1
  411. package/ts_build/src/utils/index.js.map +1 -1
  412. package/ts_build/tests/XmlToolCallProcessor.test.d.ts +1 -0
  413. package/ts_build/tests/XmlToolCallProcessor.test.js +376 -0
  414. package/ts_build/tests/XmlToolCallProcessor.test.js.map +1 -0
  415. package/ts_build/tests/manual/ycmd/debug_diagnostics_test.d.ts +1 -0
  416. package/ts_build/tests/manual/ycmd/debug_diagnostics_test.js +114 -0
  417. package/ts_build/tests/manual/ycmd/debug_diagnostics_test.js.map +1 -0
  418. package/ts_build/tests/manual/ycmd/minimal_advanced_test.d.ts +2 -0
  419. package/ts_build/tests/manual/ycmd/minimal_advanced_test.js +104 -0
  420. package/ts_build/tests/manual/ycmd/minimal_advanced_test.js.map +1 -0
  421. package/ts_build/tests/manual/ycmd/simple_diagnostics_test.d.ts +1 -0
  422. package/ts_build/tests/manual/ycmd/simple_diagnostics_test.js +74 -0
  423. package/ts_build/tests/manual/ycmd/simple_diagnostics_test.js.map +1 -0
  424. package/ts_build/tests/manual/ycmd/simple_test.d.ts +2 -0
  425. package/ts_build/tests/manual/ycmd/simple_test.js +82 -0
  426. package/ts_build/tests/manual/ycmd/simple_test.js.map +1 -0
  427. package/ts_build/tests/manual/ycmd/test-typescript-sample.d.ts +14 -0
  428. package/ts_build/tests/manual/ycmd/test-typescript-sample.js +20 -0
  429. package/ts_build/tests/manual/ycmd/test-typescript-sample.js.map +1 -0
  430. package/ts_build/tests/manual/ycmd/test_advanced_features.d.ts +2 -0
  431. package/ts_build/tests/manual/ycmd/test_advanced_features.js +297 -0
  432. package/ts_build/tests/manual/ycmd/test_advanced_features.js.map +1 -0
  433. package/ts_build/tests/manual/ycmd/test_advanced_with_tools.d.ts +3 -0
  434. package/ts_build/tests/manual/ycmd/test_advanced_with_tools.js +262 -0
  435. package/ts_build/tests/manual/ycmd/test_advanced_with_tools.js.map +1 -0
  436. package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.d.ts +2 -0
  437. package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.js +186 -0
  438. package/ts_build/tests/manual/ycmd/test_comprehensive_typescript.js.map +1 -0
  439. package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.d.ts +1 -0
  440. package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.js +174 -0
  441. package/ts_build/tests/manual/ycmd/test_diagnostics_file_changes.js.map +1 -0
  442. package/ts_build/tests/manual/ycmd/test_diagnostics_fix.d.ts +2 -0
  443. package/ts_build/tests/manual/ycmd/test_diagnostics_fix.js +106 -0
  444. package/ts_build/tests/manual/ycmd/test_diagnostics_fix.js.map +1 -0
  445. package/ts_build/tests/manual/ycmd/test_diagnostics_simple.d.ts +1 -0
  446. package/ts_build/tests/manual/ycmd/test_diagnostics_simple.js +104 -0
  447. package/ts_build/tests/manual/ycmd/test_diagnostics_simple.js.map +1 -0
  448. package/ts_build/tests/manual/ycmd/test_diagnostics_timing.d.ts +1 -0
  449. package/ts_build/tests/manual/ycmd/test_diagnostics_timing.js +119 -0
  450. package/ts_build/tests/manual/ycmd/test_diagnostics_timing.js.map +1 -0
  451. package/ts_build/tests/manual/ycmd/test_discover_commands.d.ts +2 -0
  452. package/ts_build/tests/manual/ycmd/test_discover_commands.js +243 -0
  453. package/ts_build/tests/manual/ycmd/test_discover_commands.js.map +1 -0
  454. package/ts_build/tests/manual/ycmd/test_endpoints.d.ts +2 -0
  455. package/ts_build/tests/manual/ycmd/test_endpoints.js +120 -0
  456. package/ts_build/tests/manual/ycmd/test_endpoints.js.map +1 -0
  457. package/ts_build/tests/manual/ycmd/test_final_comprehensive.d.ts +2 -0
  458. package/ts_build/tests/manual/ycmd/test_final_comprehensive.js +221 -0
  459. package/ts_build/tests/manual/ycmd/test_final_comprehensive.js.map +1 -0
  460. package/ts_build/tests/manual/ycmd/test_final_validation.d.ts +2 -0
  461. package/ts_build/tests/manual/ycmd/test_final_validation.js +160 -0
  462. package/ts_build/tests/manual/ycmd/test_final_validation.js.map +1 -0
  463. package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.d.ts +2 -0
  464. package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.js +37 -0
  465. package/ts_build/tests/manual/ycmd/test_individual_ycmd_tool.js.map +1 -0
  466. package/ts_build/tests/manual/ycmd/test_server_manager.d.ts +1 -0
  467. package/ts_build/tests/manual/ycmd/test_server_manager.js +38 -0
  468. package/ts_build/tests/manual/ycmd/test_server_manager.js.map +1 -0
  469. package/ts_build/tests/manual/ycmd/test_simple_debug.d.ts +2 -0
  470. package/ts_build/tests/manual/ycmd/test_simple_debug.js +99 -0
  471. package/ts_build/tests/manual/ycmd/test_simple_debug.js.map +1 -0
  472. package/ts_build/tests/manual/ycmd/test_tsserver_workflow.d.ts +1 -0
  473. package/ts_build/tests/manual/ycmd/test_tsserver_workflow.js +128 -0
  474. package/ts_build/tests/manual/ycmd/test_tsserver_workflow.js.map +1 -0
  475. package/ts_build/tests/manual/ycmd/test_typescript_simple.d.ts +1 -0
  476. package/ts_build/tests/manual/ycmd/test_typescript_simple.js +66 -0
  477. package/ts_build/tests/manual/ycmd/test_typescript_simple.js.map +1 -0
  478. package/ts_build/tests/manual/ycmd/test_typescript_ycmd.d.ts +1 -0
  479. package/ts_build/tests/manual/ycmd/test_typescript_ycmd.js +105 -0
  480. package/ts_build/tests/manual/ycmd/test_typescript_ycmd.js.map +1 -0
  481. package/ts_build/tests/manual/ycmd/test_workspace_config.d.ts +1 -0
  482. package/ts_build/tests/manual/ycmd/test_workspace_config.js +89 -0
  483. package/ts_build/tests/manual/ycmd/test_workspace_config.js.map +1 -0
  484. package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.d.ts +2 -0
  485. package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.js +130 -0
  486. package/ts_build/tests/manual/ycmd/test_ycmd_auto_start.js.map +1 -0
  487. package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.d.ts +1 -0
  488. package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.js +83 -0
  489. package/ts_build/tests/manual/ycmd/test_ycmd_comprehensive.js.map +1 -0
  490. package/ts_build/tests/manual/ycmd/test_ycmd_direct.d.ts +2 -0
  491. package/ts_build/tests/manual/ycmd/test_ycmd_direct.js +149 -0
  492. package/ts_build/tests/manual/ycmd/test_ycmd_direct.js.map +1 -0
  493. package/ts_build/tests/manual/ycmd/test_ycmd_experiment.d.ts +15 -0
  494. package/ts_build/tests/manual/ycmd/test_ycmd_experiment.js +58 -0
  495. package/ts_build/tests/manual/ycmd/test_ycmd_experiment.js.map +1 -0
  496. package/ts_build/tests/manual/ycmd/test_ycmd_final.d.ts +2 -0
  497. package/ts_build/tests/manual/ycmd/test_ycmd_final.js +195 -0
  498. package/ts_build/tests/manual/ycmd/test_ycmd_final.js.map +1 -0
  499. package/ts_build/tests/manual/ycmd/test_ycmd_integration.d.ts +3 -0
  500. package/ts_build/tests/manual/ycmd/test_ycmd_integration.js +110 -0
  501. package/ts_build/tests/manual/ycmd/test_ycmd_integration.js.map +1 -0
  502. package/ts_build/tests/manual/ycmd/test_ycmd_simple.d.ts +2 -0
  503. package/ts_build/tests/manual/ycmd/test_ycmd_simple.js +36 -0
  504. package/ts_build/tests/manual/ycmd/test_ycmd_simple.js.map +1 -0
  505. package/ts_build/tests/manual/ycmd/working_simple_test.d.ts +2 -0
  506. package/ts_build/tests/manual/ycmd/working_simple_test.js +134 -0
  507. package/ts_build/tests/manual/ycmd/working_simple_test.js.map +1 -0
  508. package/tsconfig.json +3 -1
@@ -0,0 +1,3256 @@
1
+ {
2
+ "config": {
3
+ "language": "javascript",
4
+ "maxExercises": 10,
5
+ "model": "gpt-4.1",
6
+ "provider": "openai",
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": 16,
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\":1754272809221,\"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\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate squares\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate squares\"},{\"ancestorTitles\":[\"accumulate()\"],\"duration\":0,\"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\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"accumulate() accumulate recursively\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"accumulate recursively\"}],\"endTime\":1754272809302,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/accumulate/accumulate.spec.js\",\"startTime\":1754272809230,\"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": 1754272809221,
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": 0,
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": 0,
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": 1,
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": 1754272809302,
136
+ "message": "",
137
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/accumulate/accumulate.spec.js",
138
+ "startTime": 1754272809230,
139
+ "status": "passed",
140
+ "summary": ""
141
+ }
142
+ ],
143
+ "wasInterrupted": false
144
+ }
145
+ },
146
+ "timeElapsed": 33.067,
147
+ "cost": 0.345579869568,
148
+ "startTime": "2025-08-04T01:59:36.263Z",
149
+ "endTime": "2025-08-04T02:00:09.330Z",
150
+ "finalOutput": "The accumulate function has been implemented without using Array.map or similar standard library helpers. All tests from the provided test suite now pass, and previously skipped tests have been enabled. Lint checks report no issues. The solution is correct and ready for submission:\n\naccumulate.js:\n```js\nexport const accumulate = (collection, operation) => {\n const result = [];\n for (let i = 0; i < collection.length; i++) {\n result.push(operation(collection[i]));\n }\n return result;\n};\n```\n\nIf you need any further improvements or explanation, feel free to ask!"
151
+ },
152
+ {
153
+ "exerciseName": "acronym",
154
+ "status": "success",
155
+ "turns": 15,
156
+ "testResult": {
157
+ "passed": 9,
158
+ "failed": 0,
159
+ "total": 9,
160
+ "skipped": 0,
161
+ "success": true,
162
+ "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\":1754272860663,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from title cased phrases\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"title cased phrases\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from other title cased phrases\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"other title cased phrases\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with punctuation\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"phrases with punctuation\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with all uppercase words\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"phrases with all uppercase words\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with punctuation without whitespace\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"phrases with punctuation without whitespace\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from long phrases\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"long phrases\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with consecutive delimiters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"phrases with consecutive delimiters\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with apostrophes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"phrases with apostrophes\"},{\"ancestorTitles\":[\"Acronyms are produced from\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Acronyms are produced from phrases with underscore emphasis\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"phrases with underscore emphasis\"}],\"endTime\":1754272860752,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/acronym.spec.js\",\"startTime\":1754272860673,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
163
+ "details": {
164
+ "numFailedTestSuites": 0,
165
+ "numFailedTests": 0,
166
+ "numPassedTestSuites": 1,
167
+ "numPassedTests": 9,
168
+ "numPendingTestSuites": 0,
169
+ "numPendingTests": 0,
170
+ "numRuntimeErrorTestSuites": 0,
171
+ "numTodoTests": 0,
172
+ "numTotalTestSuites": 1,
173
+ "numTotalTests": 9,
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": 1754272860663,
192
+ "success": true,
193
+ "testResults": [
194
+ {
195
+ "assertionResults": [
196
+ {
197
+ "ancestorTitles": [
198
+ "Acronyms are produced from"
199
+ ],
200
+ "duration": 1,
201
+ "failureDetails": [],
202
+ "failureMessages": [],
203
+ "fullName": "Acronyms are produced from title cased phrases",
204
+ "invocations": 1,
205
+ "location": null,
206
+ "numPassingAsserts": 1,
207
+ "retryReasons": [],
208
+ "status": "passed",
209
+ "title": "title cased phrases"
210
+ },
211
+ {
212
+ "ancestorTitles": [
213
+ "Acronyms are produced from"
214
+ ],
215
+ "duration": 0,
216
+ "failureDetails": [],
217
+ "failureMessages": [],
218
+ "fullName": "Acronyms are produced from other title cased phrases",
219
+ "invocations": 1,
220
+ "location": null,
221
+ "numPassingAsserts": 1,
222
+ "retryReasons": [],
223
+ "status": "passed",
224
+ "title": "other title cased phrases"
225
+ },
226
+ {
227
+ "ancestorTitles": [
228
+ "Acronyms are produced from"
229
+ ],
230
+ "duration": 1,
231
+ "failureDetails": [],
232
+ "failureMessages": [],
233
+ "fullName": "Acronyms are produced from phrases with punctuation",
234
+ "invocations": 1,
235
+ "location": null,
236
+ "numPassingAsserts": 1,
237
+ "retryReasons": [],
238
+ "status": "passed",
239
+ "title": "phrases with punctuation"
240
+ },
241
+ {
242
+ "ancestorTitles": [
243
+ "Acronyms are produced from"
244
+ ],
245
+ "duration": 0,
246
+ "failureDetails": [],
247
+ "failureMessages": [],
248
+ "fullName": "Acronyms are produced from phrases with all uppercase words",
249
+ "invocations": 1,
250
+ "location": null,
251
+ "numPassingAsserts": 1,
252
+ "retryReasons": [],
253
+ "status": "passed",
254
+ "title": "phrases with all uppercase words"
255
+ },
256
+ {
257
+ "ancestorTitles": [
258
+ "Acronyms are produced from"
259
+ ],
260
+ "duration": 0,
261
+ "failureDetails": [],
262
+ "failureMessages": [],
263
+ "fullName": "Acronyms are produced from phrases with punctuation without whitespace",
264
+ "invocations": 1,
265
+ "location": null,
266
+ "numPassingAsserts": 1,
267
+ "retryReasons": [],
268
+ "status": "passed",
269
+ "title": "phrases with punctuation without whitespace"
270
+ },
271
+ {
272
+ "ancestorTitles": [
273
+ "Acronyms are produced from"
274
+ ],
275
+ "duration": 0,
276
+ "failureDetails": [],
277
+ "failureMessages": [],
278
+ "fullName": "Acronyms are produced from long phrases",
279
+ "invocations": 1,
280
+ "location": null,
281
+ "numPassingAsserts": 1,
282
+ "retryReasons": [],
283
+ "status": "passed",
284
+ "title": "long phrases"
285
+ },
286
+ {
287
+ "ancestorTitles": [
288
+ "Acronyms are produced from"
289
+ ],
290
+ "duration": 0,
291
+ "failureDetails": [],
292
+ "failureMessages": [],
293
+ "fullName": "Acronyms are produced from phrases with consecutive delimiters",
294
+ "invocations": 1,
295
+ "location": null,
296
+ "numPassingAsserts": 1,
297
+ "retryReasons": [],
298
+ "status": "passed",
299
+ "title": "phrases with consecutive delimiters"
300
+ },
301
+ {
302
+ "ancestorTitles": [
303
+ "Acronyms are produced from"
304
+ ],
305
+ "duration": 0,
306
+ "failureDetails": [],
307
+ "failureMessages": [],
308
+ "fullName": "Acronyms are produced from phrases with apostrophes",
309
+ "invocations": 1,
310
+ "location": null,
311
+ "numPassingAsserts": 1,
312
+ "retryReasons": [],
313
+ "status": "passed",
314
+ "title": "phrases with apostrophes"
315
+ },
316
+ {
317
+ "ancestorTitles": [
318
+ "Acronyms are produced from"
319
+ ],
320
+ "duration": 1,
321
+ "failureDetails": [],
322
+ "failureMessages": [],
323
+ "fullName": "Acronyms are produced from phrases with underscore emphasis",
324
+ "invocations": 1,
325
+ "location": null,
326
+ "numPassingAsserts": 1,
327
+ "retryReasons": [],
328
+ "status": "passed",
329
+ "title": "phrases with underscore emphasis"
330
+ }
331
+ ],
332
+ "endTime": 1754272860752,
333
+ "message": "",
334
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/acronym/acronym.spec.js",
335
+ "startTime": 1754272860673,
336
+ "status": "passed",
337
+ "summary": ""
338
+ }
339
+ ],
340
+ "wasInterrupted": false
341
+ }
342
+ },
343
+ "timeElapsed": 51.429,
344
+ "cost": 0.327133882752,
345
+ "startTime": "2025-08-04T02:00:09.342Z",
346
+ "endTime": "2025-08-04T02:01:00.771Z",
347
+ "finalOutput": "The exercise has been successfully implemented:\n\n- The `parse` function in `acronym.js` converts a phrase to its acronym, treating hyphens as word separators and removing other punctuation (except apostrophes for word boundaries, as per usual acronym rules). Underscores and consecutive delimiters are also handled.\n- All tests in `acronym.spec.js` have been unskipped and are now passing, demonstrating correctness for all example edge cases in the problem.\n- The code and tests have been checked for accuracy.\n\nIf you need any further improvements or explanations, feel free to ask!"
348
+ },
349
+ {
350
+ "exerciseName": "affine-cipher",
351
+ "status": "success",
352
+ "turns": 19,
353
+ "testResult": {
354
+ "passed": 16,
355
+ "failed": 0,
356
+ "total": 16,
357
+ "skipped": 0,
358
+ "success": true,
359
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":16,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"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\":1754272909758,\"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\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode no\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode no\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode OMG\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode OMG\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode O M G\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode O M G\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode mindblowingly\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode mindblowingly\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode numbers\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode deep thought\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode deep thought\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode all the letters\"},{\"ancestorTitles\":[\"Affine cipher\",\"encode\"],\"duration\":3,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher encode encode with a not coprime to m\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"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\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode a sentence\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode a sentence\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode numbers\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode all the letters\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with no spaces in input\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with no spaces in input\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with too many spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with too many spaces\"},{\"ancestorTitles\":[\"Affine cipher\",\"decode\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Affine cipher decode decode with a not coprime to m\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with a not coprime to m\"}],\"endTime\":1754272909836,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/affine-cipher/affine-cipher.spec.js\",\"startTime\":1754272909768,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
360
+ "details": {
361
+ "numFailedTestSuites": 0,
362
+ "numFailedTests": 0,
363
+ "numPassedTestSuites": 1,
364
+ "numPassedTests": 16,
365
+ "numPendingTestSuites": 0,
366
+ "numPendingTests": 0,
367
+ "numRuntimeErrorTestSuites": 0,
368
+ "numTodoTests": 0,
369
+ "numTotalTestSuites": 1,
370
+ "numTotalTests": 16,
371
+ "openHandles": [],
372
+ "snapshot": {
373
+ "added": 0,
374
+ "didUpdate": false,
375
+ "failure": false,
376
+ "filesAdded": 0,
377
+ "filesRemoved": 0,
378
+ "filesRemovedList": [],
379
+ "filesUnmatched": 0,
380
+ "filesUpdated": 0,
381
+ "matched": 0,
382
+ "total": 0,
383
+ "unchecked": 0,
384
+ "uncheckedKeysByFile": [],
385
+ "unmatched": 0,
386
+ "updated": 0
387
+ },
388
+ "startTime": 1754272909758,
389
+ "success": true,
390
+ "testResults": [
391
+ {
392
+ "assertionResults": [
393
+ {
394
+ "ancestorTitles": [
395
+ "Affine cipher",
396
+ "encode"
397
+ ],
398
+ "duration": 1,
399
+ "failureDetails": [],
400
+ "failureMessages": [],
401
+ "fullName": "Affine cipher encode encode yes",
402
+ "invocations": 1,
403
+ "location": null,
404
+ "numPassingAsserts": 1,
405
+ "retryReasons": [],
406
+ "status": "passed",
407
+ "title": "encode yes"
408
+ },
409
+ {
410
+ "ancestorTitles": [
411
+ "Affine cipher",
412
+ "encode"
413
+ ],
414
+ "duration": 1,
415
+ "failureDetails": [],
416
+ "failureMessages": [],
417
+ "fullName": "Affine cipher encode encode no",
418
+ "invocations": 1,
419
+ "location": null,
420
+ "numPassingAsserts": 1,
421
+ "retryReasons": [],
422
+ "status": "passed",
423
+ "title": "encode no"
424
+ },
425
+ {
426
+ "ancestorTitles": [
427
+ "Affine cipher",
428
+ "encode"
429
+ ],
430
+ "duration": 0,
431
+ "failureDetails": [],
432
+ "failureMessages": [],
433
+ "fullName": "Affine cipher encode encode OMG",
434
+ "invocations": 1,
435
+ "location": null,
436
+ "numPassingAsserts": 1,
437
+ "retryReasons": [],
438
+ "status": "passed",
439
+ "title": "encode OMG"
440
+ },
441
+ {
442
+ "ancestorTitles": [
443
+ "Affine cipher",
444
+ "encode"
445
+ ],
446
+ "duration": 0,
447
+ "failureDetails": [],
448
+ "failureMessages": [],
449
+ "fullName": "Affine cipher encode encode O M G",
450
+ "invocations": 1,
451
+ "location": null,
452
+ "numPassingAsserts": 1,
453
+ "retryReasons": [],
454
+ "status": "passed",
455
+ "title": "encode O M G"
456
+ },
457
+ {
458
+ "ancestorTitles": [
459
+ "Affine cipher",
460
+ "encode"
461
+ ],
462
+ "duration": 0,
463
+ "failureDetails": [],
464
+ "failureMessages": [],
465
+ "fullName": "Affine cipher encode encode mindblowingly",
466
+ "invocations": 1,
467
+ "location": null,
468
+ "numPassingAsserts": 1,
469
+ "retryReasons": [],
470
+ "status": "passed",
471
+ "title": "encode mindblowingly"
472
+ },
473
+ {
474
+ "ancestorTitles": [
475
+ "Affine cipher",
476
+ "encode"
477
+ ],
478
+ "duration": 0,
479
+ "failureDetails": [],
480
+ "failureMessages": [],
481
+ "fullName": "Affine cipher encode encode numbers",
482
+ "invocations": 1,
483
+ "location": null,
484
+ "numPassingAsserts": 1,
485
+ "retryReasons": [],
486
+ "status": "passed",
487
+ "title": "encode numbers"
488
+ },
489
+ {
490
+ "ancestorTitles": [
491
+ "Affine cipher",
492
+ "encode"
493
+ ],
494
+ "duration": 0,
495
+ "failureDetails": [],
496
+ "failureMessages": [],
497
+ "fullName": "Affine cipher encode encode deep thought",
498
+ "invocations": 1,
499
+ "location": null,
500
+ "numPassingAsserts": 1,
501
+ "retryReasons": [],
502
+ "status": "passed",
503
+ "title": "encode deep thought"
504
+ },
505
+ {
506
+ "ancestorTitles": [
507
+ "Affine cipher",
508
+ "encode"
509
+ ],
510
+ "duration": 0,
511
+ "failureDetails": [],
512
+ "failureMessages": [],
513
+ "fullName": "Affine cipher encode encode all the letters",
514
+ "invocations": 1,
515
+ "location": null,
516
+ "numPassingAsserts": 1,
517
+ "retryReasons": [],
518
+ "status": "passed",
519
+ "title": "encode all the letters"
520
+ },
521
+ {
522
+ "ancestorTitles": [
523
+ "Affine cipher",
524
+ "encode"
525
+ ],
526
+ "duration": 3,
527
+ "failureDetails": [],
528
+ "failureMessages": [],
529
+ "fullName": "Affine cipher encode encode with a not coprime to m",
530
+ "invocations": 1,
531
+ "location": null,
532
+ "numPassingAsserts": 1,
533
+ "retryReasons": [],
534
+ "status": "passed",
535
+ "title": "encode with a not coprime to m"
536
+ },
537
+ {
538
+ "ancestorTitles": [
539
+ "Affine cipher",
540
+ "decode"
541
+ ],
542
+ "duration": 0,
543
+ "failureDetails": [],
544
+ "failureMessages": [],
545
+ "fullName": "Affine cipher decode decode exercism",
546
+ "invocations": 1,
547
+ "location": null,
548
+ "numPassingAsserts": 1,
549
+ "retryReasons": [],
550
+ "status": "passed",
551
+ "title": "decode exercism"
552
+ },
553
+ {
554
+ "ancestorTitles": [
555
+ "Affine cipher",
556
+ "decode"
557
+ ],
558
+ "duration": 1,
559
+ "failureDetails": [],
560
+ "failureMessages": [],
561
+ "fullName": "Affine cipher decode decode a sentence",
562
+ "invocations": 1,
563
+ "location": null,
564
+ "numPassingAsserts": 1,
565
+ "retryReasons": [],
566
+ "status": "passed",
567
+ "title": "decode a sentence"
568
+ },
569
+ {
570
+ "ancestorTitles": [
571
+ "Affine cipher",
572
+ "decode"
573
+ ],
574
+ "duration": 0,
575
+ "failureDetails": [],
576
+ "failureMessages": [],
577
+ "fullName": "Affine cipher decode decode numbers",
578
+ "invocations": 1,
579
+ "location": null,
580
+ "numPassingAsserts": 1,
581
+ "retryReasons": [],
582
+ "status": "passed",
583
+ "title": "decode numbers"
584
+ },
585
+ {
586
+ "ancestorTitles": [
587
+ "Affine cipher",
588
+ "decode"
589
+ ],
590
+ "duration": 0,
591
+ "failureDetails": [],
592
+ "failureMessages": [],
593
+ "fullName": "Affine cipher decode decode all the letters",
594
+ "invocations": 1,
595
+ "location": null,
596
+ "numPassingAsserts": 1,
597
+ "retryReasons": [],
598
+ "status": "passed",
599
+ "title": "decode all the letters"
600
+ },
601
+ {
602
+ "ancestorTitles": [
603
+ "Affine cipher",
604
+ "decode"
605
+ ],
606
+ "duration": 0,
607
+ "failureDetails": [],
608
+ "failureMessages": [],
609
+ "fullName": "Affine cipher decode decode with no spaces in input",
610
+ "invocations": 1,
611
+ "location": null,
612
+ "numPassingAsserts": 1,
613
+ "retryReasons": [],
614
+ "status": "passed",
615
+ "title": "decode with no spaces in input"
616
+ },
617
+ {
618
+ "ancestorTitles": [
619
+ "Affine cipher",
620
+ "decode"
621
+ ],
622
+ "duration": 0,
623
+ "failureDetails": [],
624
+ "failureMessages": [],
625
+ "fullName": "Affine cipher decode decode with too many spaces",
626
+ "invocations": 1,
627
+ "location": null,
628
+ "numPassingAsserts": 1,
629
+ "retryReasons": [],
630
+ "status": "passed",
631
+ "title": "decode with too many spaces"
632
+ },
633
+ {
634
+ "ancestorTitles": [
635
+ "Affine cipher",
636
+ "decode"
637
+ ],
638
+ "duration": 1,
639
+ "failureDetails": [],
640
+ "failureMessages": [],
641
+ "fullName": "Affine cipher decode decode with a not coprime to m",
642
+ "invocations": 1,
643
+ "location": null,
644
+ "numPassingAsserts": 1,
645
+ "retryReasons": [],
646
+ "status": "passed",
647
+ "title": "decode with a not coprime to m"
648
+ }
649
+ ],
650
+ "endTime": 1754272909836,
651
+ "message": "",
652
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/affine-cipher/affine-cipher.spec.js",
653
+ "startTime": 1754272909768,
654
+ "status": "passed",
655
+ "summary": ""
656
+ }
657
+ ],
658
+ "wasInterrupted": false
659
+ }
660
+ },
661
+ "timeElapsed": 49.081,
662
+ "cost": 0.59734377728,
663
+ "startTime": "2025-08-04T02:01:00.785Z",
664
+ "endTime": "2025-08-04T02:01:49.866Z",
665
+ "finalOutput": "The affine cipher implementation is complete and fully passes all tests. Here is what was done:\n\n1. Implemented both `encode` and `decode` functions in `affine-cipher.js` according to the affine cipher description, including checks for coprimality and the correct calculation of the modular multiplicative inverse.\n2. Ensured grouping of encoded text in groups of 5 characters and digits left untouched as described.\n3. Corrected decoding logic to handle potential negative modular results.\n4. Unskipped and ran all tests in `affine-cipher.spec.js`, achieving 100% pass rate.\n5. Linted both implementation and test files for code style consistency.\n\nYour affine cipher solution is now working as required!"
666
+ },
667
+ {
668
+ "exerciseName": "all-your-base",
669
+ "status": "success",
670
+ "turns": 13,
671
+ "testResult": {
672
+ "passed": 21,
673
+ "failed": 0,
674
+ "total": 21,
675
+ "skipped": 0,
676
+ "success": true,
677
+ "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\":1754272958607,\"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\":0,\"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\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter trinary to hexadecimal\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"trinary to hexadecimal\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":0,\"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\":4,\"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\":1,\"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\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Converter negative digit\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"negative digit\"},{\"ancestorTitles\":[\"Converter\"],\"duration\":1,\"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\":0,\"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\":1,\"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\":1754272958709,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/all-your-base/all-your-base.spec.js\",\"startTime\":1754272958618,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
678
+ "details": {
679
+ "numFailedTestSuites": 0,
680
+ "numFailedTests": 0,
681
+ "numPassedTestSuites": 1,
682
+ "numPassedTests": 21,
683
+ "numPendingTestSuites": 0,
684
+ "numPendingTests": 0,
685
+ "numRuntimeErrorTestSuites": 0,
686
+ "numTodoTests": 0,
687
+ "numTotalTestSuites": 1,
688
+ "numTotalTests": 21,
689
+ "openHandles": [],
690
+ "snapshot": {
691
+ "added": 0,
692
+ "didUpdate": false,
693
+ "failure": false,
694
+ "filesAdded": 0,
695
+ "filesRemoved": 0,
696
+ "filesRemovedList": [],
697
+ "filesUnmatched": 0,
698
+ "filesUpdated": 0,
699
+ "matched": 0,
700
+ "total": 0,
701
+ "unchecked": 0,
702
+ "uncheckedKeysByFile": [],
703
+ "unmatched": 0,
704
+ "updated": 0
705
+ },
706
+ "startTime": 1754272958607,
707
+ "success": true,
708
+ "testResults": [
709
+ {
710
+ "assertionResults": [
711
+ {
712
+ "ancestorTitles": [
713
+ "Converter"
714
+ ],
715
+ "duration": 1,
716
+ "failureDetails": [],
717
+ "failureMessages": [],
718
+ "fullName": "Converter single bit one to decimal",
719
+ "invocations": 1,
720
+ "location": null,
721
+ "numPassingAsserts": 1,
722
+ "retryReasons": [],
723
+ "status": "passed",
724
+ "title": "single bit one to decimal"
725
+ },
726
+ {
727
+ "ancestorTitles": [
728
+ "Converter"
729
+ ],
730
+ "duration": 0,
731
+ "failureDetails": [],
732
+ "failureMessages": [],
733
+ "fullName": "Converter binary to single decimal",
734
+ "invocations": 1,
735
+ "location": null,
736
+ "numPassingAsserts": 1,
737
+ "retryReasons": [],
738
+ "status": "passed",
739
+ "title": "binary to single decimal"
740
+ },
741
+ {
742
+ "ancestorTitles": [
743
+ "Converter"
744
+ ],
745
+ "duration": 0,
746
+ "failureDetails": [],
747
+ "failureMessages": [],
748
+ "fullName": "Converter single decimal to binary",
749
+ "invocations": 1,
750
+ "location": null,
751
+ "numPassingAsserts": 1,
752
+ "retryReasons": [],
753
+ "status": "passed",
754
+ "title": "single decimal to binary"
755
+ },
756
+ {
757
+ "ancestorTitles": [
758
+ "Converter"
759
+ ],
760
+ "duration": 0,
761
+ "failureDetails": [],
762
+ "failureMessages": [],
763
+ "fullName": "Converter binary to multiple decimal",
764
+ "invocations": 1,
765
+ "location": null,
766
+ "numPassingAsserts": 1,
767
+ "retryReasons": [],
768
+ "status": "passed",
769
+ "title": "binary to multiple decimal"
770
+ },
771
+ {
772
+ "ancestorTitles": [
773
+ "Converter"
774
+ ],
775
+ "duration": 0,
776
+ "failureDetails": [],
777
+ "failureMessages": [],
778
+ "fullName": "Converter decimal to binary",
779
+ "invocations": 1,
780
+ "location": null,
781
+ "numPassingAsserts": 1,
782
+ "retryReasons": [],
783
+ "status": "passed",
784
+ "title": "decimal to binary"
785
+ },
786
+ {
787
+ "ancestorTitles": [
788
+ "Converter"
789
+ ],
790
+ "duration": 1,
791
+ "failureDetails": [],
792
+ "failureMessages": [],
793
+ "fullName": "Converter trinary to hexadecimal",
794
+ "invocations": 1,
795
+ "location": null,
796
+ "numPassingAsserts": 1,
797
+ "retryReasons": [],
798
+ "status": "passed",
799
+ "title": "trinary to hexadecimal"
800
+ },
801
+ {
802
+ "ancestorTitles": [
803
+ "Converter"
804
+ ],
805
+ "duration": 0,
806
+ "failureDetails": [],
807
+ "failureMessages": [],
808
+ "fullName": "Converter hexadecimal to trinary",
809
+ "invocations": 1,
810
+ "location": null,
811
+ "numPassingAsserts": 1,
812
+ "retryReasons": [],
813
+ "status": "passed",
814
+ "title": "hexadecimal to trinary"
815
+ },
816
+ {
817
+ "ancestorTitles": [
818
+ "Converter"
819
+ ],
820
+ "duration": 0,
821
+ "failureDetails": [],
822
+ "failureMessages": [],
823
+ "fullName": "Converter 15-bit integer",
824
+ "invocations": 1,
825
+ "location": null,
826
+ "numPassingAsserts": 1,
827
+ "retryReasons": [],
828
+ "status": "passed",
829
+ "title": "15-bit integer"
830
+ },
831
+ {
832
+ "ancestorTitles": [
833
+ "Converter"
834
+ ],
835
+ "duration": 4,
836
+ "failureDetails": [],
837
+ "failureMessages": [],
838
+ "fullName": "Converter empty list",
839
+ "invocations": 1,
840
+ "location": null,
841
+ "numPassingAsserts": 1,
842
+ "retryReasons": [],
843
+ "status": "passed",
844
+ "title": "empty list"
845
+ },
846
+ {
847
+ "ancestorTitles": [
848
+ "Converter"
849
+ ],
850
+ "duration": 0,
851
+ "failureDetails": [],
852
+ "failureMessages": [],
853
+ "fullName": "Converter single zero",
854
+ "invocations": 1,
855
+ "location": null,
856
+ "numPassingAsserts": 1,
857
+ "retryReasons": [],
858
+ "status": "passed",
859
+ "title": "single zero"
860
+ },
861
+ {
862
+ "ancestorTitles": [
863
+ "Converter"
864
+ ],
865
+ "duration": 1,
866
+ "failureDetails": [],
867
+ "failureMessages": [],
868
+ "fullName": "Converter multiple zeros",
869
+ "invocations": 1,
870
+ "location": null,
871
+ "numPassingAsserts": 1,
872
+ "retryReasons": [],
873
+ "status": "passed",
874
+ "title": "multiple zeros"
875
+ },
876
+ {
877
+ "ancestorTitles": [
878
+ "Converter"
879
+ ],
880
+ "duration": 0,
881
+ "failureDetails": [],
882
+ "failureMessages": [],
883
+ "fullName": "Converter leading zeros",
884
+ "invocations": 1,
885
+ "location": null,
886
+ "numPassingAsserts": 1,
887
+ "retryReasons": [],
888
+ "status": "passed",
889
+ "title": "leading zeros"
890
+ },
891
+ {
892
+ "ancestorTitles": [
893
+ "Converter"
894
+ ],
895
+ "duration": 0,
896
+ "failureDetails": [],
897
+ "failureMessages": [],
898
+ "fullName": "Converter negative digit",
899
+ "invocations": 1,
900
+ "location": null,
901
+ "numPassingAsserts": 1,
902
+ "retryReasons": [],
903
+ "status": "passed",
904
+ "title": "negative digit"
905
+ },
906
+ {
907
+ "ancestorTitles": [
908
+ "Converter"
909
+ ],
910
+ "duration": 1,
911
+ "failureDetails": [],
912
+ "failureMessages": [],
913
+ "fullName": "Converter invalid positive digit",
914
+ "invocations": 1,
915
+ "location": null,
916
+ "numPassingAsserts": 1,
917
+ "retryReasons": [],
918
+ "status": "passed",
919
+ "title": "invalid positive digit"
920
+ },
921
+ {
922
+ "ancestorTitles": [
923
+ "Converter"
924
+ ],
925
+ "duration": 0,
926
+ "failureDetails": [],
927
+ "failureMessages": [],
928
+ "fullName": "Converter first base is one",
929
+ "invocations": 1,
930
+ "location": null,
931
+ "numPassingAsserts": 1,
932
+ "retryReasons": [],
933
+ "status": "passed",
934
+ "title": "first base is one"
935
+ },
936
+ {
937
+ "ancestorTitles": [
938
+ "Converter"
939
+ ],
940
+ "duration": 0,
941
+ "failureDetails": [],
942
+ "failureMessages": [],
943
+ "fullName": "Converter second base is one",
944
+ "invocations": 1,
945
+ "location": null,
946
+ "numPassingAsserts": 1,
947
+ "retryReasons": [],
948
+ "status": "passed",
949
+ "title": "second base is one"
950
+ },
951
+ {
952
+ "ancestorTitles": [
953
+ "Converter"
954
+ ],
955
+ "duration": 0,
956
+ "failureDetails": [],
957
+ "failureMessages": [],
958
+ "fullName": "Converter first base is zero",
959
+ "invocations": 1,
960
+ "location": null,
961
+ "numPassingAsserts": 1,
962
+ "retryReasons": [],
963
+ "status": "passed",
964
+ "title": "first base is zero"
965
+ },
966
+ {
967
+ "ancestorTitles": [
968
+ "Converter"
969
+ ],
970
+ "duration": 0,
971
+ "failureDetails": [],
972
+ "failureMessages": [],
973
+ "fullName": "Converter second base is zero",
974
+ "invocations": 1,
975
+ "location": null,
976
+ "numPassingAsserts": 1,
977
+ "retryReasons": [],
978
+ "status": "passed",
979
+ "title": "second base is zero"
980
+ },
981
+ {
982
+ "ancestorTitles": [
983
+ "Converter"
984
+ ],
985
+ "duration": 1,
986
+ "failureDetails": [],
987
+ "failureMessages": [],
988
+ "fullName": "Converter first base is negative",
989
+ "invocations": 1,
990
+ "location": null,
991
+ "numPassingAsserts": 1,
992
+ "retryReasons": [],
993
+ "status": "passed",
994
+ "title": "first base is negative"
995
+ },
996
+ {
997
+ "ancestorTitles": [
998
+ "Converter"
999
+ ],
1000
+ "duration": 0,
1001
+ "failureDetails": [],
1002
+ "failureMessages": [],
1003
+ "fullName": "Converter second base is negative",
1004
+ "invocations": 1,
1005
+ "location": null,
1006
+ "numPassingAsserts": 1,
1007
+ "retryReasons": [],
1008
+ "status": "passed",
1009
+ "title": "second base is negative"
1010
+ },
1011
+ {
1012
+ "ancestorTitles": [
1013
+ "Converter"
1014
+ ],
1015
+ "duration": 0,
1016
+ "failureDetails": [],
1017
+ "failureMessages": [],
1018
+ "fullName": "Converter both bases are negative",
1019
+ "invocations": 1,
1020
+ "location": null,
1021
+ "numPassingAsserts": 1,
1022
+ "retryReasons": [],
1023
+ "status": "passed",
1024
+ "title": "both bases are negative"
1025
+ }
1026
+ ],
1027
+ "endTime": 1754272958709,
1028
+ "message": "",
1029
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/all-your-base/all-your-base.spec.js",
1030
+ "startTime": 1754272958618,
1031
+ "status": "passed",
1032
+ "summary": ""
1033
+ }
1034
+ ],
1035
+ "wasInterrupted": false
1036
+ }
1037
+ },
1038
+ "timeElapsed": 48.839,
1039
+ "cost": 0.32084589043199996,
1040
+ "startTime": "2025-08-04T02:01:49.880Z",
1041
+ "endTime": "2025-08-04T02:02:38.719Z",
1042
+ "finalOutput": "All tests for the \"all-your-base\" JavaScript exercise are now passing!\n\n**What was done:**\n1. Implemented the `convert` function in `all-your-base.js` to handle conversion between arbitrary bases and validate inputs according to the problem specification.\n2. Unskipped all tests in `all-your-base.spec.js` so that the whole suite runs.\n3. Ensured all relevant error cases and edge cases are handled, including negative bases, invalid digits, and improper formatting.\n\nYou can now submit this solution with full confidence that it passes all provided test cases."
1043
+ },
1044
+ {
1045
+ "exerciseName": "allergies",
1046
+ "status": "success",
1047
+ "turns": 11,
1048
+ "testResult": {
1049
+ "passed": 50,
1050
+ "failed": 0,
1051
+ "total": 50,
1052
+ "skipped": 0,
1053
+ "success": true,
1054
+ "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\":1754272986771,\"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\":1,\"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\":1,\"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\":0,\"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\":1,\"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\":0,\"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\":1,\"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\":0,\"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\":1,\"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\":0,\"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\":1,\"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\":1754272986865,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/allergies/allergies.spec.js\",\"startTime\":1754272986781,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
1055
+ "details": {
1056
+ "numFailedTestSuites": 0,
1057
+ "numFailedTests": 0,
1058
+ "numPassedTestSuites": 1,
1059
+ "numPassedTests": 50,
1060
+ "numPendingTestSuites": 0,
1061
+ "numPendingTests": 0,
1062
+ "numRuntimeErrorTestSuites": 0,
1063
+ "numTodoTests": 0,
1064
+ "numTotalTestSuites": 1,
1065
+ "numTotalTests": 50,
1066
+ "openHandles": [],
1067
+ "snapshot": {
1068
+ "added": 0,
1069
+ "didUpdate": false,
1070
+ "failure": false,
1071
+ "filesAdded": 0,
1072
+ "filesRemoved": 0,
1073
+ "filesRemovedList": [],
1074
+ "filesUnmatched": 0,
1075
+ "filesUpdated": 0,
1076
+ "matched": 0,
1077
+ "total": 0,
1078
+ "unchecked": 0,
1079
+ "uncheckedKeysByFile": [],
1080
+ "unmatched": 0,
1081
+ "updated": 0
1082
+ },
1083
+ "startTime": 1754272986771,
1084
+ "success": true,
1085
+ "testResults": [
1086
+ {
1087
+ "assertionResults": [
1088
+ {
1089
+ "ancestorTitles": [
1090
+ "Allergies",
1091
+ "testing for eggs allergy"
1092
+ ],
1093
+ "duration": 1,
1094
+ "failureDetails": [],
1095
+ "failureMessages": [],
1096
+ "fullName": "Allergies testing for eggs allergy not allergic to anything",
1097
+ "invocations": 1,
1098
+ "location": null,
1099
+ "numPassingAsserts": 1,
1100
+ "retryReasons": [],
1101
+ "status": "passed",
1102
+ "title": "not allergic to anything"
1103
+ },
1104
+ {
1105
+ "ancestorTitles": [
1106
+ "Allergies",
1107
+ "testing for eggs allergy"
1108
+ ],
1109
+ "duration": 0,
1110
+ "failureDetails": [],
1111
+ "failureMessages": [],
1112
+ "fullName": "Allergies testing for eggs allergy allergic only to eggs",
1113
+ "invocations": 1,
1114
+ "location": null,
1115
+ "numPassingAsserts": 1,
1116
+ "retryReasons": [],
1117
+ "status": "passed",
1118
+ "title": "allergic only to eggs"
1119
+ },
1120
+ {
1121
+ "ancestorTitles": [
1122
+ "Allergies",
1123
+ "testing for eggs allergy"
1124
+ ],
1125
+ "duration": 1,
1126
+ "failureDetails": [],
1127
+ "failureMessages": [],
1128
+ "fullName": "Allergies testing for eggs allergy allergic to eggs and something else",
1129
+ "invocations": 1,
1130
+ "location": null,
1131
+ "numPassingAsserts": 1,
1132
+ "retryReasons": [],
1133
+ "status": "passed",
1134
+ "title": "allergic to eggs and something else"
1135
+ },
1136
+ {
1137
+ "ancestorTitles": [
1138
+ "Allergies",
1139
+ "testing for eggs allergy"
1140
+ ],
1141
+ "duration": 0,
1142
+ "failureDetails": [],
1143
+ "failureMessages": [],
1144
+ "fullName": "Allergies testing for eggs allergy allergic to something, but not eggs",
1145
+ "invocations": 1,
1146
+ "location": null,
1147
+ "numPassingAsserts": 1,
1148
+ "retryReasons": [],
1149
+ "status": "passed",
1150
+ "title": "allergic to something, but not eggs"
1151
+ },
1152
+ {
1153
+ "ancestorTitles": [
1154
+ "Allergies",
1155
+ "testing for eggs allergy"
1156
+ ],
1157
+ "duration": 0,
1158
+ "failureDetails": [],
1159
+ "failureMessages": [],
1160
+ "fullName": "Allergies testing for eggs allergy allergic to everything",
1161
+ "invocations": 1,
1162
+ "location": null,
1163
+ "numPassingAsserts": 1,
1164
+ "retryReasons": [],
1165
+ "status": "passed",
1166
+ "title": "allergic to everything"
1167
+ },
1168
+ {
1169
+ "ancestorTitles": [
1170
+ "Allergies",
1171
+ "testing for peanuts allergy"
1172
+ ],
1173
+ "duration": 0,
1174
+ "failureDetails": [],
1175
+ "failureMessages": [],
1176
+ "fullName": "Allergies testing for peanuts allergy not allergic to anything",
1177
+ "invocations": 1,
1178
+ "location": null,
1179
+ "numPassingAsserts": 1,
1180
+ "retryReasons": [],
1181
+ "status": "passed",
1182
+ "title": "not allergic to anything"
1183
+ },
1184
+ {
1185
+ "ancestorTitles": [
1186
+ "Allergies",
1187
+ "testing for peanuts allergy"
1188
+ ],
1189
+ "duration": 0,
1190
+ "failureDetails": [],
1191
+ "failureMessages": [],
1192
+ "fullName": "Allergies testing for peanuts allergy allergic only to peanuts",
1193
+ "invocations": 1,
1194
+ "location": null,
1195
+ "numPassingAsserts": 1,
1196
+ "retryReasons": [],
1197
+ "status": "passed",
1198
+ "title": "allergic only to peanuts"
1199
+ },
1200
+ {
1201
+ "ancestorTitles": [
1202
+ "Allergies",
1203
+ "testing for peanuts allergy"
1204
+ ],
1205
+ "duration": 0,
1206
+ "failureDetails": [],
1207
+ "failureMessages": [],
1208
+ "fullName": "Allergies testing for peanuts allergy allergic to peanuts and something else",
1209
+ "invocations": 1,
1210
+ "location": null,
1211
+ "numPassingAsserts": 1,
1212
+ "retryReasons": [],
1213
+ "status": "passed",
1214
+ "title": "allergic to peanuts and something else"
1215
+ },
1216
+ {
1217
+ "ancestorTitles": [
1218
+ "Allergies",
1219
+ "testing for peanuts allergy"
1220
+ ],
1221
+ "duration": 1,
1222
+ "failureDetails": [],
1223
+ "failureMessages": [],
1224
+ "fullName": "Allergies testing for peanuts allergy allergic to something, but not peanuts",
1225
+ "invocations": 1,
1226
+ "location": null,
1227
+ "numPassingAsserts": 1,
1228
+ "retryReasons": [],
1229
+ "status": "passed",
1230
+ "title": "allergic to something, but not peanuts"
1231
+ },
1232
+ {
1233
+ "ancestorTitles": [
1234
+ "Allergies",
1235
+ "testing for peanuts allergy"
1236
+ ],
1237
+ "duration": 0,
1238
+ "failureDetails": [],
1239
+ "failureMessages": [],
1240
+ "fullName": "Allergies testing for peanuts allergy allergic to everything",
1241
+ "invocations": 1,
1242
+ "location": null,
1243
+ "numPassingAsserts": 1,
1244
+ "retryReasons": [],
1245
+ "status": "passed",
1246
+ "title": "allergic to everything"
1247
+ },
1248
+ {
1249
+ "ancestorTitles": [
1250
+ "Allergies",
1251
+ "testing for shellfish allergy"
1252
+ ],
1253
+ "duration": 0,
1254
+ "failureDetails": [],
1255
+ "failureMessages": [],
1256
+ "fullName": "Allergies testing for shellfish allergy not allergic to anything",
1257
+ "invocations": 1,
1258
+ "location": null,
1259
+ "numPassingAsserts": 1,
1260
+ "retryReasons": [],
1261
+ "status": "passed",
1262
+ "title": "not allergic to anything"
1263
+ },
1264
+ {
1265
+ "ancestorTitles": [
1266
+ "Allergies",
1267
+ "testing for shellfish allergy"
1268
+ ],
1269
+ "duration": 0,
1270
+ "failureDetails": [],
1271
+ "failureMessages": [],
1272
+ "fullName": "Allergies testing for shellfish allergy allergic only to shellfish",
1273
+ "invocations": 1,
1274
+ "location": null,
1275
+ "numPassingAsserts": 1,
1276
+ "retryReasons": [],
1277
+ "status": "passed",
1278
+ "title": "allergic only to shellfish"
1279
+ },
1280
+ {
1281
+ "ancestorTitles": [
1282
+ "Allergies",
1283
+ "testing for shellfish allergy"
1284
+ ],
1285
+ "duration": 0,
1286
+ "failureDetails": [],
1287
+ "failureMessages": [],
1288
+ "fullName": "Allergies testing for shellfish allergy allergic to shellfish and something else",
1289
+ "invocations": 1,
1290
+ "location": null,
1291
+ "numPassingAsserts": 1,
1292
+ "retryReasons": [],
1293
+ "status": "passed",
1294
+ "title": "allergic to shellfish and something else"
1295
+ },
1296
+ {
1297
+ "ancestorTitles": [
1298
+ "Allergies",
1299
+ "testing for shellfish allergy"
1300
+ ],
1301
+ "duration": 0,
1302
+ "failureDetails": [],
1303
+ "failureMessages": [],
1304
+ "fullName": "Allergies testing for shellfish allergy allergic to something, but not shellfish",
1305
+ "invocations": 1,
1306
+ "location": null,
1307
+ "numPassingAsserts": 1,
1308
+ "retryReasons": [],
1309
+ "status": "passed",
1310
+ "title": "allergic to something, but not shellfish"
1311
+ },
1312
+ {
1313
+ "ancestorTitles": [
1314
+ "Allergies",
1315
+ "testing for shellfish allergy"
1316
+ ],
1317
+ "duration": 0,
1318
+ "failureDetails": [],
1319
+ "failureMessages": [],
1320
+ "fullName": "Allergies testing for shellfish allergy allergic to everything",
1321
+ "invocations": 1,
1322
+ "location": null,
1323
+ "numPassingAsserts": 1,
1324
+ "retryReasons": [],
1325
+ "status": "passed",
1326
+ "title": "allergic to everything"
1327
+ },
1328
+ {
1329
+ "ancestorTitles": [
1330
+ "Allergies",
1331
+ "testing for strawberries allergy"
1332
+ ],
1333
+ "duration": 1,
1334
+ "failureDetails": [],
1335
+ "failureMessages": [],
1336
+ "fullName": "Allergies testing for strawberries allergy not allergic to anything",
1337
+ "invocations": 1,
1338
+ "location": null,
1339
+ "numPassingAsserts": 1,
1340
+ "retryReasons": [],
1341
+ "status": "passed",
1342
+ "title": "not allergic to anything"
1343
+ },
1344
+ {
1345
+ "ancestorTitles": [
1346
+ "Allergies",
1347
+ "testing for strawberries allergy"
1348
+ ],
1349
+ "duration": 0,
1350
+ "failureDetails": [],
1351
+ "failureMessages": [],
1352
+ "fullName": "Allergies testing for strawberries allergy allergic only to strawberries",
1353
+ "invocations": 1,
1354
+ "location": null,
1355
+ "numPassingAsserts": 1,
1356
+ "retryReasons": [],
1357
+ "status": "passed",
1358
+ "title": "allergic only to strawberries"
1359
+ },
1360
+ {
1361
+ "ancestorTitles": [
1362
+ "Allergies",
1363
+ "testing for strawberries allergy"
1364
+ ],
1365
+ "duration": 0,
1366
+ "failureDetails": [],
1367
+ "failureMessages": [],
1368
+ "fullName": "Allergies testing for strawberries allergy allergic to strawberries and something else",
1369
+ "invocations": 1,
1370
+ "location": null,
1371
+ "numPassingAsserts": 1,
1372
+ "retryReasons": [],
1373
+ "status": "passed",
1374
+ "title": "allergic to strawberries and something else"
1375
+ },
1376
+ {
1377
+ "ancestorTitles": [
1378
+ "Allergies",
1379
+ "testing for strawberries allergy"
1380
+ ],
1381
+ "duration": 0,
1382
+ "failureDetails": [],
1383
+ "failureMessages": [],
1384
+ "fullName": "Allergies testing for strawberries allergy allergic to something, but not strawberries",
1385
+ "invocations": 1,
1386
+ "location": null,
1387
+ "numPassingAsserts": 1,
1388
+ "retryReasons": [],
1389
+ "status": "passed",
1390
+ "title": "allergic to something, but not strawberries"
1391
+ },
1392
+ {
1393
+ "ancestorTitles": [
1394
+ "Allergies",
1395
+ "testing for strawberries allergy"
1396
+ ],
1397
+ "duration": 0,
1398
+ "failureDetails": [],
1399
+ "failureMessages": [],
1400
+ "fullName": "Allergies testing for strawberries allergy allergic to everything",
1401
+ "invocations": 1,
1402
+ "location": null,
1403
+ "numPassingAsserts": 1,
1404
+ "retryReasons": [],
1405
+ "status": "passed",
1406
+ "title": "allergic to everything"
1407
+ },
1408
+ {
1409
+ "ancestorTitles": [
1410
+ "Allergies",
1411
+ "testing for tomatoes allergy"
1412
+ ],
1413
+ "duration": 0,
1414
+ "failureDetails": [],
1415
+ "failureMessages": [],
1416
+ "fullName": "Allergies testing for tomatoes allergy not allergic to anything",
1417
+ "invocations": 1,
1418
+ "location": null,
1419
+ "numPassingAsserts": 1,
1420
+ "retryReasons": [],
1421
+ "status": "passed",
1422
+ "title": "not allergic to anything"
1423
+ },
1424
+ {
1425
+ "ancestorTitles": [
1426
+ "Allergies",
1427
+ "testing for tomatoes allergy"
1428
+ ],
1429
+ "duration": 0,
1430
+ "failureDetails": [],
1431
+ "failureMessages": [],
1432
+ "fullName": "Allergies testing for tomatoes allergy allergic only to tomatoes",
1433
+ "invocations": 1,
1434
+ "location": null,
1435
+ "numPassingAsserts": 1,
1436
+ "retryReasons": [],
1437
+ "status": "passed",
1438
+ "title": "allergic only to tomatoes"
1439
+ },
1440
+ {
1441
+ "ancestorTitles": [
1442
+ "Allergies",
1443
+ "testing for tomatoes allergy"
1444
+ ],
1445
+ "duration": 0,
1446
+ "failureDetails": [],
1447
+ "failureMessages": [],
1448
+ "fullName": "Allergies testing for tomatoes allergy allergic to tomatoes and something else",
1449
+ "invocations": 1,
1450
+ "location": null,
1451
+ "numPassingAsserts": 1,
1452
+ "retryReasons": [],
1453
+ "status": "passed",
1454
+ "title": "allergic to tomatoes and something else"
1455
+ },
1456
+ {
1457
+ "ancestorTitles": [
1458
+ "Allergies",
1459
+ "testing for tomatoes allergy"
1460
+ ],
1461
+ "duration": 0,
1462
+ "failureDetails": [],
1463
+ "failureMessages": [],
1464
+ "fullName": "Allergies testing for tomatoes allergy allergic to something, but not tomatoes",
1465
+ "invocations": 1,
1466
+ "location": null,
1467
+ "numPassingAsserts": 1,
1468
+ "retryReasons": [],
1469
+ "status": "passed",
1470
+ "title": "allergic to something, but not tomatoes"
1471
+ },
1472
+ {
1473
+ "ancestorTitles": [
1474
+ "Allergies",
1475
+ "testing for tomatoes allergy"
1476
+ ],
1477
+ "duration": 0,
1478
+ "failureDetails": [],
1479
+ "failureMessages": [],
1480
+ "fullName": "Allergies testing for tomatoes allergy allergic to everything",
1481
+ "invocations": 1,
1482
+ "location": null,
1483
+ "numPassingAsserts": 1,
1484
+ "retryReasons": [],
1485
+ "status": "passed",
1486
+ "title": "allergic to everything"
1487
+ },
1488
+ {
1489
+ "ancestorTitles": [
1490
+ "Allergies",
1491
+ "testing for chocolate allergy"
1492
+ ],
1493
+ "duration": 1,
1494
+ "failureDetails": [],
1495
+ "failureMessages": [],
1496
+ "fullName": "Allergies testing for chocolate allergy not allergic to anything",
1497
+ "invocations": 1,
1498
+ "location": null,
1499
+ "numPassingAsserts": 1,
1500
+ "retryReasons": [],
1501
+ "status": "passed",
1502
+ "title": "not allergic to anything"
1503
+ },
1504
+ {
1505
+ "ancestorTitles": [
1506
+ "Allergies",
1507
+ "testing for chocolate allergy"
1508
+ ],
1509
+ "duration": 0,
1510
+ "failureDetails": [],
1511
+ "failureMessages": [],
1512
+ "fullName": "Allergies testing for chocolate allergy allergic only to chocolate",
1513
+ "invocations": 1,
1514
+ "location": null,
1515
+ "numPassingAsserts": 1,
1516
+ "retryReasons": [],
1517
+ "status": "passed",
1518
+ "title": "allergic only to chocolate"
1519
+ },
1520
+ {
1521
+ "ancestorTitles": [
1522
+ "Allergies",
1523
+ "testing for chocolate allergy"
1524
+ ],
1525
+ "duration": 0,
1526
+ "failureDetails": [],
1527
+ "failureMessages": [],
1528
+ "fullName": "Allergies testing for chocolate allergy allergic to chocolate and something else",
1529
+ "invocations": 1,
1530
+ "location": null,
1531
+ "numPassingAsserts": 1,
1532
+ "retryReasons": [],
1533
+ "status": "passed",
1534
+ "title": "allergic to chocolate and something else"
1535
+ },
1536
+ {
1537
+ "ancestorTitles": [
1538
+ "Allergies",
1539
+ "testing for chocolate allergy"
1540
+ ],
1541
+ "duration": 0,
1542
+ "failureDetails": [],
1543
+ "failureMessages": [],
1544
+ "fullName": "Allergies testing for chocolate allergy allergic to something, but not chocolate",
1545
+ "invocations": 1,
1546
+ "location": null,
1547
+ "numPassingAsserts": 1,
1548
+ "retryReasons": [],
1549
+ "status": "passed",
1550
+ "title": "allergic to something, but not chocolate"
1551
+ },
1552
+ {
1553
+ "ancestorTitles": [
1554
+ "Allergies",
1555
+ "testing for chocolate allergy"
1556
+ ],
1557
+ "duration": 0,
1558
+ "failureDetails": [],
1559
+ "failureMessages": [],
1560
+ "fullName": "Allergies testing for chocolate allergy allergic to everything",
1561
+ "invocations": 1,
1562
+ "location": null,
1563
+ "numPassingAsserts": 1,
1564
+ "retryReasons": [],
1565
+ "status": "passed",
1566
+ "title": "allergic to everything"
1567
+ },
1568
+ {
1569
+ "ancestorTitles": [
1570
+ "Allergies",
1571
+ "testing for pollen allergy"
1572
+ ],
1573
+ "duration": 0,
1574
+ "failureDetails": [],
1575
+ "failureMessages": [],
1576
+ "fullName": "Allergies testing for pollen allergy not allergic to anything",
1577
+ "invocations": 1,
1578
+ "location": null,
1579
+ "numPassingAsserts": 1,
1580
+ "retryReasons": [],
1581
+ "status": "passed",
1582
+ "title": "not allergic to anything"
1583
+ },
1584
+ {
1585
+ "ancestorTitles": [
1586
+ "Allergies",
1587
+ "testing for pollen allergy"
1588
+ ],
1589
+ "duration": 0,
1590
+ "failureDetails": [],
1591
+ "failureMessages": [],
1592
+ "fullName": "Allergies testing for pollen allergy allergic only to pollen",
1593
+ "invocations": 1,
1594
+ "location": null,
1595
+ "numPassingAsserts": 1,
1596
+ "retryReasons": [],
1597
+ "status": "passed",
1598
+ "title": "allergic only to pollen"
1599
+ },
1600
+ {
1601
+ "ancestorTitles": [
1602
+ "Allergies",
1603
+ "testing for pollen allergy"
1604
+ ],
1605
+ "duration": 0,
1606
+ "failureDetails": [],
1607
+ "failureMessages": [],
1608
+ "fullName": "Allergies testing for pollen allergy allergic to pollen and something else",
1609
+ "invocations": 1,
1610
+ "location": null,
1611
+ "numPassingAsserts": 1,
1612
+ "retryReasons": [],
1613
+ "status": "passed",
1614
+ "title": "allergic to pollen and something else"
1615
+ },
1616
+ {
1617
+ "ancestorTitles": [
1618
+ "Allergies",
1619
+ "testing for pollen allergy"
1620
+ ],
1621
+ "duration": 0,
1622
+ "failureDetails": [],
1623
+ "failureMessages": [],
1624
+ "fullName": "Allergies testing for pollen allergy allergic to something, but not pollen",
1625
+ "invocations": 1,
1626
+ "location": null,
1627
+ "numPassingAsserts": 1,
1628
+ "retryReasons": [],
1629
+ "status": "passed",
1630
+ "title": "allergic to something, but not pollen"
1631
+ },
1632
+ {
1633
+ "ancestorTitles": [
1634
+ "Allergies",
1635
+ "testing for pollen allergy"
1636
+ ],
1637
+ "duration": 0,
1638
+ "failureDetails": [],
1639
+ "failureMessages": [],
1640
+ "fullName": "Allergies testing for pollen allergy allergic to everything",
1641
+ "invocations": 1,
1642
+ "location": null,
1643
+ "numPassingAsserts": 1,
1644
+ "retryReasons": [],
1645
+ "status": "passed",
1646
+ "title": "allergic to everything"
1647
+ },
1648
+ {
1649
+ "ancestorTitles": [
1650
+ "Allergies",
1651
+ "testing for cats allergy"
1652
+ ],
1653
+ "duration": 0,
1654
+ "failureDetails": [],
1655
+ "failureMessages": [],
1656
+ "fullName": "Allergies testing for cats allergy not allergic to anything",
1657
+ "invocations": 1,
1658
+ "location": null,
1659
+ "numPassingAsserts": 1,
1660
+ "retryReasons": [],
1661
+ "status": "passed",
1662
+ "title": "not allergic to anything"
1663
+ },
1664
+ {
1665
+ "ancestorTitles": [
1666
+ "Allergies",
1667
+ "testing for cats allergy"
1668
+ ],
1669
+ "duration": 1,
1670
+ "failureDetails": [],
1671
+ "failureMessages": [],
1672
+ "fullName": "Allergies testing for cats allergy allergic only to cats",
1673
+ "invocations": 1,
1674
+ "location": null,
1675
+ "numPassingAsserts": 1,
1676
+ "retryReasons": [],
1677
+ "status": "passed",
1678
+ "title": "allergic only to cats"
1679
+ },
1680
+ {
1681
+ "ancestorTitles": [
1682
+ "Allergies",
1683
+ "testing for cats allergy"
1684
+ ],
1685
+ "duration": 0,
1686
+ "failureDetails": [],
1687
+ "failureMessages": [],
1688
+ "fullName": "Allergies testing for cats allergy allergic to cats and something else",
1689
+ "invocations": 1,
1690
+ "location": null,
1691
+ "numPassingAsserts": 1,
1692
+ "retryReasons": [],
1693
+ "status": "passed",
1694
+ "title": "allergic to cats and something else"
1695
+ },
1696
+ {
1697
+ "ancestorTitles": [
1698
+ "Allergies",
1699
+ "testing for cats allergy"
1700
+ ],
1701
+ "duration": 0,
1702
+ "failureDetails": [],
1703
+ "failureMessages": [],
1704
+ "fullName": "Allergies testing for cats allergy allergic to something, but not cats",
1705
+ "invocations": 1,
1706
+ "location": null,
1707
+ "numPassingAsserts": 1,
1708
+ "retryReasons": [],
1709
+ "status": "passed",
1710
+ "title": "allergic to something, but not cats"
1711
+ },
1712
+ {
1713
+ "ancestorTitles": [
1714
+ "Allergies",
1715
+ "testing for cats allergy"
1716
+ ],
1717
+ "duration": 0,
1718
+ "failureDetails": [],
1719
+ "failureMessages": [],
1720
+ "fullName": "Allergies testing for cats allergy allergic to everything",
1721
+ "invocations": 1,
1722
+ "location": null,
1723
+ "numPassingAsserts": 1,
1724
+ "retryReasons": [],
1725
+ "status": "passed",
1726
+ "title": "allergic to everything"
1727
+ },
1728
+ {
1729
+ "ancestorTitles": [
1730
+ "Allergies",
1731
+ "list when:"
1732
+ ],
1733
+ "duration": 0,
1734
+ "failureDetails": [],
1735
+ "failureMessages": [],
1736
+ "fullName": "Allergies list when: no allergies",
1737
+ "invocations": 1,
1738
+ "location": null,
1739
+ "numPassingAsserts": 1,
1740
+ "retryReasons": [],
1741
+ "status": "passed",
1742
+ "title": "no allergies"
1743
+ },
1744
+ {
1745
+ "ancestorTitles": [
1746
+ "Allergies",
1747
+ "list when:"
1748
+ ],
1749
+ "duration": 0,
1750
+ "failureDetails": [],
1751
+ "failureMessages": [],
1752
+ "fullName": "Allergies list when: just eggs",
1753
+ "invocations": 1,
1754
+ "location": null,
1755
+ "numPassingAsserts": 1,
1756
+ "retryReasons": [],
1757
+ "status": "passed",
1758
+ "title": "just eggs"
1759
+ },
1760
+ {
1761
+ "ancestorTitles": [
1762
+ "Allergies",
1763
+ "list when:"
1764
+ ],
1765
+ "duration": 0,
1766
+ "failureDetails": [],
1767
+ "failureMessages": [],
1768
+ "fullName": "Allergies list when: just peanuts",
1769
+ "invocations": 1,
1770
+ "location": null,
1771
+ "numPassingAsserts": 1,
1772
+ "retryReasons": [],
1773
+ "status": "passed",
1774
+ "title": "just peanuts"
1775
+ },
1776
+ {
1777
+ "ancestorTitles": [
1778
+ "Allergies",
1779
+ "list when:"
1780
+ ],
1781
+ "duration": 0,
1782
+ "failureDetails": [],
1783
+ "failureMessages": [],
1784
+ "fullName": "Allergies list when: just strawberries",
1785
+ "invocations": 1,
1786
+ "location": null,
1787
+ "numPassingAsserts": 1,
1788
+ "retryReasons": [],
1789
+ "status": "passed",
1790
+ "title": "just strawberries"
1791
+ },
1792
+ {
1793
+ "ancestorTitles": [
1794
+ "Allergies",
1795
+ "list when:"
1796
+ ],
1797
+ "duration": 0,
1798
+ "failureDetails": [],
1799
+ "failureMessages": [],
1800
+ "fullName": "Allergies list when: eggs and peanuts",
1801
+ "invocations": 1,
1802
+ "location": null,
1803
+ "numPassingAsserts": 1,
1804
+ "retryReasons": [],
1805
+ "status": "passed",
1806
+ "title": "eggs and peanuts"
1807
+ },
1808
+ {
1809
+ "ancestorTitles": [
1810
+ "Allergies",
1811
+ "list when:"
1812
+ ],
1813
+ "duration": 1,
1814
+ "failureDetails": [],
1815
+ "failureMessages": [],
1816
+ "fullName": "Allergies list when: more than eggs but not peanuts",
1817
+ "invocations": 1,
1818
+ "location": null,
1819
+ "numPassingAsserts": 1,
1820
+ "retryReasons": [],
1821
+ "status": "passed",
1822
+ "title": "more than eggs but not peanuts"
1823
+ },
1824
+ {
1825
+ "ancestorTitles": [
1826
+ "Allergies",
1827
+ "list when:"
1828
+ ],
1829
+ "duration": 0,
1830
+ "failureDetails": [],
1831
+ "failureMessages": [],
1832
+ "fullName": "Allergies list when: lots of stuff",
1833
+ "invocations": 1,
1834
+ "location": null,
1835
+ "numPassingAsserts": 1,
1836
+ "retryReasons": [],
1837
+ "status": "passed",
1838
+ "title": "lots of stuff"
1839
+ },
1840
+ {
1841
+ "ancestorTitles": [
1842
+ "Allergies",
1843
+ "list when:"
1844
+ ],
1845
+ "duration": 0,
1846
+ "failureDetails": [],
1847
+ "failureMessages": [],
1848
+ "fullName": "Allergies list when: everything",
1849
+ "invocations": 1,
1850
+ "location": null,
1851
+ "numPassingAsserts": 1,
1852
+ "retryReasons": [],
1853
+ "status": "passed",
1854
+ "title": "everything"
1855
+ },
1856
+ {
1857
+ "ancestorTitles": [
1858
+ "Allergies",
1859
+ "list when:"
1860
+ ],
1861
+ "duration": 0,
1862
+ "failureDetails": [],
1863
+ "failureMessages": [],
1864
+ "fullName": "Allergies list when: no allergen score parts",
1865
+ "invocations": 1,
1866
+ "location": null,
1867
+ "numPassingAsserts": 1,
1868
+ "retryReasons": [],
1869
+ "status": "passed",
1870
+ "title": "no allergen score parts"
1871
+ },
1872
+ {
1873
+ "ancestorTitles": [
1874
+ "Allergies",
1875
+ "list when:"
1876
+ ],
1877
+ "duration": 0,
1878
+ "failureDetails": [],
1879
+ "failureMessages": [],
1880
+ "fullName": "Allergies list when: no allergen score parts without highest valid score",
1881
+ "invocations": 1,
1882
+ "location": null,
1883
+ "numPassingAsserts": 1,
1884
+ "retryReasons": [],
1885
+ "status": "passed",
1886
+ "title": "no allergen score parts without highest valid score"
1887
+ }
1888
+ ],
1889
+ "endTime": 1754272986865,
1890
+ "message": "",
1891
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/allergies/allergies.spec.js",
1892
+ "startTime": 1754272986781,
1893
+ "status": "passed",
1894
+ "summary": ""
1895
+ }
1896
+ ],
1897
+ "wasInterrupted": false
1898
+ }
1899
+ },
1900
+ "timeElapsed": 28.146,
1901
+ "cost": 0.278021901056,
1902
+ "startTime": "2025-08-04T02:02:38.733Z",
1903
+ "endTime": "2025-08-04T02:03:06.879Z",
1904
+ "finalOutput": "The Allergies exercise has been successfully implemented. The solution includes:\n\n- Computing the allergies given a numeric score (accounting for only known allergens).\n- Determining if the person is allergic to a specific allergen.\n- Providing a complete list of allergens the person is allergic to.\n\nAll 50 unit tests are now passing, and all previously skipped tests have been unskipped and validated.\n\nYou can find the implementation in allergies.js, and the code is now ready for review or further development."
1905
+ },
1906
+ {
1907
+ "exerciseName": "alphametics",
1908
+ "status": "success",
1909
+ "turns": 13,
1910
+ "testResult": {
1911
+ "passed": 9,
1912
+ "failed": 0,
1913
+ "total": 9,
1914
+ "skipped": 0,
1915
+ "success": true,
1916
+ "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\":1754273050359,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Solve the alphametics puzzle\"],\"duration\":110,\"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\":564,\"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\":580,\"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\":520,\"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\":499,\"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\":539,\"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\":1908,\"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\":2085,\"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\":13947,\"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\":1754273071200,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/alphametics/alphametics.spec.js\",\"startTime\":1754273050369,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
1917
+ "details": {
1918
+ "numFailedTestSuites": 0,
1919
+ "numFailedTests": 0,
1920
+ "numPassedTestSuites": 1,
1921
+ "numPassedTests": 9,
1922
+ "numPendingTestSuites": 0,
1923
+ "numPendingTests": 0,
1924
+ "numRuntimeErrorTestSuites": 0,
1925
+ "numTodoTests": 0,
1926
+ "numTotalTestSuites": 1,
1927
+ "numTotalTests": 9,
1928
+ "openHandles": [],
1929
+ "snapshot": {
1930
+ "added": 0,
1931
+ "didUpdate": false,
1932
+ "failure": false,
1933
+ "filesAdded": 0,
1934
+ "filesRemoved": 0,
1935
+ "filesRemovedList": [],
1936
+ "filesUnmatched": 0,
1937
+ "filesUpdated": 0,
1938
+ "matched": 0,
1939
+ "total": 0,
1940
+ "unchecked": 0,
1941
+ "uncheckedKeysByFile": [],
1942
+ "unmatched": 0,
1943
+ "updated": 0
1944
+ },
1945
+ "startTime": 1754273050359,
1946
+ "success": true,
1947
+ "testResults": [
1948
+ {
1949
+ "assertionResults": [
1950
+ {
1951
+ "ancestorTitles": [
1952
+ "Solve the alphametics puzzle"
1953
+ ],
1954
+ "duration": 110,
1955
+ "failureDetails": [],
1956
+ "failureMessages": [],
1957
+ "fullName": "Solve the alphametics puzzle puzzle with three letters",
1958
+ "invocations": 1,
1959
+ "location": null,
1960
+ "numPassingAsserts": 1,
1961
+ "retryReasons": [],
1962
+ "status": "passed",
1963
+ "title": "puzzle with three letters"
1964
+ },
1965
+ {
1966
+ "ancestorTitles": [
1967
+ "Solve the alphametics puzzle"
1968
+ ],
1969
+ "duration": 564,
1970
+ "failureDetails": [],
1971
+ "failureMessages": [],
1972
+ "fullName": "Solve the alphametics puzzle solution must have unique value for each letter",
1973
+ "invocations": 1,
1974
+ "location": null,
1975
+ "numPassingAsserts": 1,
1976
+ "retryReasons": [],
1977
+ "status": "passed",
1978
+ "title": "solution must have unique value for each letter"
1979
+ },
1980
+ {
1981
+ "ancestorTitles": [
1982
+ "Solve the alphametics puzzle"
1983
+ ],
1984
+ "duration": 580,
1985
+ "failureDetails": [],
1986
+ "failureMessages": [],
1987
+ "fullName": "Solve the alphametics puzzle leading zero solution is invalid",
1988
+ "invocations": 1,
1989
+ "location": null,
1990
+ "numPassingAsserts": 1,
1991
+ "retryReasons": [],
1992
+ "status": "passed",
1993
+ "title": "leading zero solution is invalid"
1994
+ },
1995
+ {
1996
+ "ancestorTitles": [
1997
+ "Solve the alphametics puzzle"
1998
+ ],
1999
+ "duration": 520,
2000
+ "failureDetails": [],
2001
+ "failureMessages": [],
2002
+ "fullName": "Solve the alphametics puzzle puzzle with four letters",
2003
+ "invocations": 1,
2004
+ "location": null,
2005
+ "numPassingAsserts": 1,
2006
+ "retryReasons": [],
2007
+ "status": "passed",
2008
+ "title": "puzzle with four letters"
2009
+ },
2010
+ {
2011
+ "ancestorTitles": [
2012
+ "Solve the alphametics puzzle"
2013
+ ],
2014
+ "duration": 499,
2015
+ "failureDetails": [],
2016
+ "failureMessages": [],
2017
+ "fullName": "Solve the alphametics puzzle puzzle with six letters",
2018
+ "invocations": 1,
2019
+ "location": null,
2020
+ "numPassingAsserts": 1,
2021
+ "retryReasons": [],
2022
+ "status": "passed",
2023
+ "title": "puzzle with six letters"
2024
+ },
2025
+ {
2026
+ "ancestorTitles": [
2027
+ "Solve the alphametics puzzle"
2028
+ ],
2029
+ "duration": 539,
2030
+ "failureDetails": [],
2031
+ "failureMessages": [],
2032
+ "fullName": "Solve the alphametics puzzle puzzle with seven letters",
2033
+ "invocations": 1,
2034
+ "location": null,
2035
+ "numPassingAsserts": 1,
2036
+ "retryReasons": [],
2037
+ "status": "passed",
2038
+ "title": "puzzle with seven letters"
2039
+ },
2040
+ {
2041
+ "ancestorTitles": [
2042
+ "Solve the alphametics puzzle"
2043
+ ],
2044
+ "duration": 1908,
2045
+ "failureDetails": [],
2046
+ "failureMessages": [],
2047
+ "fullName": "Solve the alphametics puzzle puzzle with eight letters",
2048
+ "invocations": 1,
2049
+ "location": null,
2050
+ "numPassingAsserts": 1,
2051
+ "retryReasons": [],
2052
+ "status": "passed",
2053
+ "title": "puzzle with eight letters"
2054
+ },
2055
+ {
2056
+ "ancestorTitles": [
2057
+ "Solve the alphametics puzzle"
2058
+ ],
2059
+ "duration": 2085,
2060
+ "failureDetails": [],
2061
+ "failureMessages": [],
2062
+ "fullName": "Solve the alphametics puzzle puzzle with ten letters",
2063
+ "invocations": 1,
2064
+ "location": null,
2065
+ "numPassingAsserts": 1,
2066
+ "retryReasons": [],
2067
+ "status": "passed",
2068
+ "title": "puzzle with ten letters"
2069
+ },
2070
+ {
2071
+ "ancestorTitles": [
2072
+ "Solve the alphametics puzzle"
2073
+ ],
2074
+ "duration": 13947,
2075
+ "failureDetails": [],
2076
+ "failureMessages": [],
2077
+ "fullName": "Solve the alphametics puzzle puzzle with ten letters and 199 addends",
2078
+ "invocations": 1,
2079
+ "location": null,
2080
+ "numPassingAsserts": 1,
2081
+ "retryReasons": [],
2082
+ "status": "passed",
2083
+ "title": "puzzle with ten letters and 199 addends"
2084
+ }
2085
+ ],
2086
+ "endTime": 1754273071200,
2087
+ "message": "",
2088
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/alphametics/alphametics.spec.js",
2089
+ "startTime": 1754273050369,
2090
+ "status": "passed",
2091
+ "summary": ""
2092
+ }
2093
+ ],
2094
+ "wasInterrupted": false
2095
+ }
2096
+ },
2097
+ "timeElapsed": 84.32,
2098
+ "cost": 0.307589890816,
2099
+ "startTime": "2025-08-04T02:03:06.893Z",
2100
+ "endTime": "2025-08-04T02:04:31.213Z",
2101
+ "finalOutput": "All tests for the alphametics puzzle solution are now passing, including the more complex and previously skipped cases. The implementation uses backtracking to try all possible assignments of digits to letters, making sure there are no leading zeroes and that every letter maps to a unique digit. If a correct assignment is found matching the sum in the equation, it is returned; otherwise, null is returned. The test suite has been unskipped and passes in full."
2102
+ },
2103
+ {
2104
+ "exerciseName": "anagram",
2105
+ "status": "success",
2106
+ "turns": 29,
2107
+ "testResult": {
2108
+ "passed": 18,
2109
+ "failed": 0,
2110
+ "total": 18,
2111
+ "skipped": 0,
2112
+ "success": true,
2113
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":18,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"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\":1754273120400,\"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\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect anagram subsets\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"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\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects three anagrams\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"detects three anagrams\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects multiple anagrams with different case\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"detects multiple anagrams with different case\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect non-anagrams with identical checksum\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"does not detect non-anagrams with identical checksum\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams case-insensitively\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"detects anagrams case-insensitively\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams using case-insensitive subject\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"detects anagrams using case-insensitive subject\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram detects anagrams using case-insensitive possible matches\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"detects anagrams using case-insensitive possible matches\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram does not detect an anagram if the original word is repeated\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"does not detect an anagram if the original word is repeated\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram anagrams must use all letters exactly once\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"anagrams must use all letters exactly once\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"words are not anagrams of themselves\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves even if letter case is partially different\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"words are not anagrams of themselves even if letter case is partially different\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words are not anagrams of themselves even if letter case is completely different\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"words are not anagrams of themselves even if letter case is completely different\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram words other than themselves can be anagrams\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"words other than themselves can be anagrams\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram handles case of greek letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"handles case of greek letters\"},{\"ancestorTitles\":[\"Anagram\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Anagram different characters may have the same bytes\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"different characters may have the same bytes\"}],\"endTime\":1754273120505,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/anagram/anagram.spec.js\",\"startTime\":1754273120411,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
2114
+ "details": {
2115
+ "numFailedTestSuites": 0,
2116
+ "numFailedTests": 0,
2117
+ "numPassedTestSuites": 1,
2118
+ "numPassedTests": 18,
2119
+ "numPendingTestSuites": 0,
2120
+ "numPendingTests": 0,
2121
+ "numRuntimeErrorTestSuites": 0,
2122
+ "numTodoTests": 0,
2123
+ "numTotalTestSuites": 1,
2124
+ "numTotalTests": 18,
2125
+ "openHandles": [],
2126
+ "snapshot": {
2127
+ "added": 0,
2128
+ "didUpdate": false,
2129
+ "failure": false,
2130
+ "filesAdded": 0,
2131
+ "filesRemoved": 0,
2132
+ "filesRemovedList": [],
2133
+ "filesUnmatched": 0,
2134
+ "filesUpdated": 0,
2135
+ "matched": 0,
2136
+ "total": 0,
2137
+ "unchecked": 0,
2138
+ "uncheckedKeysByFile": [],
2139
+ "unmatched": 0,
2140
+ "updated": 0
2141
+ },
2142
+ "startTime": 1754273120400,
2143
+ "success": true,
2144
+ "testResults": [
2145
+ {
2146
+ "assertionResults": [
2147
+ {
2148
+ "ancestorTitles": [
2149
+ "Anagram"
2150
+ ],
2151
+ "duration": 1,
2152
+ "failureDetails": [],
2153
+ "failureMessages": [],
2154
+ "fullName": "Anagram no matches",
2155
+ "invocations": 1,
2156
+ "location": null,
2157
+ "numPassingAsserts": 1,
2158
+ "retryReasons": [],
2159
+ "status": "passed",
2160
+ "title": "no matches"
2161
+ },
2162
+ {
2163
+ "ancestorTitles": [
2164
+ "Anagram"
2165
+ ],
2166
+ "duration": 0,
2167
+ "failureDetails": [],
2168
+ "failureMessages": [],
2169
+ "fullName": "Anagram detects two anagrams",
2170
+ "invocations": 1,
2171
+ "location": null,
2172
+ "numPassingAsserts": 1,
2173
+ "retryReasons": [],
2174
+ "status": "passed",
2175
+ "title": "detects two anagrams"
2176
+ },
2177
+ {
2178
+ "ancestorTitles": [
2179
+ "Anagram"
2180
+ ],
2181
+ "duration": 1,
2182
+ "failureDetails": [],
2183
+ "failureMessages": [],
2184
+ "fullName": "Anagram does not detect anagram subsets",
2185
+ "invocations": 1,
2186
+ "location": null,
2187
+ "numPassingAsserts": 1,
2188
+ "retryReasons": [],
2189
+ "status": "passed",
2190
+ "title": "does not detect anagram subsets"
2191
+ },
2192
+ {
2193
+ "ancestorTitles": [
2194
+ "Anagram"
2195
+ ],
2196
+ "duration": 0,
2197
+ "failureDetails": [],
2198
+ "failureMessages": [],
2199
+ "fullName": "Anagram detects anagram",
2200
+ "invocations": 1,
2201
+ "location": null,
2202
+ "numPassingAsserts": 1,
2203
+ "retryReasons": [],
2204
+ "status": "passed",
2205
+ "title": "detects anagram"
2206
+ },
2207
+ {
2208
+ "ancestorTitles": [
2209
+ "Anagram"
2210
+ ],
2211
+ "duration": 0,
2212
+ "failureDetails": [],
2213
+ "failureMessages": [],
2214
+ "fullName": "Anagram detects three anagrams",
2215
+ "invocations": 1,
2216
+ "location": null,
2217
+ "numPassingAsserts": 1,
2218
+ "retryReasons": [],
2219
+ "status": "passed",
2220
+ "title": "detects three anagrams"
2221
+ },
2222
+ {
2223
+ "ancestorTitles": [
2224
+ "Anagram"
2225
+ ],
2226
+ "duration": 0,
2227
+ "failureDetails": [],
2228
+ "failureMessages": [],
2229
+ "fullName": "Anagram detects multiple anagrams with different case",
2230
+ "invocations": 1,
2231
+ "location": null,
2232
+ "numPassingAsserts": 1,
2233
+ "retryReasons": [],
2234
+ "status": "passed",
2235
+ "title": "detects multiple anagrams with different case"
2236
+ },
2237
+ {
2238
+ "ancestorTitles": [
2239
+ "Anagram"
2240
+ ],
2241
+ "duration": 0,
2242
+ "failureDetails": [],
2243
+ "failureMessages": [],
2244
+ "fullName": "Anagram does not detect non-anagrams with identical checksum",
2245
+ "invocations": 1,
2246
+ "location": null,
2247
+ "numPassingAsserts": 1,
2248
+ "retryReasons": [],
2249
+ "status": "passed",
2250
+ "title": "does not detect non-anagrams with identical checksum"
2251
+ },
2252
+ {
2253
+ "ancestorTitles": [
2254
+ "Anagram"
2255
+ ],
2256
+ "duration": 0,
2257
+ "failureDetails": [],
2258
+ "failureMessages": [],
2259
+ "fullName": "Anagram detects anagrams case-insensitively",
2260
+ "invocations": 1,
2261
+ "location": null,
2262
+ "numPassingAsserts": 1,
2263
+ "retryReasons": [],
2264
+ "status": "passed",
2265
+ "title": "detects anagrams case-insensitively"
2266
+ },
2267
+ {
2268
+ "ancestorTitles": [
2269
+ "Anagram"
2270
+ ],
2271
+ "duration": 1,
2272
+ "failureDetails": [],
2273
+ "failureMessages": [],
2274
+ "fullName": "Anagram detects anagrams using case-insensitive subject",
2275
+ "invocations": 1,
2276
+ "location": null,
2277
+ "numPassingAsserts": 1,
2278
+ "retryReasons": [],
2279
+ "status": "passed",
2280
+ "title": "detects anagrams using case-insensitive subject"
2281
+ },
2282
+ {
2283
+ "ancestorTitles": [
2284
+ "Anagram"
2285
+ ],
2286
+ "duration": 0,
2287
+ "failureDetails": [],
2288
+ "failureMessages": [],
2289
+ "fullName": "Anagram detects anagrams using case-insensitive possible matches",
2290
+ "invocations": 1,
2291
+ "location": null,
2292
+ "numPassingAsserts": 1,
2293
+ "retryReasons": [],
2294
+ "status": "passed",
2295
+ "title": "detects anagrams using case-insensitive possible matches"
2296
+ },
2297
+ {
2298
+ "ancestorTitles": [
2299
+ "Anagram"
2300
+ ],
2301
+ "duration": 0,
2302
+ "failureDetails": [],
2303
+ "failureMessages": [],
2304
+ "fullName": "Anagram does not detect an anagram if the original word is repeated",
2305
+ "invocations": 1,
2306
+ "location": null,
2307
+ "numPassingAsserts": 1,
2308
+ "retryReasons": [],
2309
+ "status": "passed",
2310
+ "title": "does not detect an anagram if the original word is repeated"
2311
+ },
2312
+ {
2313
+ "ancestorTitles": [
2314
+ "Anagram"
2315
+ ],
2316
+ "duration": 0,
2317
+ "failureDetails": [],
2318
+ "failureMessages": [],
2319
+ "fullName": "Anagram anagrams must use all letters exactly once",
2320
+ "invocations": 1,
2321
+ "location": null,
2322
+ "numPassingAsserts": 1,
2323
+ "retryReasons": [],
2324
+ "status": "passed",
2325
+ "title": "anagrams must use all letters exactly once"
2326
+ },
2327
+ {
2328
+ "ancestorTitles": [
2329
+ "Anagram"
2330
+ ],
2331
+ "duration": 0,
2332
+ "failureDetails": [],
2333
+ "failureMessages": [],
2334
+ "fullName": "Anagram words are not anagrams of themselves",
2335
+ "invocations": 1,
2336
+ "location": null,
2337
+ "numPassingAsserts": 1,
2338
+ "retryReasons": [],
2339
+ "status": "passed",
2340
+ "title": "words are not anagrams of themselves"
2341
+ },
2342
+ {
2343
+ "ancestorTitles": [
2344
+ "Anagram"
2345
+ ],
2346
+ "duration": 1,
2347
+ "failureDetails": [],
2348
+ "failureMessages": [],
2349
+ "fullName": "Anagram words are not anagrams of themselves even if letter case is partially different",
2350
+ "invocations": 1,
2351
+ "location": null,
2352
+ "numPassingAsserts": 1,
2353
+ "retryReasons": [],
2354
+ "status": "passed",
2355
+ "title": "words are not anagrams of themselves even if letter case is partially different"
2356
+ },
2357
+ {
2358
+ "ancestorTitles": [
2359
+ "Anagram"
2360
+ ],
2361
+ "duration": 0,
2362
+ "failureDetails": [],
2363
+ "failureMessages": [],
2364
+ "fullName": "Anagram words are not anagrams of themselves even if letter case is completely different",
2365
+ "invocations": 1,
2366
+ "location": null,
2367
+ "numPassingAsserts": 1,
2368
+ "retryReasons": [],
2369
+ "status": "passed",
2370
+ "title": "words are not anagrams of themselves even if letter case is completely different"
2371
+ },
2372
+ {
2373
+ "ancestorTitles": [
2374
+ "Anagram"
2375
+ ],
2376
+ "duration": 0,
2377
+ "failureDetails": [],
2378
+ "failureMessages": [],
2379
+ "fullName": "Anagram words other than themselves can be anagrams",
2380
+ "invocations": 1,
2381
+ "location": null,
2382
+ "numPassingAsserts": 1,
2383
+ "retryReasons": [],
2384
+ "status": "passed",
2385
+ "title": "words other than themselves can be anagrams"
2386
+ },
2387
+ {
2388
+ "ancestorTitles": [
2389
+ "Anagram"
2390
+ ],
2391
+ "duration": 0,
2392
+ "failureDetails": [],
2393
+ "failureMessages": [],
2394
+ "fullName": "Anagram handles case of greek letters",
2395
+ "invocations": 1,
2396
+ "location": null,
2397
+ "numPassingAsserts": 1,
2398
+ "retryReasons": [],
2399
+ "status": "passed",
2400
+ "title": "handles case of greek letters"
2401
+ },
2402
+ {
2403
+ "ancestorTitles": [
2404
+ "Anagram"
2405
+ ],
2406
+ "duration": 0,
2407
+ "failureDetails": [],
2408
+ "failureMessages": [],
2409
+ "fullName": "Anagram different characters may have the same bytes",
2410
+ "invocations": 1,
2411
+ "location": null,
2412
+ "numPassingAsserts": 1,
2413
+ "retryReasons": [],
2414
+ "status": "passed",
2415
+ "title": "different characters may have the same bytes"
2416
+ }
2417
+ ],
2418
+ "endTime": 1754273120505,
2419
+ "message": "",
2420
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/anagram/anagram.spec.js",
2421
+ "startTime": 1754273120411,
2422
+ "status": "passed",
2423
+ "summary": ""
2424
+ }
2425
+ ],
2426
+ "wasInterrupted": false
2427
+ }
2428
+ },
2429
+ "timeElapsed": 49.288,
2430
+ "cost": 0.8055756976640001,
2431
+ "startTime": "2025-08-04T02:04:31.226Z",
2432
+ "endTime": "2025-08-04T02:05:20.514Z",
2433
+ "finalOutput": "The coding exercise is now fully solved:\n\n- All requirements were met for the anagram function: case-insensitive matching, full letter use, and no self-matching.\n- All tests pass after implementing the function and unskipping the skipped ones.\n- Code linted and verified.\n\nYou can review the code in `anagram.js` and the now-fully passing suite in `anagram.spec.js`. The implementation is now robust and complete."
2434
+ },
2435
+ {
2436
+ "exerciseName": "armstrong-numbers",
2437
+ "status": "success",
2438
+ "turns": 11,
2439
+ "testResult": {
2440
+ "passed": 11,
2441
+ "failed": 0,
2442
+ "total": 11,
2443
+ "skipped": 0,
2444
+ "success": true,
2445
+ "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\":1754273152591,\"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\":0,\"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\":1,\"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\":1754273152667,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.spec.js\",\"startTime\":1754273152600,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
2446
+ "details": {
2447
+ "numFailedTestSuites": 0,
2448
+ "numFailedTests": 0,
2449
+ "numPassedTestSuites": 1,
2450
+ "numPassedTests": 11,
2451
+ "numPendingTestSuites": 0,
2452
+ "numPendingTests": 0,
2453
+ "numRuntimeErrorTestSuites": 0,
2454
+ "numTodoTests": 0,
2455
+ "numTotalTestSuites": 1,
2456
+ "numTotalTests": 11,
2457
+ "openHandles": [],
2458
+ "snapshot": {
2459
+ "added": 0,
2460
+ "didUpdate": false,
2461
+ "failure": false,
2462
+ "filesAdded": 0,
2463
+ "filesRemoved": 0,
2464
+ "filesRemovedList": [],
2465
+ "filesUnmatched": 0,
2466
+ "filesUpdated": 0,
2467
+ "matched": 0,
2468
+ "total": 0,
2469
+ "unchecked": 0,
2470
+ "uncheckedKeysByFile": [],
2471
+ "unmatched": 0,
2472
+ "updated": 0
2473
+ },
2474
+ "startTime": 1754273152591,
2475
+ "success": true,
2476
+ "testResults": [
2477
+ {
2478
+ "assertionResults": [
2479
+ {
2480
+ "ancestorTitles": [
2481
+ "Armstrong Numbers"
2482
+ ],
2483
+ "duration": 1,
2484
+ "failureDetails": [],
2485
+ "failureMessages": [],
2486
+ "fullName": "Armstrong Numbers Zero is an Armstrong number",
2487
+ "invocations": 1,
2488
+ "location": null,
2489
+ "numPassingAsserts": 1,
2490
+ "retryReasons": [],
2491
+ "status": "passed",
2492
+ "title": "Zero is an Armstrong number"
2493
+ },
2494
+ {
2495
+ "ancestorTitles": [
2496
+ "Armstrong Numbers"
2497
+ ],
2498
+ "duration": 0,
2499
+ "failureDetails": [],
2500
+ "failureMessages": [],
2501
+ "fullName": "Armstrong Numbers Single-digit numbers are Armstrong numbers",
2502
+ "invocations": 1,
2503
+ "location": null,
2504
+ "numPassingAsserts": 1,
2505
+ "retryReasons": [],
2506
+ "status": "passed",
2507
+ "title": "Single-digit numbers are Armstrong numbers"
2508
+ },
2509
+ {
2510
+ "ancestorTitles": [
2511
+ "Armstrong Numbers"
2512
+ ],
2513
+ "duration": 0,
2514
+ "failureDetails": [],
2515
+ "failureMessages": [],
2516
+ "fullName": "Armstrong Numbers There are no two-digit Armstrong numbers",
2517
+ "invocations": 1,
2518
+ "location": null,
2519
+ "numPassingAsserts": 1,
2520
+ "retryReasons": [],
2521
+ "status": "passed",
2522
+ "title": "There are no two-digit Armstrong numbers"
2523
+ },
2524
+ {
2525
+ "ancestorTitles": [
2526
+ "Armstrong Numbers"
2527
+ ],
2528
+ "duration": 0,
2529
+ "failureDetails": [],
2530
+ "failureMessages": [],
2531
+ "fullName": "Armstrong Numbers Three-digit number that is an Armstrong number",
2532
+ "invocations": 1,
2533
+ "location": null,
2534
+ "numPassingAsserts": 1,
2535
+ "retryReasons": [],
2536
+ "status": "passed",
2537
+ "title": "Three-digit number that is an Armstrong number"
2538
+ },
2539
+ {
2540
+ "ancestorTitles": [
2541
+ "Armstrong Numbers"
2542
+ ],
2543
+ "duration": 1,
2544
+ "failureDetails": [],
2545
+ "failureMessages": [],
2546
+ "fullName": "Armstrong Numbers Three-digit number that is not an Armstrong number",
2547
+ "invocations": 1,
2548
+ "location": null,
2549
+ "numPassingAsserts": 1,
2550
+ "retryReasons": [],
2551
+ "status": "passed",
2552
+ "title": "Three-digit number that is not an Armstrong number"
2553
+ },
2554
+ {
2555
+ "ancestorTitles": [
2556
+ "Armstrong Numbers"
2557
+ ],
2558
+ "duration": 0,
2559
+ "failureDetails": [],
2560
+ "failureMessages": [],
2561
+ "fullName": "Armstrong Numbers Four-digit number that is an Armstrong number",
2562
+ "invocations": 1,
2563
+ "location": null,
2564
+ "numPassingAsserts": 1,
2565
+ "retryReasons": [],
2566
+ "status": "passed",
2567
+ "title": "Four-digit number that is an Armstrong number"
2568
+ },
2569
+ {
2570
+ "ancestorTitles": [
2571
+ "Armstrong Numbers"
2572
+ ],
2573
+ "duration": 0,
2574
+ "failureDetails": [],
2575
+ "failureMessages": [],
2576
+ "fullName": "Armstrong Numbers Four-digit number that is not an Armstrong number",
2577
+ "invocations": 1,
2578
+ "location": null,
2579
+ "numPassingAsserts": 1,
2580
+ "retryReasons": [],
2581
+ "status": "passed",
2582
+ "title": "Four-digit number that is not an Armstrong number"
2583
+ },
2584
+ {
2585
+ "ancestorTitles": [
2586
+ "Armstrong Numbers"
2587
+ ],
2588
+ "duration": 0,
2589
+ "failureDetails": [],
2590
+ "failureMessages": [],
2591
+ "fullName": "Armstrong Numbers Seven-digit number that is an Armstrong number",
2592
+ "invocations": 1,
2593
+ "location": null,
2594
+ "numPassingAsserts": 1,
2595
+ "retryReasons": [],
2596
+ "status": "passed",
2597
+ "title": "Seven-digit number that is an Armstrong number"
2598
+ },
2599
+ {
2600
+ "ancestorTitles": [
2601
+ "Armstrong Numbers"
2602
+ ],
2603
+ "duration": 0,
2604
+ "failureDetails": [],
2605
+ "failureMessages": [],
2606
+ "fullName": "Armstrong Numbers Seven-digit number that is not an Armstrong number",
2607
+ "invocations": 1,
2608
+ "location": null,
2609
+ "numPassingAsserts": 1,
2610
+ "retryReasons": [],
2611
+ "status": "passed",
2612
+ "title": "Seven-digit number that is not an Armstrong number"
2613
+ },
2614
+ {
2615
+ "ancestorTitles": [
2616
+ "Armstrong Numbers"
2617
+ ],
2618
+ "duration": 0,
2619
+ "failureDetails": [],
2620
+ "failureMessages": [],
2621
+ "fullName": "Armstrong Numbers Armstrong number containing seven zeroes",
2622
+ "invocations": 1,
2623
+ "location": null,
2624
+ "numPassingAsserts": 1,
2625
+ "retryReasons": [],
2626
+ "status": "passed",
2627
+ "title": "Armstrong number containing seven zeroes"
2628
+ },
2629
+ {
2630
+ "ancestorTitles": [
2631
+ "Armstrong Numbers"
2632
+ ],
2633
+ "duration": 1,
2634
+ "failureDetails": [],
2635
+ "failureMessages": [],
2636
+ "fullName": "Armstrong Numbers The largest and last Armstrong number",
2637
+ "invocations": 1,
2638
+ "location": null,
2639
+ "numPassingAsserts": 1,
2640
+ "retryReasons": [],
2641
+ "status": "passed",
2642
+ "title": "The largest and last Armstrong number"
2643
+ }
2644
+ ],
2645
+ "endTime": 1754273152667,
2646
+ "message": "",
2647
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/armstrong-numbers/armstrong-numbers.spec.js",
2648
+ "startTime": 1754273152600,
2649
+ "status": "passed",
2650
+ "summary": ""
2651
+ }
2652
+ ],
2653
+ "wasInterrupted": false
2654
+ }
2655
+ },
2656
+ "timeElapsed": 32.174,
2657
+ "cost": 0.22152991897599997,
2658
+ "startTime": "2025-08-04T02:05:20.526Z",
2659
+ "endTime": "2025-08-04T02:05:52.700Z",
2660
+ "finalOutput": "All tests have passed successfully for the Armstrong Numbers exercise.\n\nSummary of actions:\n1. Implemented the `isArmstrongNumber` function to handle both normal numbers and BigInts, checking if a number is an Armstrong number by summing its digits raised to the number of digits.\n2. Installed the necessary Babel preset to allow tests to run.\n3. Unskipped all tests in the spec file.\n4. Re-ran all tests to confirm everything passes.\n\nYour solution is now complete and fully tested!"
2661
+ },
2662
+ {
2663
+ "exerciseName": "atbash-cipher",
2664
+ "status": "success",
2665
+ "turns": 12,
2666
+ "testResult": {
2667
+ "passed": 14,
2668
+ "failed": 0,
2669
+ "total": 14,
2670
+ "skipped": 0,
2671
+ "success": true,
2672
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":14,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"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\":1754273188352,\"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\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode no\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode no\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode OMG\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode OMG\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode spaces\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode mindblowingly\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode mindblowingly\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode numbers\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode deep thought\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode deep thought\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"encode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher encode encode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"encode all the letters\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode exercism\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode exercism\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode a sentence\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode a sentence\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode numbers\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode numbers\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode all the letters\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode all the letters\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode with too many spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with too many spaces\"},{\"ancestorTitles\":[\"Atbash Cipher\",\"decode\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Atbash Cipher decode decode with no spaces\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"decode with no spaces\"}],\"endTime\":1754273188427,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/atbash-cipher/atbash-cipher.spec.js\",\"startTime\":1754273188362,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
2673
+ "details": {
2674
+ "numFailedTestSuites": 0,
2675
+ "numFailedTests": 0,
2676
+ "numPassedTestSuites": 1,
2677
+ "numPassedTests": 14,
2678
+ "numPendingTestSuites": 0,
2679
+ "numPendingTests": 0,
2680
+ "numRuntimeErrorTestSuites": 0,
2681
+ "numTodoTests": 0,
2682
+ "numTotalTestSuites": 1,
2683
+ "numTotalTests": 14,
2684
+ "openHandles": [],
2685
+ "snapshot": {
2686
+ "added": 0,
2687
+ "didUpdate": false,
2688
+ "failure": false,
2689
+ "filesAdded": 0,
2690
+ "filesRemoved": 0,
2691
+ "filesRemovedList": [],
2692
+ "filesUnmatched": 0,
2693
+ "filesUpdated": 0,
2694
+ "matched": 0,
2695
+ "total": 0,
2696
+ "unchecked": 0,
2697
+ "uncheckedKeysByFile": [],
2698
+ "unmatched": 0,
2699
+ "updated": 0
2700
+ },
2701
+ "startTime": 1754273188352,
2702
+ "success": true,
2703
+ "testResults": [
2704
+ {
2705
+ "assertionResults": [
2706
+ {
2707
+ "ancestorTitles": [
2708
+ "Atbash Cipher",
2709
+ "encode"
2710
+ ],
2711
+ "duration": 1,
2712
+ "failureDetails": [],
2713
+ "failureMessages": [],
2714
+ "fullName": "Atbash Cipher encode encode yes",
2715
+ "invocations": 1,
2716
+ "location": null,
2717
+ "numPassingAsserts": 1,
2718
+ "retryReasons": [],
2719
+ "status": "passed",
2720
+ "title": "encode yes"
2721
+ },
2722
+ {
2723
+ "ancestorTitles": [
2724
+ "Atbash Cipher",
2725
+ "encode"
2726
+ ],
2727
+ "duration": 0,
2728
+ "failureDetails": [],
2729
+ "failureMessages": [],
2730
+ "fullName": "Atbash Cipher encode encode no",
2731
+ "invocations": 1,
2732
+ "location": null,
2733
+ "numPassingAsserts": 1,
2734
+ "retryReasons": [],
2735
+ "status": "passed",
2736
+ "title": "encode no"
2737
+ },
2738
+ {
2739
+ "ancestorTitles": [
2740
+ "Atbash Cipher",
2741
+ "encode"
2742
+ ],
2743
+ "duration": 0,
2744
+ "failureDetails": [],
2745
+ "failureMessages": [],
2746
+ "fullName": "Atbash Cipher encode encode OMG",
2747
+ "invocations": 1,
2748
+ "location": null,
2749
+ "numPassingAsserts": 1,
2750
+ "retryReasons": [],
2751
+ "status": "passed",
2752
+ "title": "encode OMG"
2753
+ },
2754
+ {
2755
+ "ancestorTitles": [
2756
+ "Atbash Cipher",
2757
+ "encode"
2758
+ ],
2759
+ "duration": 0,
2760
+ "failureDetails": [],
2761
+ "failureMessages": [],
2762
+ "fullName": "Atbash Cipher encode encode spaces",
2763
+ "invocations": 1,
2764
+ "location": null,
2765
+ "numPassingAsserts": 1,
2766
+ "retryReasons": [],
2767
+ "status": "passed",
2768
+ "title": "encode spaces"
2769
+ },
2770
+ {
2771
+ "ancestorTitles": [
2772
+ "Atbash Cipher",
2773
+ "encode"
2774
+ ],
2775
+ "duration": 1,
2776
+ "failureDetails": [],
2777
+ "failureMessages": [],
2778
+ "fullName": "Atbash Cipher encode encode mindblowingly",
2779
+ "invocations": 1,
2780
+ "location": null,
2781
+ "numPassingAsserts": 1,
2782
+ "retryReasons": [],
2783
+ "status": "passed",
2784
+ "title": "encode mindblowingly"
2785
+ },
2786
+ {
2787
+ "ancestorTitles": [
2788
+ "Atbash Cipher",
2789
+ "encode"
2790
+ ],
2791
+ "duration": 0,
2792
+ "failureDetails": [],
2793
+ "failureMessages": [],
2794
+ "fullName": "Atbash Cipher encode encode numbers",
2795
+ "invocations": 1,
2796
+ "location": null,
2797
+ "numPassingAsserts": 1,
2798
+ "retryReasons": [],
2799
+ "status": "passed",
2800
+ "title": "encode numbers"
2801
+ },
2802
+ {
2803
+ "ancestorTitles": [
2804
+ "Atbash Cipher",
2805
+ "encode"
2806
+ ],
2807
+ "duration": 0,
2808
+ "failureDetails": [],
2809
+ "failureMessages": [],
2810
+ "fullName": "Atbash Cipher encode encode deep thought",
2811
+ "invocations": 1,
2812
+ "location": null,
2813
+ "numPassingAsserts": 1,
2814
+ "retryReasons": [],
2815
+ "status": "passed",
2816
+ "title": "encode deep thought"
2817
+ },
2818
+ {
2819
+ "ancestorTitles": [
2820
+ "Atbash Cipher",
2821
+ "encode"
2822
+ ],
2823
+ "duration": 0,
2824
+ "failureDetails": [],
2825
+ "failureMessages": [],
2826
+ "fullName": "Atbash Cipher encode encode all the letters",
2827
+ "invocations": 1,
2828
+ "location": null,
2829
+ "numPassingAsserts": 1,
2830
+ "retryReasons": [],
2831
+ "status": "passed",
2832
+ "title": "encode all the letters"
2833
+ },
2834
+ {
2835
+ "ancestorTitles": [
2836
+ "Atbash Cipher",
2837
+ "decode"
2838
+ ],
2839
+ "duration": 0,
2840
+ "failureDetails": [],
2841
+ "failureMessages": [],
2842
+ "fullName": "Atbash Cipher decode decode exercism",
2843
+ "invocations": 1,
2844
+ "location": null,
2845
+ "numPassingAsserts": 1,
2846
+ "retryReasons": [],
2847
+ "status": "passed",
2848
+ "title": "decode exercism"
2849
+ },
2850
+ {
2851
+ "ancestorTitles": [
2852
+ "Atbash Cipher",
2853
+ "decode"
2854
+ ],
2855
+ "duration": 0,
2856
+ "failureDetails": [],
2857
+ "failureMessages": [],
2858
+ "fullName": "Atbash Cipher decode decode a sentence",
2859
+ "invocations": 1,
2860
+ "location": null,
2861
+ "numPassingAsserts": 1,
2862
+ "retryReasons": [],
2863
+ "status": "passed",
2864
+ "title": "decode a sentence"
2865
+ },
2866
+ {
2867
+ "ancestorTitles": [
2868
+ "Atbash Cipher",
2869
+ "decode"
2870
+ ],
2871
+ "duration": 0,
2872
+ "failureDetails": [],
2873
+ "failureMessages": [],
2874
+ "fullName": "Atbash Cipher decode decode numbers",
2875
+ "invocations": 1,
2876
+ "location": null,
2877
+ "numPassingAsserts": 1,
2878
+ "retryReasons": [],
2879
+ "status": "passed",
2880
+ "title": "decode numbers"
2881
+ },
2882
+ {
2883
+ "ancestorTitles": [
2884
+ "Atbash Cipher",
2885
+ "decode"
2886
+ ],
2887
+ "duration": 0,
2888
+ "failureDetails": [],
2889
+ "failureMessages": [],
2890
+ "fullName": "Atbash Cipher decode decode all the letters",
2891
+ "invocations": 1,
2892
+ "location": null,
2893
+ "numPassingAsserts": 1,
2894
+ "retryReasons": [],
2895
+ "status": "passed",
2896
+ "title": "decode all the letters"
2897
+ },
2898
+ {
2899
+ "ancestorTitles": [
2900
+ "Atbash Cipher",
2901
+ "decode"
2902
+ ],
2903
+ "duration": 0,
2904
+ "failureDetails": [],
2905
+ "failureMessages": [],
2906
+ "fullName": "Atbash Cipher decode decode with too many spaces",
2907
+ "invocations": 1,
2908
+ "location": null,
2909
+ "numPassingAsserts": 1,
2910
+ "retryReasons": [],
2911
+ "status": "passed",
2912
+ "title": "decode with too many spaces"
2913
+ },
2914
+ {
2915
+ "ancestorTitles": [
2916
+ "Atbash Cipher",
2917
+ "decode"
2918
+ ],
2919
+ "duration": 0,
2920
+ "failureDetails": [],
2921
+ "failureMessages": [],
2922
+ "fullName": "Atbash Cipher decode decode with no spaces",
2923
+ "invocations": 1,
2924
+ "location": null,
2925
+ "numPassingAsserts": 1,
2926
+ "retryReasons": [],
2927
+ "status": "passed",
2928
+ "title": "decode with no spaces"
2929
+ }
2930
+ ],
2931
+ "endTime": 1754273188427,
2932
+ "message": "",
2933
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/atbash-cipher/atbash-cipher.spec.js",
2934
+ "startTime": 1754273188362,
2935
+ "status": "passed",
2936
+ "summary": ""
2937
+ }
2938
+ ],
2939
+ "wasInterrupted": false
2940
+ }
2941
+ },
2942
+ "timeElapsed": 35.744,
2943
+ "cost": 0.2641599008,
2944
+ "startTime": "2025-08-04T02:05:52.716Z",
2945
+ "endTime": "2025-08-04T02:06:28.460Z",
2946
+ "finalOutput": "The Atbash Cipher solution has been implemented in atbash-cipher.js for both encoding and decoding. All tests in atbash-cipher.spec.js now pass, and all previously skipped tests have been unskipped. Linting has been checked for both implementation and test files.\n\nYou can now consider this exercise complete and correct. If you have any further requests or need enhancements, let me know!"
2947
+ },
2948
+ {
2949
+ "exerciseName": "bank-account",
2950
+ "status": "success",
2951
+ "turns": 10,
2952
+ "testResult": {
2953
+ "passed": 15,
2954
+ "failed": 0,
2955
+ "total": 15,
2956
+ "skipped": 0,
2957
+ "success": true,
2958
+ "output": "{\"numFailedTestSuites\":0,\"numFailedTests\":0,\"numPassedTestSuites\":1,\"numPassedTests\":15,\"numPendingTestSuites\":0,\"numPendingTests\":0,\"numRuntimeErrorTestSuites\":0,\"numTodoTests\":0,\"numTotalTestSuites\":1,\"numTotalTests\":15,\"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\":1754273212896,\"success\":true,\"testResults\":[{\"assertionResults\":[{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account newly opened account has zero balance\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"newly opened account has zero balance\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account can deposit money\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"can deposit money\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account can deposit money sequentially\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"can deposit money sequentially\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account can withdraw money\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"can withdraw money\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account can withdraw money sequentially\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"can withdraw money sequentially\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":4,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account checking balance of closed account throws error\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"checking balance of closed account throws error\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account deposit into closed account throws error\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"deposit into closed account throws error\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account withdraw from closed account throws error\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"withdraw from closed account throws error\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account close already closed account throws error\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"close already closed account throws error\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account open already opened account throws error\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"open already opened account throws error\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account reopened account does not retain balance\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"reopened account does not retain balance\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account cannot withdraw more than deposited\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"cannot withdraw more than deposited\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account cannot withdraw negative amount\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"cannot withdraw negative amount\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":1,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account cannot deposit negative amount\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"cannot deposit negative amount\"},{\"ancestorTitles\":[\"Bank Account\"],\"duration\":0,\"failureDetails\":[],\"failureMessages\":[],\"fullName\":\"Bank Account changing balance directly throws error\",\"invocations\":1,\"location\":null,\"numPassingAsserts\":1,\"retryReasons\":[],\"status\":\"passed\",\"title\":\"changing balance directly throws error\"}],\"endTime\":1754273212979,\"message\":\"\",\"name\":\"/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/bank-account.spec.js\",\"startTime\":1754273212907,\"status\":\"passed\",\"summary\":\"\"}],\"wasInterrupted\":false}\n",
2959
+ "details": {
2960
+ "numFailedTestSuites": 0,
2961
+ "numFailedTests": 0,
2962
+ "numPassedTestSuites": 1,
2963
+ "numPassedTests": 15,
2964
+ "numPendingTestSuites": 0,
2965
+ "numPendingTests": 0,
2966
+ "numRuntimeErrorTestSuites": 0,
2967
+ "numTodoTests": 0,
2968
+ "numTotalTestSuites": 1,
2969
+ "numTotalTests": 15,
2970
+ "openHandles": [],
2971
+ "snapshot": {
2972
+ "added": 0,
2973
+ "didUpdate": false,
2974
+ "failure": false,
2975
+ "filesAdded": 0,
2976
+ "filesRemoved": 0,
2977
+ "filesRemovedList": [],
2978
+ "filesUnmatched": 0,
2979
+ "filesUpdated": 0,
2980
+ "matched": 0,
2981
+ "total": 0,
2982
+ "unchecked": 0,
2983
+ "uncheckedKeysByFile": [],
2984
+ "unmatched": 0,
2985
+ "updated": 0
2986
+ },
2987
+ "startTime": 1754273212896,
2988
+ "success": true,
2989
+ "testResults": [
2990
+ {
2991
+ "assertionResults": [
2992
+ {
2993
+ "ancestorTitles": [
2994
+ "Bank Account"
2995
+ ],
2996
+ "duration": 0,
2997
+ "failureDetails": [],
2998
+ "failureMessages": [],
2999
+ "fullName": "Bank Account newly opened account has zero balance",
3000
+ "invocations": 1,
3001
+ "location": null,
3002
+ "numPassingAsserts": 1,
3003
+ "retryReasons": [],
3004
+ "status": "passed",
3005
+ "title": "newly opened account has zero balance"
3006
+ },
3007
+ {
3008
+ "ancestorTitles": [
3009
+ "Bank Account"
3010
+ ],
3011
+ "duration": 0,
3012
+ "failureDetails": [],
3013
+ "failureMessages": [],
3014
+ "fullName": "Bank Account can deposit money",
3015
+ "invocations": 1,
3016
+ "location": null,
3017
+ "numPassingAsserts": 1,
3018
+ "retryReasons": [],
3019
+ "status": "passed",
3020
+ "title": "can deposit money"
3021
+ },
3022
+ {
3023
+ "ancestorTitles": [
3024
+ "Bank Account"
3025
+ ],
3026
+ "duration": 0,
3027
+ "failureDetails": [],
3028
+ "failureMessages": [],
3029
+ "fullName": "Bank Account can deposit money sequentially",
3030
+ "invocations": 1,
3031
+ "location": null,
3032
+ "numPassingAsserts": 1,
3033
+ "retryReasons": [],
3034
+ "status": "passed",
3035
+ "title": "can deposit money sequentially"
3036
+ },
3037
+ {
3038
+ "ancestorTitles": [
3039
+ "Bank Account"
3040
+ ],
3041
+ "duration": 0,
3042
+ "failureDetails": [],
3043
+ "failureMessages": [],
3044
+ "fullName": "Bank Account can withdraw money",
3045
+ "invocations": 1,
3046
+ "location": null,
3047
+ "numPassingAsserts": 1,
3048
+ "retryReasons": [],
3049
+ "status": "passed",
3050
+ "title": "can withdraw money"
3051
+ },
3052
+ {
3053
+ "ancestorTitles": [
3054
+ "Bank Account"
3055
+ ],
3056
+ "duration": 0,
3057
+ "failureDetails": [],
3058
+ "failureMessages": [],
3059
+ "fullName": "Bank Account can withdraw money sequentially",
3060
+ "invocations": 1,
3061
+ "location": null,
3062
+ "numPassingAsserts": 1,
3063
+ "retryReasons": [],
3064
+ "status": "passed",
3065
+ "title": "can withdraw money sequentially"
3066
+ },
3067
+ {
3068
+ "ancestorTitles": [
3069
+ "Bank Account"
3070
+ ],
3071
+ "duration": 4,
3072
+ "failureDetails": [],
3073
+ "failureMessages": [],
3074
+ "fullName": "Bank Account checking balance of closed account throws error",
3075
+ "invocations": 1,
3076
+ "location": null,
3077
+ "numPassingAsserts": 1,
3078
+ "retryReasons": [],
3079
+ "status": "passed",
3080
+ "title": "checking balance of closed account throws error"
3081
+ },
3082
+ {
3083
+ "ancestorTitles": [
3084
+ "Bank Account"
3085
+ ],
3086
+ "duration": 0,
3087
+ "failureDetails": [],
3088
+ "failureMessages": [],
3089
+ "fullName": "Bank Account deposit into closed account throws error",
3090
+ "invocations": 1,
3091
+ "location": null,
3092
+ "numPassingAsserts": 1,
3093
+ "retryReasons": [],
3094
+ "status": "passed",
3095
+ "title": "deposit into closed account throws error"
3096
+ },
3097
+ {
3098
+ "ancestorTitles": [
3099
+ "Bank Account"
3100
+ ],
3101
+ "duration": 1,
3102
+ "failureDetails": [],
3103
+ "failureMessages": [],
3104
+ "fullName": "Bank Account withdraw from closed account throws error",
3105
+ "invocations": 1,
3106
+ "location": null,
3107
+ "numPassingAsserts": 1,
3108
+ "retryReasons": [],
3109
+ "status": "passed",
3110
+ "title": "withdraw from closed account throws error"
3111
+ },
3112
+ {
3113
+ "ancestorTitles": [
3114
+ "Bank Account"
3115
+ ],
3116
+ "duration": 0,
3117
+ "failureDetails": [],
3118
+ "failureMessages": [],
3119
+ "fullName": "Bank Account close already closed account throws error",
3120
+ "invocations": 1,
3121
+ "location": null,
3122
+ "numPassingAsserts": 1,
3123
+ "retryReasons": [],
3124
+ "status": "passed",
3125
+ "title": "close already closed account throws error"
3126
+ },
3127
+ {
3128
+ "ancestorTitles": [
3129
+ "Bank Account"
3130
+ ],
3131
+ "duration": 0,
3132
+ "failureDetails": [],
3133
+ "failureMessages": [],
3134
+ "fullName": "Bank Account open already opened account throws error",
3135
+ "invocations": 1,
3136
+ "location": null,
3137
+ "numPassingAsserts": 1,
3138
+ "retryReasons": [],
3139
+ "status": "passed",
3140
+ "title": "open already opened account throws error"
3141
+ },
3142
+ {
3143
+ "ancestorTitles": [
3144
+ "Bank Account"
3145
+ ],
3146
+ "duration": 0,
3147
+ "failureDetails": [],
3148
+ "failureMessages": [],
3149
+ "fullName": "Bank Account reopened account does not retain balance",
3150
+ "invocations": 1,
3151
+ "location": null,
3152
+ "numPassingAsserts": 1,
3153
+ "retryReasons": [],
3154
+ "status": "passed",
3155
+ "title": "reopened account does not retain balance"
3156
+ },
3157
+ {
3158
+ "ancestorTitles": [
3159
+ "Bank Account"
3160
+ ],
3161
+ "duration": 0,
3162
+ "failureDetails": [],
3163
+ "failureMessages": [],
3164
+ "fullName": "Bank Account cannot withdraw more than deposited",
3165
+ "invocations": 1,
3166
+ "location": null,
3167
+ "numPassingAsserts": 1,
3168
+ "retryReasons": [],
3169
+ "status": "passed",
3170
+ "title": "cannot withdraw more than deposited"
3171
+ },
3172
+ {
3173
+ "ancestorTitles": [
3174
+ "Bank Account"
3175
+ ],
3176
+ "duration": 0,
3177
+ "failureDetails": [],
3178
+ "failureMessages": [],
3179
+ "fullName": "Bank Account cannot withdraw negative amount",
3180
+ "invocations": 1,
3181
+ "location": null,
3182
+ "numPassingAsserts": 1,
3183
+ "retryReasons": [],
3184
+ "status": "passed",
3185
+ "title": "cannot withdraw negative amount"
3186
+ },
3187
+ {
3188
+ "ancestorTitles": [
3189
+ "Bank Account"
3190
+ ],
3191
+ "duration": 1,
3192
+ "failureDetails": [],
3193
+ "failureMessages": [],
3194
+ "fullName": "Bank Account cannot deposit negative amount",
3195
+ "invocations": 1,
3196
+ "location": null,
3197
+ "numPassingAsserts": 1,
3198
+ "retryReasons": [],
3199
+ "status": "passed",
3200
+ "title": "cannot deposit negative amount"
3201
+ },
3202
+ {
3203
+ "ancestorTitles": [
3204
+ "Bank Account"
3205
+ ],
3206
+ "duration": 0,
3207
+ "failureDetails": [],
3208
+ "failureMessages": [],
3209
+ "fullName": "Bank Account changing balance directly throws error",
3210
+ "invocations": 1,
3211
+ "location": null,
3212
+ "numPassingAsserts": 1,
3213
+ "retryReasons": [],
3214
+ "status": "passed",
3215
+ "title": "changing balance directly throws error"
3216
+ }
3217
+ ],
3218
+ "endTime": 1754273212979,
3219
+ "message": "",
3220
+ "name": "/Users/micah/dev/knowhow/packages/knowhow/benchmarks/exercises/filtered/bank-account/bank-account.spec.js",
3221
+ "startTime": 1754273212907,
3222
+ "status": "passed",
3223
+ "summary": ""
3224
+ }
3225
+ ],
3226
+ "wasInterrupted": false
3227
+ }
3228
+ },
3229
+ "timeElapsed": 24.528,
3230
+ "cost": 0.222477920512,
3231
+ "startTime": "2025-08-04T02:06:28.476Z",
3232
+ "endTime": "2025-08-04T02:06:53.004Z",
3233
+ "finalOutput": "All required functionality for the bank-account exercise has been implemented. The solution ensures all test cases in bank-account.spec.js pass, including edge cases and direct property access errors. The skipped tests were unskipped and subsequently passed as well. Your exercise is complete and correct."
3234
+ }
3235
+ ],
3236
+ "summary": {
3237
+ "totalExercises": 10,
3238
+ "successCount": 10,
3239
+ "testableExercises": 10,
3240
+ "testsPassedCount": 10,
3241
+ "testsFailedCount": 0,
3242
+ "testPassRate": 1,
3243
+ "agentSuccessRate": 1,
3244
+ "failureCount": 0,
3245
+ "timeoutCount": 0,
3246
+ "costLimitCount": 0,
3247
+ "turnLimitCount": 0,
3248
+ "totalTime": 436.616,
3249
+ "totalCost": 3.690258649856,
3250
+ "averageTurns": 14.9,
3251
+ "averageTime": 43.6616,
3252
+ "successRate": 1
3253
+ },
3254
+ "startTime": "2025-08-04T01:59:33.927Z",
3255
+ "endTime": "2025-08-04T02:06:53.019Z"
3256
+ }