@alumbwe/anvil 1.0.20 → 1.0.22

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 (328) hide show
  1. package/package.json +74 -70
  2. package/src/agents/bundled-agents.generated.ts +4 -4
  3. package/src/chat.tsx +1703 -1698
  4. package/src/cli-args.ts +134 -134
  5. package/src/components/status-bar.tsx +331 -313
  6. package/src/hooks/helpers/send-message.ts +663 -654
  7. package/src/hooks/use-send-message.ts +806 -773
  8. package/src/index.tsx +473 -473
  9. package/src/state/chat-store.ts +553 -544
  10. package/src/utils/create-run-config.ts +121 -121
  11. package/src/utils/format-compact-number.ts +37 -0
  12. package/vendor/@anvil/common/package.json +27 -0
  13. package/vendor/@anvil/common/src/__tests__/agent-validation.test.ts +846 -0
  14. package/vendor/@anvil/common/src/__tests__/anvil-model-availability.test.ts +101 -0
  15. package/vendor/@anvil/common/src/__tests__/anvil-models.test.ts +1408 -0
  16. package/vendor/@anvil/common/src/__tests__/anvil-public-data-use-copy.test.ts +258 -0
  17. package/vendor/@anvil/common/src/__tests__/anvil-referral-tiers.test.ts +48 -0
  18. package/vendor/@anvil/common/src/__tests__/anvil-spend-ceilings.test.ts +282 -0
  19. package/vendor/@anvil/common/src/__tests__/anvil-trust.test.ts +526 -0
  20. package/vendor/@anvil/common/src/__tests__/deepseek-direct.test.ts +68 -0
  21. package/vendor/@anvil/common/src/__tests__/disposable-email.test.ts +132 -0
  22. package/vendor/@anvil/common/src/__tests__/dynamic-agent-template-schema.test.ts +422 -0
  23. package/vendor/@anvil/common/src/__tests__/env-ci.test.ts +167 -0
  24. package/vendor/@anvil/common/src/__tests__/env-process.test.ts +145 -0
  25. package/vendor/@anvil/common/src/__tests__/foreign-client-shipped-agents.test.ts +234 -0
  26. package/vendor/@anvil/common/src/__tests__/foreign-client-signals.test.ts +379 -0
  27. package/vendor/@anvil/common/src/__tests__/free-agents.test.ts +807 -0
  28. package/vendor/@anvil/common/src/__tests__/gravity-capi.test.ts +154 -0
  29. package/vendor/@anvil/common/src/__tests__/handlesteps-parsing.test.ts +246 -0
  30. package/vendor/@anvil/common/src/__tests__/kimi-k3-god-only.test.ts +77 -0
  31. package/vendor/@anvil/common/src/__tests__/model-config.test.ts +89 -0
  32. package/vendor/@anvil/common/src/__tests__/project-file-tree.test.ts +298 -0
  33. package/vendor/@anvil/common/src/__tests__/provisioned-model-tiers.test.ts +116 -0
  34. package/vendor/@anvil/common/src/__tests__/reasoning-effort.test.ts +167 -0
  35. package/vendor/@anvil/common/src/__tests__/reddit-capi.test.ts +132 -0
  36. package/vendor/@anvil/common/src/__tests__/response-ad-positions.test.ts +72 -0
  37. package/vendor/@anvil/common/src/__tests__/user-state.test.ts +30 -0
  38. package/vendor/@anvil/common/src/actions.ts +215 -0
  39. package/vendor/@anvil/common/src/analytics-core.ts +69 -0
  40. package/vendor/@anvil/common/src/analytics.ts +93 -0
  41. package/vendor/@anvil/common/src/api-keys/constants.ts +26 -0
  42. package/vendor/@anvil/common/src/browser-actions.ts +413 -0
  43. package/vendor/@anvil/common/src/constants/__tests__/anvil-onboarding-gate.test.ts +63 -0
  44. package/vendor/@anvil/common/src/constants/__tests__/anvil-onboarding.test.ts +246 -0
  45. package/vendor/@anvil/common/src/constants/__tests__/cf-worker-signals.test.ts +106 -0
  46. package/vendor/@anvil/common/src/constants/agents.ts +99 -0
  47. package/vendor/@anvil/common/src/constants/analytics-events.ts +435 -0
  48. package/vendor/@anvil/common/src/constants/anthropic.ts +73 -0
  49. package/vendor/@anvil/common/src/constants/anvil-data-use.ts +81 -0
  50. package/vendor/@anvil/common/src/constants/anvil-errors.ts +7 -0
  51. package/vendor/@anvil/common/src/constants/anvil-gemini-thinker.ts +21 -0
  52. package/vendor/@anvil/common/src/constants/anvil-model-ids.ts +11 -0
  53. package/vendor/@anvil/common/src/constants/anvil-models.ts +2130 -0
  54. package/vendor/@anvil/common/src/constants/anvil-onboarding-gate.ts +55 -0
  55. package/vendor/@anvil/common/src/constants/anvil-onboarding.ts +307 -0
  56. package/vendor/@anvil/common/src/constants/anvil-referral-tiers.ts +87 -0
  57. package/vendor/@anvil/common/src/constants/anvil-signup-block.ts +68 -0
  58. package/vendor/@anvil/common/src/constants/anvil-spend-ceilings.ts +450 -0
  59. package/vendor/@anvil/common/src/constants/anvil-trust.ts +976 -0
  60. package/vendor/@anvil/common/src/constants/auth.ts +18 -0
  61. package/vendor/@anvil/common/src/constants/byok.ts +2 -0
  62. package/vendor/@anvil/common/src/constants/cf-worker-signals.ts +132 -0
  63. package/vendor/@anvil/common/src/constants/composio.ts +34 -0
  64. package/vendor/@anvil/common/src/constants/deepseek-direct.ts +55 -0
  65. package/vendor/@anvil/common/src/constants/feedback.ts +13 -0
  66. package/vendor/@anvil/common/src/constants/foreign-client-signals.ts +272 -0
  67. package/vendor/@anvil/common/src/constants/free-agents.ts +777 -0
  68. package/vendor/@anvil/common/src/constants/gemini.ts +15 -0
  69. package/vendor/@anvil/common/src/constants/grant-priorities.ts +13 -0
  70. package/vendor/@anvil/common/src/constants/hosts.ts +6 -0
  71. package/vendor/@anvil/common/src/constants/images.ts +51 -0
  72. package/vendor/@anvil/common/src/constants/index.ts +7 -0
  73. package/vendor/@anvil/common/src/constants/knowledge.ts +35 -0
  74. package/vendor/@anvil/common/src/constants/limits.ts +23 -0
  75. package/vendor/@anvil/common/src/constants/model-config.ts +277 -0
  76. package/vendor/@anvil/common/src/constants/openrouter-attribution.ts +8 -0
  77. package/vendor/@anvil/common/src/constants/paths.ts +69 -0
  78. package/vendor/@anvil/common/src/constants/provider-routes.ts +317 -0
  79. package/vendor/@anvil/common/src/constants/reasoning-effort.ts +79 -0
  80. package/vendor/@anvil/common/src/constants/skills.ts +60 -0
  81. package/vendor/@anvil/common/src/constants/subscription-plans.ts +49 -0
  82. package/vendor/@anvil/common/src/constants/ui.ts +25 -0
  83. package/vendor/@anvil/common/src/env-ci.ts +36 -0
  84. package/vendor/@anvil/common/src/env-process.ts +95 -0
  85. package/vendor/@anvil/common/src/env-schema.ts +95 -0
  86. package/vendor/@anvil/common/src/env.ts +24 -0
  87. package/vendor/@anvil/common/src/gravity-capi.ts +207 -0
  88. package/vendor/@anvil/common/src/mcp/client.ts +233 -0
  89. package/vendor/@anvil/common/src/old-constants.ts +10 -0
  90. package/vendor/@anvil/common/src/project-file-tree.ts +355 -0
  91. package/vendor/@anvil/common/src/reddit-capi.ts +254 -0
  92. package/vendor/@anvil/common/src/schemas/feedback.ts +52 -0
  93. package/vendor/@anvil/common/src/schemas/logs.ts +66 -0
  94. package/vendor/@anvil/common/src/templates/agent-validation.ts +392 -0
  95. package/vendor/@anvil/common/src/templates/initial-agents-dir/LICENSE +202 -0
  96. package/vendor/@anvil/common/src/templates/initial-agents-dir/README.md +294 -0
  97. package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/01-basic-diff-reviewer.ts +17 -0
  98. package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/02-intermediate-git-committer.ts +78 -0
  99. package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/03-advanced-file-explorer.ts +73 -0
  100. package/vendor/@anvil/common/src/templates/initial-agents-dir/my-custom-agent.ts +40 -0
  101. package/vendor/@anvil/common/src/templates/initial-agents-dir/package.json +6 -0
  102. package/vendor/@anvil/common/src/templates/initial-agents-dir/skills/README.md +65 -0
  103. package/vendor/@anvil/common/src/templates/initial-agents-dir/skills/example-skill/SKILL.md +29 -0
  104. package/vendor/@anvil/common/src/templates/initial-agents-dir/types/agent-definition.ts +497 -0
  105. package/vendor/@anvil/common/src/templates/initial-agents-dir/types/tools.ts +444 -0
  106. package/vendor/@anvil/common/src/templates/initial-agents-dir/types/util-types.ts +178 -0
  107. package/vendor/@anvil/common/src/testing/TESTING_PATTERNS.md +351 -0
  108. package/vendor/@anvil/common/src/testing/anvil-offer-invariants.ts +169 -0
  109. package/vendor/@anvil/common/src/testing/errors.ts +33 -0
  110. package/vendor/@anvil/common/src/testing/fixtures/agent-runtime.ts +334 -0
  111. package/vendor/@anvil/common/src/testing/impl/agent-runtime.ts +6 -0
  112. package/vendor/@anvil/common/src/testing/index.ts +84 -0
  113. package/vendor/@anvil/common/src/testing/mock-modules.ts +53 -0
  114. package/vendor/@anvil/common/src/testing/mock-types.ts +123 -0
  115. package/vendor/@anvil/common/src/testing/mocks/analytics.ts +261 -0
  116. package/vendor/@anvil/common/src/testing/mocks/child-process.ts +93 -0
  117. package/vendor/@anvil/common/src/testing/mocks/crypto.ts +218 -0
  118. package/vendor/@anvil/common/src/testing/mocks/database.ts +337 -0
  119. package/vendor/@anvil/common/src/testing/mocks/fetch.ts +219 -0
  120. package/vendor/@anvil/common/src/testing/mocks/filesystem.ts +166 -0
  121. package/vendor/@anvil/common/src/testing/mocks/index.ts +101 -0
  122. package/vendor/@anvil/common/src/testing/mocks/logger.ts +135 -0
  123. package/vendor/@anvil/common/src/testing/mocks/stream.ts +313 -0
  124. package/vendor/@anvil/common/src/testing/mocks/timers.ts +132 -0
  125. package/vendor/@anvil/common/src/testing/mocks/tree-sitter.ts +127 -0
  126. package/vendor/@anvil/common/src/testing/setup.ts +282 -0
  127. package/vendor/@anvil/common/src/testing-env-ci.ts +15 -0
  128. package/vendor/@anvil/common/src/testing-env-process.ts +78 -0
  129. package/vendor/@anvil/common/src/tools/__tests__/compile-tool-definitions.test.ts +34 -0
  130. package/vendor/@anvil/common/src/tools/compile-tool-definitions.ts +157 -0
  131. package/vendor/@anvil/common/src/tools/constants.ts +117 -0
  132. package/vendor/@anvil/common/src/tools/list.ts +190 -0
  133. package/vendor/@anvil/common/src/tools/params/__tests__/coerce-to-array.test.ts +213 -0
  134. package/vendor/@anvil/common/src/tools/params/__tests__/read-docs.test.ts +47 -0
  135. package/vendor/@anvil/common/src/tools/params/__tests__/render-ui.test.ts +65 -0
  136. package/vendor/@anvil/common/src/tools/params/tool/__tests__/run-terminal-command-timeout.test.ts +49 -0
  137. package/vendor/@anvil/common/src/tools/params/tool/add-message.ts +39 -0
  138. package/vendor/@anvil/common/src/tools/params/tool/add-subgoal.ts +57 -0
  139. package/vendor/@anvil/common/src/tools/params/tool/apply-patch.ts +110 -0
  140. package/vendor/@anvil/common/src/tools/params/tool/ask-user.ts +181 -0
  141. package/vendor/@anvil/common/src/tools/params/tool/browser-logs.ts +85 -0
  142. package/vendor/@anvil/common/src/tools/params/tool/cloud-plan-ready.ts +94 -0
  143. package/vendor/@anvil/common/src/tools/params/tool/code-search.ts +159 -0
  144. package/vendor/@anvil/common/src/tools/params/tool/composio.ts +131 -0
  145. package/vendor/@anvil/common/src/tools/params/tool/create-plan.ts +80 -0
  146. package/vendor/@anvil/common/src/tools/params/tool/end-turn.ts +57 -0
  147. package/vendor/@anvil/common/src/tools/params/tool/find-files.ts +60 -0
  148. package/vendor/@anvil/common/src/tools/params/tool/glob.ts +80 -0
  149. package/vendor/@anvil/common/src/tools/params/tool/gravity-index.ts +93 -0
  150. package/vendor/@anvil/common/src/tools/params/tool/list-directory.ts +58 -0
  151. package/vendor/@anvil/common/src/tools/params/tool/lookup-agent-info.ts +37 -0
  152. package/vendor/@anvil/common/src/tools/params/tool/propose-str-replace.ts +103 -0
  153. package/vendor/@anvil/common/src/tools/params/tool/propose-write-file.ts +71 -0
  154. package/vendor/@anvil/common/src/tools/params/tool/read-docs.ts +90 -0
  155. package/vendor/@anvil/common/src/tools/params/tool/read-files.ts +109 -0
  156. package/vendor/@anvil/common/src/tools/params/tool/read-subtree.ts +79 -0
  157. package/vendor/@anvil/common/src/tools/params/tool/read-url.ts +81 -0
  158. package/vendor/@anvil/common/src/tools/params/tool/render-ui.ts +168 -0
  159. package/vendor/@anvil/common/src/tools/params/tool/run-file-change-hooks.ts +57 -0
  160. package/vendor/@anvil/common/src/tools/params/tool/run-terminal-command.ts +211 -0
  161. package/vendor/@anvil/common/src/tools/params/tool/screenshot.ts +97 -0
  162. package/vendor/@anvil/common/src/tools/params/tool/set-messages.ts +44 -0
  163. package/vendor/@anvil/common/src/tools/params/tool/set-output.ts +61 -0
  164. package/vendor/@anvil/common/src/tools/params/tool/skill.ts +59 -0
  165. package/vendor/@anvil/common/src/tools/params/tool/spawn-agent-inline.ts +56 -0
  166. package/vendor/@anvil/common/src/tools/params/tool/spawn-agents.ts +154 -0
  167. package/vendor/@anvil/common/src/tools/params/tool/str-replace.ts +107 -0
  168. package/vendor/@anvil/common/src/tools/params/tool/suggest-followups.ts +97 -0
  169. package/vendor/@anvil/common/src/tools/params/tool/task-completed.ts +61 -0
  170. package/vendor/@anvil/common/src/tools/params/tool/think-deeply.ts +56 -0
  171. package/vendor/@anvil/common/src/tools/params/tool/update-subgoal.ts +89 -0
  172. package/vendor/@anvil/common/src/tools/params/tool/vision-analyze.ts +82 -0
  173. package/vendor/@anvil/common/src/tools/params/tool/web-search.ts +73 -0
  174. package/vendor/@anvil/common/src/tools/params/tool/write-file.ts +71 -0
  175. package/vendor/@anvil/common/src/tools/params/tool/write-todos.ts +67 -0
  176. package/vendor/@anvil/common/src/tools/params/utils.ts +150 -0
  177. package/vendor/@anvil/common/src/tools/utils.ts +24 -0
  178. package/vendor/@anvil/common/src/types/__tests__/dynamic-agent-template.test.ts +20 -0
  179. package/vendor/@anvil/common/src/types/agent-template.ts +215 -0
  180. package/vendor/@anvil/common/src/types/anvil-session.ts +535 -0
  181. package/vendor/@anvil/common/src/types/anvil-streak.ts +6 -0
  182. package/vendor/@anvil/common/src/types/anvil-usage.ts +64 -0
  183. package/vendor/@anvil/common/src/types/api/agents/publish.ts +61 -0
  184. package/vendor/@anvil/common/src/types/bun-test.d.ts +5 -0
  185. package/vendor/@anvil/common/src/types/contracts/agent-runtime.ts +75 -0
  186. package/vendor/@anvil/common/src/types/contracts/analytics.ts +9 -0
  187. package/vendor/@anvil/common/src/types/contracts/bigquery.ts +55 -0
  188. package/vendor/@anvil/common/src/types/contracts/billing.ts +46 -0
  189. package/vendor/@anvil/common/src/types/contracts/client.ts +53 -0
  190. package/vendor/@anvil/common/src/types/contracts/database.ts +112 -0
  191. package/vendor/@anvil/common/src/types/contracts/env.ts +203 -0
  192. package/vendor/@anvil/common/src/types/contracts/llm.ts +191 -0
  193. package/vendor/@anvil/common/src/types/contracts/logger.ts +14 -0
  194. package/vendor/@anvil/common/src/types/contracts/logs.ts +34 -0
  195. package/vendor/@anvil/common/src/types/contracts/trace.ts +21 -0
  196. package/vendor/@anvil/common/src/types/dynamic-agent-template.ts +328 -0
  197. package/vendor/@anvil/common/src/types/filesystem.ts +10 -0
  198. package/vendor/@anvil/common/src/types/function-params.ts +33 -0
  199. package/vendor/@anvil/common/src/types/grant.ts +20 -0
  200. package/vendor/@anvil/common/src/types/gravity-index.ts +170 -0
  201. package/vendor/@anvil/common/src/types/json.ts +29 -0
  202. package/vendor/@anvil/common/src/types/mcp.ts +24 -0
  203. package/vendor/@anvil/common/src/types/messages/anvil-message.ts +58 -0
  204. package/vendor/@anvil/common/src/types/messages/content-part.ts +59 -0
  205. package/vendor/@anvil/common/src/types/messages/data-content.ts +14 -0
  206. package/vendor/@anvil/common/src/types/messages/provider-metadata.ts +13 -0
  207. package/vendor/@anvil/common/src/types/organization.ts +118 -0
  208. package/vendor/@anvil/common/src/types/print-mode.ts +121 -0
  209. package/vendor/@anvil/common/src/types/publisher.ts +67 -0
  210. package/vendor/@anvil/common/src/types/session-state.ts +149 -0
  211. package/vendor/@anvil/common/src/types/skill.ts +86 -0
  212. package/vendor/@anvil/common/src/types/source.ts +11 -0
  213. package/vendor/@anvil/common/src/types/spawn.ts +13 -0
  214. package/vendor/@anvil/common/src/types/subscription.ts +67 -0
  215. package/vendor/@anvil/common/src/types/usage.ts +16 -0
  216. package/vendor/@anvil/common/src/types/util.ts +3 -0
  217. package/vendor/@anvil/common/src/util/__tests__/ad-user-agent.test.ts +26 -0
  218. package/vendor/@anvil/common/src/util/__tests__/analytics-dispatcher.test.ts +122 -0
  219. package/vendor/@anvil/common/src/util/__tests__/analytics-log.test.ts +102 -0
  220. package/vendor/@anvil/common/src/util/__tests__/analytics-sampling.test.ts +143 -0
  221. package/vendor/@anvil/common/src/util/__tests__/anvil-streak.test.ts +202 -0
  222. package/vendor/@anvil/common/src/util/__tests__/anvil-usage-summary.test.ts +193 -0
  223. package/vendor/@anvil/common/src/util/__tests__/axiom-only-log.test.ts +140 -0
  224. package/vendor/@anvil/common/src/util/__tests__/client-user-agent.test.ts +148 -0
  225. package/vendor/@anvil/common/src/util/__tests__/engagement-tracker.test.ts +115 -0
  226. package/vendor/@anvil/common/src/util/__tests__/env-file-path.test.ts +57 -0
  227. package/vendor/@anvil/common/src/util/__tests__/error-abort.test.ts +774 -0
  228. package/vendor/@anvil/common/src/util/__tests__/error-api-details.test.ts +206 -0
  229. package/vendor/@anvil/common/src/util/__tests__/file-read-limits.test.ts +173 -0
  230. package/vendor/@anvil/common/src/util/__tests__/format-code-search.test.ts +60 -0
  231. package/vendor/@anvil/common/src/util/__tests__/log-mirror.test.ts +31 -0
  232. package/vendor/@anvil/common/src/util/__tests__/messages.test.ts +1252 -0
  233. package/vendor/@anvil/common/src/util/__tests__/partial-json-delta.test.ts +505 -0
  234. package/vendor/@anvil/common/src/util/__tests__/path.test.ts +22 -0
  235. package/vendor/@anvil/common/src/util/__tests__/project-ignore.test.ts +90 -0
  236. package/vendor/@anvil/common/src/util/__tests__/promise.test.ts +325 -0
  237. package/vendor/@anvil/common/src/util/__tests__/rate-limit.test.ts +28 -0
  238. package/vendor/@anvil/common/src/util/__tests__/reddit-anvil-retention.test.ts +130 -0
  239. package/vendor/@anvil/common/src/util/__tests__/saxy.test.ts +1008 -0
  240. package/vendor/@anvil/common/src/util/__tests__/split-data.test.ts +289 -0
  241. package/vendor/@anvil/common/src/util/__tests__/string.test.ts +239 -0
  242. package/vendor/@anvil/common/src/util/__tests__/thread-title.test.ts +70 -0
  243. package/vendor/@anvil/common/src/util/__tests__/tool-result-media-order.test.ts +108 -0
  244. package/vendor/@anvil/common/src/util/__tests__/ttft-histogram.test.ts +180 -0
  245. package/vendor/@anvil/common/src/util/__tests__/with-timeout.test.ts +24 -0
  246. package/vendor/@anvil/common/src/util/__tests__/zoned-time.test.ts +88 -0
  247. package/vendor/@anvil/common/src/util/ad-user-agent.ts +25 -0
  248. package/vendor/@anvil/common/src/util/agent-file-utils.ts +110 -0
  249. package/vendor/@anvil/common/src/util/agent-id-parsing.ts +136 -0
  250. package/vendor/@anvil/common/src/util/agent-name-normalization.ts +38 -0
  251. package/vendor/@anvil/common/src/util/agent-name-resolver.ts +86 -0
  252. package/vendor/@anvil/common/src/util/analytics-dispatcher.ts +82 -0
  253. package/vendor/@anvil/common/src/util/analytics-log.ts +78 -0
  254. package/vendor/@anvil/common/src/util/analytics-sampling.ts +255 -0
  255. package/vendor/@anvil/common/src/util/anvil-model-availability.ts +102 -0
  256. package/vendor/@anvil/common/src/util/anvil-privacy.ts +82 -0
  257. package/vendor/@anvil/common/src/util/anvil-streak-line.ts +103 -0
  258. package/vendor/@anvil/common/src/util/anvil-streak.ts +156 -0
  259. package/vendor/@anvil/common/src/util/anvil-usage-summary.ts +125 -0
  260. package/vendor/@anvil/common/src/util/array.ts +31 -0
  261. package/vendor/@anvil/common/src/util/axiom-only-log.ts +124 -0
  262. package/vendor/@anvil/common/src/util/cache-debug.ts +171 -0
  263. package/vendor/@anvil/common/src/util/client-user-agent.ts +114 -0
  264. package/vendor/@anvil/common/src/util/credentials.ts +26 -0
  265. package/vendor/@anvil/common/src/util/currency.ts +25 -0
  266. package/vendor/@anvil/common/src/util/dates.ts +81 -0
  267. package/vendor/@anvil/common/src/util/disposable-email.ts +277 -0
  268. package/vendor/@anvil/common/src/util/engagement-tracker.ts +129 -0
  269. package/vendor/@anvil/common/src/util/env-file-path.ts +40 -0
  270. package/vendor/@anvil/common/src/util/error.ts +562 -0
  271. package/vendor/@anvil/common/src/util/file-read-limits.ts +236 -0
  272. package/vendor/@anvil/common/src/util/file.ts +339 -0
  273. package/vendor/@anvil/common/src/util/format-code-search.ts +115 -0
  274. package/vendor/@anvil/common/src/util/lazy-response-ads.ts +92 -0
  275. package/vendor/@anvil/common/src/util/log-data.ts +57 -0
  276. package/vendor/@anvil/common/src/util/log-ingest.ts +58 -0
  277. package/vendor/@anvil/common/src/util/log-mirror.ts +34 -0
  278. package/vendor/@anvil/common/src/util/lru-cache.ts +67 -0
  279. package/vendor/@anvil/common/src/util/messages.ts +685 -0
  280. package/vendor/@anvil/common/src/util/min-heap.ts +87 -0
  281. package/vendor/@anvil/common/src/util/model-utils.ts +4 -0
  282. package/vendor/@anvil/common/src/util/object.ts +128 -0
  283. package/vendor/@anvil/common/src/util/partial-json-delta.ts +89 -0
  284. package/vendor/@anvil/common/src/util/path.ts +15 -0
  285. package/vendor/@anvil/common/src/util/project-ignore.ts +119 -0
  286. package/vendor/@anvil/common/src/util/promise.ts +73 -0
  287. package/vendor/@anvil/common/src/util/random.ts +15 -0
  288. package/vendor/@anvil/common/src/util/rate-limit.ts +56 -0
  289. package/vendor/@anvil/common/src/util/reddit-anvil-retention.ts +60 -0
  290. package/vendor/@anvil/common/src/util/reddit-capi-events.ts +36 -0
  291. package/vendor/@anvil/common/src/util/response-ad-positions.ts +54 -0
  292. package/vendor/@anvil/common/src/util/saxy.ts +741 -0
  293. package/vendor/@anvil/common/src/util/skills.test.ts +44 -0
  294. package/vendor/@anvil/common/src/util/skills.ts +36 -0
  295. package/vendor/@anvil/common/src/util/split-data.ts +259 -0
  296. package/vendor/@anvil/common/src/util/stop-sequence.ts +61 -0
  297. package/vendor/@anvil/common/src/util/string.ts +426 -0
  298. package/vendor/@anvil/common/src/util/system-info.ts +53 -0
  299. package/vendor/@anvil/common/src/util/thread-title.ts +46 -0
  300. package/vendor/@anvil/common/src/util/ttft-histogram.ts +73 -0
  301. package/vendor/@anvil/common/src/util/xml-parser.ts +27 -0
  302. package/vendor/@anvil/common/src/util/xml.ts +17 -0
  303. package/vendor/@anvil/common/src/util/zod-schema.ts +25 -0
  304. package/vendor/@anvil/common/src/util/zoned-time.ts +136 -0
  305. package/vendor/@anvil/common/src/utils/ask-user-bridge.ts +44 -0
  306. package/vendor/@anvil/sdk/dist/index.cjs +52297 -0
  307. package/vendor/@anvil/sdk/dist/index.cjs.map +440 -0
  308. package/vendor/@anvil/sdk/dist/index.d.ts +4277 -0
  309. package/vendor/@anvil/sdk/dist/index.mjs +52290 -0
  310. package/vendor/@anvil/sdk/dist/index.mjs.map +440 -0
  311. package/vendor/@anvil/sdk/dist/vendor/ai.cjs +30886 -0
  312. package/vendor/@anvil/sdk/dist/vendor/ripgrep/arm64-darwin/rg +0 -0
  313. package/vendor/@anvil/sdk/dist/vendor/ripgrep/arm64-linux/rg +0 -0
  314. package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-darwin/rg +0 -0
  315. package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-linux/rg +0 -0
  316. package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-win32/rg.exe +0 -0
  317. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-c-sharp.wasm +0 -0
  318. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-cpp.wasm +0 -0
  319. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-go.wasm +0 -0
  320. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-java.wasm +0 -0
  321. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-javascript.wasm +0 -0
  322. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-python.wasm +0 -0
  323. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-ruby.wasm +0 -0
  324. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-rust.wasm +0 -0
  325. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-tsx.wasm +0 -0
  326. package/vendor/@anvil/sdk/dist/wasm/tree-sitter-typescript.wasm +0 -0
  327. package/vendor/@anvil/sdk/dist/wasm/tree-sitter.wasm +0 -0
  328. package/vendor/@anvil/sdk/package.json +21 -0
@@ -0,0 +1,334 @@
1
+ /**
2
+ * Test fixtures for agent runtime testing.
3
+ *
4
+ * Provides pre-built test fixtures and factory functions for
5
+ * testing agent runtime components without needing to set up
6
+ * all the dependencies manually.
7
+ *
8
+ * @example
9
+ * ```typescript
10
+ * import {
11
+ * createTestAgentRuntimeParams,
12
+ * createTestAgentRuntimeDeps,
13
+ * mockFileContext,
14
+ * } from '@anvil/common/testing/fixtures/agent-runtime'
15
+ *
16
+ * const params = createTestAgentRuntimeParams()
17
+ * const { agentTemplate, localAgentTemplates } = params
18
+ * ```
19
+ */
20
+
21
+ import { mock } from 'bun:test'
22
+
23
+ import { promptSuccess } from '../../util/error'
24
+
25
+ import type { ProjectFileContext } from '../../util/file'
26
+
27
+ export const mockFileContext: ProjectFileContext = {
28
+ projectRoot: '/test',
29
+ cwd: '/test',
30
+ fileTree: [],
31
+ fileTokenScores: {},
32
+ knowledgeFiles: {},
33
+ userKnowledgeFiles: {},
34
+ agentTemplates: {},
35
+ customToolDefinitions: {},
36
+ gitChanges: {
37
+ status: '',
38
+ diff: '',
39
+ diffCached: '',
40
+ lastCommitMessages: '',
41
+ },
42
+ changesSinceLastChat: {},
43
+ shellConfigFiles: {},
44
+ systemInfo: {
45
+ platform: 'test',
46
+ shell: 'test',
47
+ nodeVersion: 'test',
48
+ arch: 'test',
49
+ homedir: '/home/test',
50
+ cpus: 1,
51
+ chromeAvailable: false,
52
+ },
53
+ }
54
+
55
+ /** @deprecated Use mockFileContext */
56
+ export const testFileContext: ProjectFileContext = mockFileContext
57
+
58
+ export const testLogger = {
59
+ debug: () => {},
60
+ error: () => {},
61
+ info: () => {},
62
+ warn: () => {},
63
+ }
64
+
65
+ export const testFetch = Object.assign(
66
+ async () => {
67
+ throw new Error('fetch not implemented in test runtime')
68
+ },
69
+ {
70
+ preconnect: async () => {
71
+ throw new Error('fetch.preconnect not implemented in test runtime')
72
+ },
73
+ },
74
+ )
75
+
76
+ export const testClientEnv = {
77
+ NEXT_PUBLIC_CB_ENVIRONMENT: 'test' as const,
78
+ NEXT_PUBLIC_ANVIL_APP_URL: 'https://test.codebuff.com',
79
+ NEXT_PUBLIC_SUPPORT_EMAIL: 'support@codebuff.test',
80
+ NEXT_PUBLIC_POSTHOG_API_KEY: 'test-posthog-key',
81
+ NEXT_PUBLIC_POSTHOG_HOST_URL: 'https://test.posthog.com',
82
+ NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY: 'pk_test_123',
83
+ NEXT_PUBLIC_STRIPE_CUSTOMER_PORTAL: 'https://test.stripe.com/portal',
84
+ NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION_ID: undefined,
85
+ NEXT_PUBLIC_WEB_PORT: 3000,
86
+ }
87
+
88
+ export const testCiEnv = {
89
+ CI: undefined,
90
+ GITHUB_ACTIONS: undefined,
91
+ RENDER: undefined,
92
+ IS_PULL_REQUEST: undefined,
93
+ ANVIL_GITHUB_TOKEN: undefined,
94
+ ANVIL_API_KEY: 'test-api-key',
95
+ }
96
+
97
+ /** @deprecated Use createTestAgentRuntimeParams() */
98
+ export const TEST_AGENT_RUNTIME_IMPL = Object.freeze({
99
+ clientEnv: testClientEnv,
100
+ ciEnv: testCiEnv,
101
+ trackEvent: () => {},
102
+ logger: testLogger,
103
+ fetch: testFetch,
104
+ getUserInfoFromApiKey: async <T extends string>({
105
+ fields,
106
+ }: {
107
+ apiKey: string
108
+ fields: readonly T[]
109
+ }) => {
110
+ const user = {
111
+ id: 'test-user-id',
112
+ email: 'test@example.com',
113
+ discord_id: 'test-discord-id',
114
+ stripe_customer_id: null,
115
+ banned: false,
116
+ created_at: new Date('2024-01-01T00:00:00Z'),
117
+ } as const
118
+ return Object.fromEntries(
119
+ fields.map((field) => [field, user[field as keyof typeof user]]),
120
+ ) as {
121
+ [K in T]: (typeof user)[K & keyof typeof user]
122
+ }
123
+ },
124
+ fetchAgentFromDatabase: async () => null,
125
+ startAgentRun: async () => 'test-agent-run-id',
126
+ finishAgentRun: async () => {},
127
+ addAgentStep: async () => 'test-agent-step-id',
128
+ consumeCreditsWithFallback: async () => {
129
+ throw new Error(
130
+ 'consumeCreditsWithFallback not implemented in test runtime',
131
+ )
132
+ },
133
+ promptAiSdkStream: async function* () {
134
+ throw new Error('promptAiSdkStream not implemented in test runtime')
135
+ },
136
+ promptAiSdk: async function () {
137
+ throw new Error('promptAiSdk not implemented in test runtime')
138
+ },
139
+ promptAiSdkStructured: async function () {
140
+ throw new Error('promptAiSdkStructured not implemented in test runtime')
141
+ },
142
+ databaseAgentCache: new Map(),
143
+ handleStepsLogChunk: () => {
144
+ throw new Error('handleStepsLogChunk not implemented in test runtime')
145
+ },
146
+ requestToolCall: () => {
147
+ throw new Error('requestToolCall not implemented in test runtime')
148
+ },
149
+ requestMcpToolData: () => {
150
+ throw new Error('requestMcpToolData not implemented in test runtime')
151
+ },
152
+ requestFiles: () => {
153
+ throw new Error('requestFiles not implemented in test runtime')
154
+ },
155
+ requestOptionalFile: () => {
156
+ throw new Error('requestOptionalFile not implemented in test runtime')
157
+ },
158
+ sendSubagentChunk: () => {
159
+ throw new Error('sendSubagentChunk not implemented in test runtime')
160
+ },
161
+ sendAction: () => {
162
+ throw new Error('sendAction not implemented in test runtime')
163
+ },
164
+ apiKey: 'test-api-key',
165
+ })
166
+
167
+ export interface TestAgentRuntimeParams {
168
+ agentTemplate: {
169
+ id: string
170
+ displayName: string
171
+ model: string
172
+ inputSchema: Record<string, unknown>
173
+ outputMode: string
174
+ includeMessageHistory: boolean
175
+ inheritParentSystemPrompt: boolean
176
+ mcpServers: Record<string, unknown>
177
+ toolNames: string[]
178
+ spawnableAgents: string[]
179
+ systemPrompt: string
180
+ instructionsPrompt: string
181
+ stepPrompt: string
182
+ }
183
+ localAgentTemplates: Record<string, TestAgentRuntimeParams['agentTemplate']>
184
+ sendAction: ReturnType<typeof mock>
185
+ requestFiles: ReturnType<typeof mock>
186
+ requestToolCall: ReturnType<typeof mock>
187
+ onResponseChunk: ReturnType<typeof mock>
188
+ fileContext: ProjectFileContext
189
+ promptAiSdkStream: ReturnType<typeof mock>
190
+ promptAiSdk: ReturnType<typeof mock>
191
+ promptAiSdkStructured: ReturnType<typeof mock>
192
+ requestMcpToolData: ReturnType<typeof mock>
193
+ startAgentRun: ReturnType<typeof mock>
194
+ finishAgentRun: ReturnType<typeof mock>
195
+ addAgentStep: ReturnType<typeof mock>
196
+ logger: typeof testLogger
197
+ trackEvent: ReturnType<typeof mock>
198
+ clientEnv: typeof testClientEnv
199
+ ciEnv: typeof testCiEnv
200
+ apiKey: string
201
+ fetch: typeof testFetch
202
+ fetchAgentFromDatabase: ReturnType<typeof mock>
203
+ databaseAgentCache: Map<string, null>
204
+ consumeCreditsWithFallback: ReturnType<typeof mock>
205
+ getUserInfoFromApiKey: ReturnType<typeof mock>
206
+ handleStepsLogChunk: ReturnType<typeof mock>
207
+ requestOptionalFile: ReturnType<typeof mock>
208
+ sendSubagentChunk: ReturnType<typeof mock>
209
+ }
210
+
211
+ export function createTestAgentRuntimeParams(
212
+ overrides: Partial<TestAgentRuntimeParams> = {},
213
+ ): TestAgentRuntimeParams {
214
+ const defaultTemplate: TestAgentRuntimeParams['agentTemplate'] = {
215
+ id: 'test-agent',
216
+ displayName: 'Test Agent',
217
+ model: 'claude-3-5-sonnet-20241022',
218
+ inputSchema: {},
219
+ outputMode: 'last_message',
220
+ includeMessageHistory: true,
221
+ inheritParentSystemPrompt: false,
222
+ mcpServers: {},
223
+ toolNames: ['read_files', 'write_file', 'end_turn'],
224
+ spawnableAgents: [],
225
+ systemPrompt: 'You are a test agent.',
226
+ instructionsPrompt: 'Help the user with testing.',
227
+ stepPrompt: '',
228
+ }
229
+
230
+ const agentTemplate = overrides.agentTemplate ?? defaultTemplate
231
+
232
+ return {
233
+ agentTemplate,
234
+ localAgentTemplates: overrides.localAgentTemplates ?? {
235
+ 'test-agent': agentTemplate,
236
+ },
237
+ sendAction: overrides.sendAction ?? mock(() => {}),
238
+ requestFiles: overrides.requestFiles ?? mock(async () => ({})),
239
+ requestToolCall:
240
+ overrides.requestToolCall ??
241
+ mock(async () => ({ success: true, result: 'mock result' })),
242
+ onResponseChunk: overrides.onResponseChunk ?? mock(() => {}),
243
+ fileContext: overrides.fileContext ?? mockFileContext,
244
+ promptAiSdkStream:
245
+ overrides.promptAiSdkStream ??
246
+ mock(async function* () {
247
+ yield { type: 'text' as const, text: 'Mock response\n\n' }
248
+ yield {
249
+ type: 'tool-call' as const,
250
+ toolName: 'end_turn',
251
+ toolCallId: 'mock-id',
252
+ input: {},
253
+ }
254
+ return promptSuccess('mock-message-id')
255
+ }),
256
+ promptAiSdk: overrides.promptAiSdk ?? mock(async () => promptSuccess('Mock response')),
257
+ promptAiSdkStructured:
258
+ overrides.promptAiSdkStructured ?? mock(async () => promptSuccess({})),
259
+ requestMcpToolData: overrides.requestMcpToolData ?? mock(async () => ({})),
260
+ startAgentRun: overrides.startAgentRun ?? mock(async () => 'test-run-id'),
261
+ finishAgentRun: overrides.finishAgentRun ?? mock(async () => {}),
262
+ addAgentStep: overrides.addAgentStep ?? mock(async () => 'test-step-id'),
263
+ logger: overrides.logger ?? testLogger,
264
+ trackEvent: overrides.trackEvent ?? mock(() => {}),
265
+ clientEnv: overrides.clientEnv ?? testClientEnv,
266
+ ciEnv: overrides.ciEnv ?? testCiEnv,
267
+ apiKey: overrides.apiKey ?? 'test-api-key',
268
+ fetch: overrides.fetch ?? testFetch,
269
+ fetchAgentFromDatabase:
270
+ overrides.fetchAgentFromDatabase ?? mock(async () => null),
271
+ databaseAgentCache: overrides.databaseAgentCache ?? new Map<string, null>(),
272
+ consumeCreditsWithFallback:
273
+ overrides.consumeCreditsWithFallback ?? mock(async () => {}),
274
+ getUserInfoFromApiKey:
275
+ overrides.getUserInfoFromApiKey ??
276
+ mock(async () => ({
277
+ id: 'test-user-id',
278
+ email: 'test@example.com',
279
+ })),
280
+ handleStepsLogChunk: overrides.handleStepsLogChunk ?? mock(() => {}),
281
+ requestOptionalFile:
282
+ overrides.requestOptionalFile ?? mock(async () => null),
283
+ sendSubagentChunk: overrides.sendSubagentChunk ?? mock(() => {}),
284
+ ...overrides,
285
+ }
286
+ }
287
+
288
+ export function createTestAgentRuntimeDeps(): Omit<
289
+ TestAgentRuntimeParams,
290
+ 'agentTemplate' | 'localAgentTemplates'
291
+ > {
292
+ return {
293
+ sendAction: mock(() => {}),
294
+ requestFiles: mock(async () => ({})),
295
+ requestToolCall: mock(async () => ({
296
+ success: true,
297
+ result: 'mock result',
298
+ })),
299
+ onResponseChunk: mock(() => {}),
300
+ fileContext: mockFileContext,
301
+ promptAiSdkStream: mock(async function* () {
302
+ yield { type: 'text' as const, text: 'Mock response\n\n' }
303
+ yield {
304
+ type: 'tool-call' as const,
305
+ toolName: 'end_turn',
306
+ toolCallId: 'mock-id',
307
+ input: {},
308
+ }
309
+ return promptSuccess('mock-message-id')
310
+ }),
311
+ promptAiSdk: mock(async () => promptSuccess('Mock response')),
312
+ promptAiSdkStructured: mock(async () => promptSuccess({})),
313
+ requestMcpToolData: mock(async () => ({})),
314
+ startAgentRun: mock(async () => 'test-run-id'),
315
+ finishAgentRun: mock(async () => {}),
316
+ addAgentStep: mock(async () => 'test-step-id'),
317
+ logger: testLogger,
318
+ trackEvent: mock(() => {}),
319
+ clientEnv: testClientEnv,
320
+ ciEnv: testCiEnv,
321
+ apiKey: 'test-api-key',
322
+ fetch: testFetch,
323
+ fetchAgentFromDatabase: mock(async () => null),
324
+ databaseAgentCache: new Map<string, null>(),
325
+ consumeCreditsWithFallback: mock(async () => {}),
326
+ getUserInfoFromApiKey: mock(async () => ({
327
+ id: 'test-user-id',
328
+ email: 'test@example.com',
329
+ })),
330
+ handleStepsLogChunk: mock(() => {}),
331
+ requestOptionalFile: mock(async () => null),
332
+ sendSubagentChunk: mock(() => {}),
333
+ }
334
+ }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * @deprecated Use `@anvil/common/testing/fixtures/agent-runtime` instead.
3
+ */
4
+
5
+ export * from '../fixtures/agent-runtime'
6
+ export type { TestAgentRuntimeParams } from '../fixtures/agent-runtime'
@@ -0,0 +1,84 @@
1
+ /**
2
+ * Consolidated testing utilities for Anvil.
3
+ *
4
+ * This module re-exports all testing utilities from a single entry point,
5
+ * making it easy to import everything you need for testing.
6
+ *
7
+ * ## Module Overview
8
+ *
9
+ * - **mocks**: Typed mock factories for logger, analytics, database, crypto, and streams
10
+ * - **fixtures**: Pre-built test fixtures for agent runtime and other components
11
+ * - **errors**: Typed error creators for testing error handling
12
+ * - **mock-modules**: Dynamic module mocking utilities
13
+ * - **env**: Test environment helpers
14
+ *
15
+ * @example
16
+ * ```typescript
17
+ * import {
18
+ * // Mock factories
19
+ * createMockLogger,
20
+ * createMockAnalytics,
21
+ * setupDbSpies,
22
+ * setupCryptoMocks,
23
+ *
24
+ * // Fixtures
25
+ * createTestAgentRuntimeParams,
26
+ *
27
+ * // Errors
28
+ * createNodeError,
29
+ *
30
+ * // Module mocking
31
+ * mockModule,
32
+ * clearMockedModules,
33
+ * } from '@anvil/common/testing'
34
+ * ```
35
+ *
36
+ * @module testing
37
+ */
38
+
39
+ // ============================================================================
40
+ // Mock Factories
41
+ // ============================================================================
42
+
43
+ export * from './mocks'
44
+
45
+ // ============================================================================
46
+ // Fixtures
47
+ // ============================================================================
48
+
49
+ export {
50
+ createTestAgentRuntimeParams,
51
+ createTestAgentRuntimeDeps,
52
+ mockFileContext,
53
+ } from './fixtures/agent-runtime'
54
+ export type { TestAgentRuntimeParams } from './fixtures/agent-runtime'
55
+
56
+ // ============================================================================
57
+ // Error Utilities
58
+ // ============================================================================
59
+
60
+ export { createNodeError, createPostgresError } from './errors'
61
+ export type { NodeError, PostgresError } from './errors'
62
+
63
+ // ============================================================================
64
+ // Module Mocking
65
+ // ============================================================================
66
+
67
+ export { mockModule, clearMockedModules } from './mock-modules'
68
+
69
+ // ============================================================================
70
+ // Test Setup Utilities
71
+ // ============================================================================
72
+
73
+ export { createTestSetup, sleep, waitFor, captureCallArgs } from './setup'
74
+ export type { CreateTestSetupOptions, TestSetupResult } from './setup'
75
+
76
+ // ============================================================================
77
+ // Environment Helpers (re-exported from sibling modules)
78
+ // ============================================================================
79
+
80
+ // Note: These are in separate files for historical reasons but are commonly
81
+ // used together with other testing utilities.
82
+ // Import directly from their modules if you need only env helpers:
83
+ // - '@anvil/common/testing-env-process' for process env
84
+ // - '@anvil/common/testing-env-ci' for CI env
@@ -0,0 +1,53 @@
1
+ import { mock } from 'bun:test'
2
+
3
+ export type MockResult = {
4
+ clear: () => void
5
+ }
6
+
7
+ const originalModuleCache: Record<string, any> = {}
8
+ let mockModuleCache: Record<string, MockResult> = {}
9
+
10
+ /**
11
+ *
12
+ * @param modulePath - the path starting from this files' path.
13
+ * @param renderMocks - function to generate mocks (by their named or default exports)
14
+ * @returns an object
15
+ */
16
+ export async function mockModule(
17
+ modulePath: string,
18
+ renderMocks: () => Record<string, any>,
19
+ ): Promise<MockResult> {
20
+ let original = originalModuleCache[modulePath]
21
+ if (!original) {
22
+ const moduleExports = await import(modulePath)
23
+ original = {
24
+ ...moduleExports,
25
+ }
26
+ originalModuleCache[modulePath] = original
27
+ }
28
+ let mocks = renderMocks()
29
+ let result = {
30
+ ...original,
31
+ ...mocks,
32
+ }
33
+ mock.module(modulePath, () => result)
34
+ let num = 0
35
+ let key = modulePath
36
+ while (key in mockModuleCache) {
37
+ num++
38
+ key = `${modulePath}\n${num}`
39
+ }
40
+ const mocked: MockResult = {
41
+ clear: () => {
42
+ mock.module(modulePath, () => original)
43
+ delete mockModuleCache[key]
44
+ },
45
+ }
46
+ mockModuleCache[key] = mocked
47
+ return mocked
48
+ }
49
+
50
+ export const clearMockedModules = () => {
51
+ Object.values(mockModuleCache).forEach((mockResult) => mockResult.clear())
52
+ mockModuleCache = {}
53
+ }
@@ -0,0 +1,123 @@
1
+ /**
2
+ * Shared mock types for testing.
3
+ *
4
+ * This module provides common mock types and factory functions that are
5
+ * frequently used across test files. Using these shared types ensures
6
+ * consistency and reduces duplication in test code.
7
+ *
8
+ * @example
9
+ * ```typescript
10
+ * import {
11
+ * createMockLogger,
12
+ * type MockUserInfo,
13
+ * type MockCreditResult,
14
+ * } from '@anvil/common/testing/mock-types'
15
+ *
16
+ * const logger = createMockLogger()
17
+ * const userInfo: MockUserInfo = { id: 'user-123' }
18
+ * ```
19
+ */
20
+
21
+ import { mock } from 'bun:test'
22
+
23
+ import type { Logger } from '../types/contracts/logger'
24
+
25
+ /**
26
+ * Mock user info returned by API key lookup functions.
27
+ * Contains the minimal user identification data needed for testing.
28
+ */
29
+ export interface MockUserInfo {
30
+ id: string
31
+ }
32
+
33
+ /**
34
+ * Mock result from credit consumption operations.
35
+ * Used when testing billing-related functionality.
36
+ */
37
+ export interface MockCreditResult {
38
+ success: boolean
39
+ value: { chargedToOrganization: boolean }
40
+ }
41
+
42
+ /**
43
+ * Mock file stat result for filesystem operations.
44
+ * Provides typed methods for checking file type.
45
+ */
46
+ export interface MockStatResult {
47
+ isDirectory: () => boolean
48
+ isFile: () => boolean
49
+ }
50
+
51
+ /**
52
+ * Typed mock logger where each method is a Bun test mock.
53
+ * Useful for verifying that specific log methods were called.
54
+ */
55
+ export type MockLogger = {
56
+ [K in keyof Logger]: ReturnType<typeof mock> & Logger[K]
57
+ }
58
+
59
+ /**
60
+ * Creates a mock logger with all methods as Bun test mocks.
61
+ * Each method can be inspected for calls using mock.calls.
62
+ *
63
+ * @example
64
+ * ```typescript
65
+ * const logger = createMockLogger()
66
+ * someFunction({ logger })
67
+ * expect(logger.error.mock.calls.length).toBe(1)
68
+ * ```
69
+ */
70
+ export function createMockLogger(): MockLogger {
71
+ return {
72
+ info: mock(() => {}) as ReturnType<typeof mock> & Logger['info'],
73
+ error: mock(() => {}) as ReturnType<typeof mock> & Logger['error'],
74
+ warn: mock(() => {}) as ReturnType<typeof mock> & Logger['warn'],
75
+ debug: mock(() => {}) as ReturnType<typeof mock> & Logger['debug'],
76
+ }
77
+ }
78
+
79
+ /**
80
+ * Creates a mock stat result for filesystem testing.
81
+ *
82
+ * @param options - Configure whether the mock represents a directory or file
83
+ * @returns A MockStatResult with the specified behavior
84
+ *
85
+ * @example
86
+ * ```typescript
87
+ * const dirStat = createMockStatResult({ isDirectory: true })
88
+ * const fileStat = createMockStatResult({ isFile: true })
89
+ * ```
90
+ */
91
+ export function createMockStatResult(options: {
92
+ isDirectory?: boolean
93
+ isFile?: boolean
94
+ }): MockStatResult {
95
+ return {
96
+ isDirectory: () => options.isDirectory ?? false,
97
+ isFile: () => options.isFile ?? false,
98
+ }
99
+ }
100
+
101
+ /**
102
+ * Creates a mock credit result for billing-related tests.
103
+ *
104
+ * @param options - Configure the success state and organization charging
105
+ * @returns A MockCreditResult with the specified values
106
+ *
107
+ * @example
108
+ * ```typescript
109
+ * const successResult = createMockCreditResult({ success: true })
110
+ * const orgResult = createMockCreditResult({ success: true, chargedToOrganization: true })
111
+ * ```
112
+ */
113
+ export function createMockCreditResult(
114
+ options: {
115
+ success?: boolean
116
+ chargedToOrganization?: boolean
117
+ } = {},
118
+ ): MockCreditResult {
119
+ return {
120
+ success: options.success ?? true,
121
+ value: { chargedToOrganization: options.chargedToOrganization ?? false },
122
+ }
123
+ }