@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,298 @@
1
+ import os from 'os'
2
+ import path from 'path'
3
+
4
+ import { describe, expect, it } from 'bun:test'
5
+
6
+ import {
7
+ flattenTree,
8
+ getAllPathsWithDirectories,
9
+ getProjectFileTree,
10
+ isFileIgnored,
11
+ } from '../project-file-tree'
12
+ import { createMockFs } from '../testing/mocks/filesystem'
13
+
14
+ /**
15
+ * Builds a mock fs from relative file paths under `root`, inferring
16
+ * intermediate directories.
17
+ */
18
+ function createFsWithFiles(root: string, files: string[]) {
19
+ const fileRecords: Record<string, string> = {}
20
+ const dirChildren: Record<string, Set<string>> = { [root]: new Set() }
21
+ for (const file of files) {
22
+ fileRecords[path.join(root, file)] = ''
23
+ let child = path.join(root, file)
24
+ let dir = path.dirname(child)
25
+ while (true) {
26
+ ;(dirChildren[dir] ??= new Set()).add(path.basename(child))
27
+ if (dir === root) break
28
+ child = dir
29
+ dir = path.dirname(dir)
30
+ }
31
+ }
32
+ return createMockFs({
33
+ files: fileRecords,
34
+ directories: Object.fromEntries(
35
+ Object.entries(dirChildren).map(([dir, names]) => [dir, [...names]]),
36
+ ),
37
+ })
38
+ }
39
+
40
+ describe('getProjectFileTree', () => {
41
+ it('scans the home directory shallowly instead of returning nothing', async () => {
42
+ const home = os.homedir()
43
+ const fs = createFsWithFiles(home, [
44
+ 'top-level.txt',
45
+ 'proj/README.md',
46
+ 'proj/docs/guide.md',
47
+ 'proj/docs/deep/too-deep.md',
48
+ '.hidden/secret.txt',
49
+ ])
50
+
51
+ const tree = await getProjectFileTree({ projectRoot: home, fs })
52
+ const paths = getAllPathsWithDirectories(tree).map((p) => p.path)
53
+
54
+ // Files up to 3 levels deep are included
55
+ expect(paths).toContain('top-level.txt')
56
+ expect(paths).toContain(path.join('proj', 'README.md'))
57
+ expect(paths).toContain(path.join('proj', 'docs', 'guide.md'))
58
+ // The depth-3 directory shows up as a node, but its contents do not
59
+ expect(paths).toContain(path.join('proj', 'docs', 'deep'))
60
+ expect(paths).not.toContain(
61
+ path.join('proj', 'docs', 'deep', 'too-deep.md'),
62
+ )
63
+ // Dotfiles are still excluded
64
+ expect(paths.some((p) => p.includes('.hidden'))).toBe(false)
65
+ })
66
+
67
+ it('scans regular project roots without a depth limit', async () => {
68
+ const root = '/repo'
69
+ const fs = createFsWithFiles(root, ['a/b/c/d/e.txt'])
70
+
71
+ const tree = await getProjectFileTree({ projectRoot: root, fs })
72
+ const paths = getAllPathsWithDirectories(tree).map((p) => p.path)
73
+
74
+ expect(paths).toContain(path.join('a', 'b', 'c', 'd', 'e.txt'))
75
+ })
76
+
77
+ it('records file paths with forward slashes', async () => {
78
+ // `ignore` and the glob patterns the model writes are both POSIX-only, and
79
+ // `ignore` answers false for a backslash path rather than throwing. Storing
80
+ // anything but forward slashes here makes nested rules stop pruning on
81
+ // Windows, which is how build output ends up eating the maxFiles budget.
82
+ const root = '/repo'
83
+ const fs = createFsWithFiles(root, ['app/src/main/Inventory.kt'])
84
+
85
+ const tree = await getProjectFileTree({ projectRoot: root, fs })
86
+
87
+ const filePaths = flattenTree(tree).map((node) => node.filePath)
88
+ expect(filePaths).toEqual(['app/src/main/Inventory.kt'])
89
+ })
90
+
91
+ it('prunes directories ignored by a rule in a nested .gitignore', async () => {
92
+ const root = '/repo'
93
+ const fs = createFsWithFiles(root, [
94
+ 'app/.gitignore',
95
+ 'app/build/output.class',
96
+ 'app/src/Inventory.kt',
97
+ ])
98
+ ;(fs.readFile as any).mockImplementation(async (filePath: string) =>
99
+ String(filePath).endsWith('.gitignore') ? 'build/\n' : '',
100
+ )
101
+
102
+ const tree = await getProjectFileTree({ projectRoot: root, fs })
103
+
104
+ const filePaths = flattenTree(tree).map((node) => node.filePath)
105
+ expect(filePaths).toContain('app/src/Inventory.kt')
106
+ expect(filePaths).not.toContain('app/build/output.class')
107
+ })
108
+
109
+ it('keeps nested rules scoped to their own directory even when its name contains glob syntax', async () => {
110
+ const root = '/repo'
111
+ const fs = createFsWithFiles(root, [
112
+ '[4K- HDR]/.gitignore',
113
+ '[4K- HDR]/x/logs',
114
+ '[4K- HDR]/keep.ts',
115
+ 'a/x/logs',
116
+ ])
117
+ ;(fs.readFile as any).mockImplementation(async (filePath: string) =>
118
+ String(filePath).endsWith('.gitignore') ? 'logs\n' : '',
119
+ )
120
+
121
+ const filePaths = flattenTree(
122
+ await getProjectFileTree({ projectRoot: root, fs }),
123
+ ).map((node) => node.filePath)
124
+
125
+ expect(filePaths).toContain('[4K- HDR]/keep.ts')
126
+ expect(filePaths).not.toContain('[4K- HDR]/x/logs')
127
+ expect(filePaths).toContain('a/x/logs')
128
+ })
129
+
130
+ it('keeps anchored rules in a nested .gitignore anchored to that directory', async () => {
131
+ const root = '/repo'
132
+ const fs = createFsWithFiles(root, [
133
+ 'pkg/.gitignore',
134
+ 'pkg/dist/a.js',
135
+ 'pkg/sub/dist/b.js',
136
+ ])
137
+ ;(fs.readFile as any).mockImplementation(async (filePath: string) =>
138
+ String(filePath) === path.join(root, 'pkg', '.gitignore')
139
+ ? '/dist\n'
140
+ : '',
141
+ )
142
+
143
+ const filePaths = flattenTree(
144
+ await getProjectFileTree({ projectRoot: root, fs }),
145
+ ).map((node) => node.filePath)
146
+
147
+ expect(filePaths).not.toContain('pkg/dist/a.js')
148
+ expect(filePaths).toContain('pkg/sub/dist/b.js')
149
+ })
150
+
151
+ it('does not let a nested negation re-include a file under a directory excluded by an ancestor', async () => {
152
+ const root = '/repo'
153
+ const fs = createFsWithFiles(root, [
154
+ '.gitignore',
155
+ 'pkg/.gitignore',
156
+ 'pkg/dist/index.css',
157
+ 'pkg/src/a.ts',
158
+ ])
159
+ ;(fs.readFile as any).mockImplementation(async (filePath: string) => {
160
+ const p = String(filePath)
161
+ if (p === path.join(root, '.gitignore')) return 'dist/\n'
162
+ if (p === path.join(root, 'pkg', '.gitignore'))
163
+ return '!dist/index.css\n'
164
+ return ''
165
+ })
166
+
167
+ const filePaths = flattenTree(
168
+ await getProjectFileTree({ projectRoot: root, fs }),
169
+ ).map((node) => node.filePath)
170
+
171
+ expect(filePaths).toContain('pkg/src/a.ts')
172
+ expect(filePaths).not.toContain('pkg/dist/index.css')
173
+ })
174
+
175
+ it('skips ignore rules that cannot be compiled without dropping the rest of the file', async () => {
176
+ const root = '/repo'
177
+ const fs = createFsWithFiles(root, [
178
+ '.gitignore',
179
+ 'build/out.js',
180
+ 'src/main.ts',
181
+ ])
182
+ ;(fs.readFile as any).mockImplementation(async (filePath: string) =>
183
+ String(filePath).endsWith('.gitignore') ? '[~-a]\nbuild/\n' : '',
184
+ )
185
+
186
+ const filePaths = flattenTree(
187
+ await getProjectFileTree({ projectRoot: root, fs }),
188
+ ).map((node) => node.filePath)
189
+
190
+ expect(filePaths).toContain('src/main.ts')
191
+ expect(filePaths).not.toContain('build/out.js')
192
+ })
193
+ })
194
+
195
+ describe('isFileIgnored', () => {
196
+ it('can exempt env templates from defaults while preserving project rules', async () => {
197
+ const root = '/repo'
198
+ const withoutProjectRule = createFsWithFiles(root, ['.env.example'])
199
+
200
+ expect(
201
+ await isFileIgnored({
202
+ filePath: '.env.example',
203
+ projectRoot: root,
204
+ fs: withoutProjectRule,
205
+ }),
206
+ ).toBe(true)
207
+ expect(
208
+ await isFileIgnored({
209
+ filePath: '.env.example',
210
+ projectRoot: root,
211
+ fs: withoutProjectRule,
212
+ allowEnvTemplate: true,
213
+ }),
214
+ ).toBe(false)
215
+ expect(
216
+ await isFileIgnored({
217
+ filePath: '.env.local',
218
+ projectRoot: root,
219
+ fs: withoutProjectRule,
220
+ allowEnvTemplate: true,
221
+ }),
222
+ ).toBe(true)
223
+
224
+ const withProjectRule = createFsWithFiles(root, [
225
+ '.gitignore',
226
+ '.env.example',
227
+ ])
228
+ ;(withProjectRule.readFile as any).mockImplementation(
229
+ async (filePath: string) =>
230
+ String(filePath) === path.join(root, '.gitignore')
231
+ ? '.env.example\n'
232
+ : '',
233
+ )
234
+
235
+ expect(
236
+ await isFileIgnored({
237
+ filePath: '.env.example',
238
+ projectRoot: root,
239
+ fs: withProjectRule,
240
+ allowEnvTemplate: true,
241
+ }),
242
+ ).toBe(true)
243
+ })
244
+
245
+ it('fails closed when an env template project rule is unreadable', async () => {
246
+ const root = '/repo'
247
+ const fs = createFsWithFiles(root, ['.gitignore', '.env.example'])
248
+ ;(fs.readFile as any).mockImplementation(async (filePath: string) => {
249
+ if (String(filePath) === path.join(root, '.gitignore')) {
250
+ const error = new Error('permission denied') as Error & {
251
+ code: string
252
+ }
253
+ error.code = 'EACCES'
254
+ throw error
255
+ }
256
+ return 'API_KEY=example'
257
+ })
258
+
259
+ expect(
260
+ await isFileIgnored({
261
+ filePath: '.env.example',
262
+ projectRoot: root,
263
+ fs,
264
+ allowEnvTemplate: true,
265
+ }),
266
+ ).toBe(true)
267
+ })
268
+
269
+ it('reads ignore rules at the filesystem root without looping', async () => {
270
+ const root = path.parse(process.cwd()).root
271
+ const fs = createMockFs({
272
+ files: { [path.join(root, '.gitignore')]: 'readme.txt\n' },
273
+ })
274
+
275
+ expect(
276
+ await isFileIgnored({ filePath: 'readme.txt', projectRoot: root, fs }),
277
+ ).toBe(true)
278
+ })
279
+
280
+ it('keeps default-ignored directories excluded despite a root negation', async () => {
281
+ const root = '/repo'
282
+ const fs = createFsWithFiles(root, [
283
+ '.gitignore',
284
+ 'node_modules/pkg/README.md',
285
+ ])
286
+ ;(fs.readFile as any).mockImplementation(async (filePath: string) =>
287
+ String(filePath) === path.join(root, '.gitignore') ? '!*.md\n' : '',
288
+ )
289
+
290
+ expect(
291
+ await isFileIgnored({
292
+ filePath: 'node_modules/pkg/README.md',
293
+ projectRoot: root,
294
+ fs,
295
+ }),
296
+ ).toBe(true)
297
+ })
298
+ })
@@ -0,0 +1,116 @@
1
+ /**
2
+ * The provisioned `-max` tiers.
3
+ *
4
+ * These are granted per account rather than picked, so the invariant is the
5
+ * opposite of a normal model's: every catalog must NOT contain them. A client
6
+ * that rendered one would offer a row most accounts cannot run, and the
7
+ * request would fail at admission rather than at the picker — the confusing
8
+ * shape a hidden tier always takes when it leaks into a selectable list.
9
+ *
10
+ * Each tier is pinned to exactly one root, like every other free-mode model,
11
+ * and each root is pinned to exactly that tier: a root that also accepted the
12
+ * base model would be a second, unmetered door onto it — which is what the
13
+ * retired `base2-free-glm-crof` route turned out to be.
14
+ */
15
+ import { describe, expect, test } from 'bun:test'
16
+
17
+ import {
18
+ FREE_MODE_AGENT_MODELS,
19
+ ANVIL_CLI_BASE3_AGENT_ID_BY_MODEL,
20
+ ANVIL_ROOT_AGENT_IDS,
21
+ ANVIL_WEB_BASE3_AGENT_ID_BY_MODEL,
22
+ isFreeModeAllowedAgentModel,
23
+ } from '../constants/free-agents'
24
+ import {
25
+ ANVIL_DEEPSEEK_V4_FLASH_MAX_MODEL_ID,
26
+ ANVIL_DEEPSEEK_V4_FLASH_MODEL_ID,
27
+ ANVIL_DEEPSEEK_V4_PRO_MAX_MODEL_ID,
28
+ ANVIL_DEEPSEEK_V4_PRO_MODEL_ID,
29
+ ANVIL_GPT_5_6_LUNA_MAX_MODEL_ID,
30
+ ANVIL_GPT_5_6_LUNA_MODEL_ID,
31
+ ANVIL_MODELS,
32
+ ANVIL_PROVISIONED_MODELS,
33
+ ANVIL_WEB_ALL_MODELS,
34
+ ANVIL_WEB_MODELS,
35
+ ANVIL_WEB_PREMIUM_MODEL_IDS,
36
+ ANVIL_WEB_STANDARD_MODEL_IDS,
37
+ SUPPORTED_ANVIL_MODELS,
38
+ resolveSupportedAnvilModel,
39
+ } from '../constants/anvil-models'
40
+
41
+ /** tier -> the root that runs it, and the base model it extends. */
42
+ const TIERS: Array<{ id: string; root: string; base: string }> = [
43
+ {
44
+ id: ANVIL_DEEPSEEK_V4_PRO_MAX_MODEL_ID,
45
+ root: 'base2-free-deepseek-pro-max',
46
+ base: ANVIL_DEEPSEEK_V4_PRO_MODEL_ID,
47
+ },
48
+ {
49
+ id: ANVIL_DEEPSEEK_V4_FLASH_MAX_MODEL_ID,
50
+ root: 'base2-free-deepseek-flash-max',
51
+ base: ANVIL_DEEPSEEK_V4_FLASH_MODEL_ID,
52
+ },
53
+ {
54
+ id: ANVIL_GPT_5_6_LUNA_MAX_MODEL_ID,
55
+ root: 'base2-free-luna-max',
56
+ base: ANVIL_GPT_5_6_LUNA_MODEL_ID,
57
+ },
58
+ ]
59
+
60
+ describe('provisioned tiers are never offered from a catalog', () => {
61
+ test('the tier list is not empty', () => {
62
+ // Floor: an empty list makes every case below vacuous.
63
+ expect(ANVIL_PROVISIONED_MODELS.length).toBe(TIERS.length)
64
+ })
65
+
66
+ const catalogs: Array<[string, readonly string[]]> = [
67
+ ['SUPPORTED_ANVIL_MODELS', SUPPORTED_ANVIL_MODELS.map((m) => m.id)],
68
+ ['ANVIL_MODELS', ANVIL_MODELS.map((m) => m.id)],
69
+ ['ANVIL_WEB_MODELS', ANVIL_WEB_MODELS.map((m) => m.id)],
70
+ ['ANVIL_WEB_ALL_MODELS', ANVIL_WEB_ALL_MODELS.map((m) => m.id)],
71
+ ['ANVIL_WEB_PREMIUM_MODEL_IDS', [...ANVIL_WEB_PREMIUM_MODEL_IDS]],
72
+ ['ANVIL_WEB_STANDARD_MODEL_IDS', [...ANVIL_WEB_STANDARD_MODEL_IDS]],
73
+ ]
74
+
75
+ test.each(catalogs)('%s omits every provisioned tier', (_name, ids) => {
76
+ for (const tier of TIERS) expect(ids).not.toContain(tier.id)
77
+ })
78
+
79
+ test('a saved preference for a tier falls back to a pickable model', () => {
80
+ for (const tier of TIERS) {
81
+ expect(resolveSupportedAnvilModel(tier.id)).not.toBe(tier.id)
82
+ }
83
+ })
84
+
85
+ test('no base3 root map resolves a provisioned tier', () => {
86
+ for (const tier of TIERS) {
87
+ expect(ANVIL_WEB_BASE3_AGENT_ID_BY_MODEL[tier.id]).toBeUndefined()
88
+ expect(ANVIL_CLI_BASE3_AGENT_ID_BY_MODEL[tier.id]).toBeUndefined()
89
+ }
90
+ })
91
+ })
92
+
93
+ describe('each tier is pinned to exactly one root', () => {
94
+ test.each(TIERS)('$id runs on $root and nothing else', (tier) => {
95
+ expect(FREE_MODE_AGENT_MODELS[tier.root]?.has(tier.id)).toBe(true)
96
+ expect(isFreeModeAllowedAgentModel(tier.root, tier.id)).toBe(true)
97
+ })
98
+
99
+ test.each(TIERS)('$root cannot run the base model $base', (tier) => {
100
+ // A second, unmetered door onto the base model otherwise.
101
+ expect(isFreeModeAllowedAgentModel(tier.root, tier.base)).toBe(false)
102
+ })
103
+
104
+ test.each(TIERS)('$root is a registered root agent', (tier) => {
105
+ // A root absent from this list is treated as a subagent, so a top-level
106
+ // request on it fails the hierarchy check instead of running.
107
+ expect(ANVIL_ROOT_AGENT_IDS).toContain(tier.root)
108
+ })
109
+
110
+ test.each(TIERS)('the base model does not run on $root', (tier) => {
111
+ const rootForBase = Object.entries(FREE_MODE_AGENT_MODELS).filter(
112
+ ([agentId, models]) => models.has(tier.base) && agentId === tier.root,
113
+ )
114
+ expect(rootForBase).toEqual([])
115
+ })
116
+ })
@@ -0,0 +1,167 @@
1
+ import { describe, expect, test } from 'bun:test'
2
+
3
+ import type { AnvilModelOption } from '../constants/anvil-models'
4
+ import {
5
+ clampReasoningEffort,
6
+ reasoningEffortRank,
7
+ REASONING_EFFORTS,
8
+ type ReasoningEffort,
9
+ } from '../constants/reasoning-effort'
10
+ import {
11
+ EFFORTS_THROUGH_HIGH,
12
+ EFFORTS_THROUGH_MAX,
13
+ EFFORTS_THROUGH_XHIGH,
14
+ ANVIL_DEEPSEEK_V4_FLASH_MODEL_ID,
15
+ ANVIL_DEEPSEEK_V4_PRO_MODEL_ID,
16
+ ANVIL_FABLE_5_MODEL_ID,
17
+ ANVIL_GLM_V52_MODEL_ID,
18
+ ANVIL_GPT_5_6_LUNA_MODEL_ID,
19
+ ANVIL_KIMI_K3_ECO_MODEL_ID,
20
+ ANVIL_MIMO_V25_MODEL_ID,
21
+ ANVIL_MINIMAX_M3_MODEL_ID,
22
+ ANVIL_MUSE_SPARK_12_CONTRIBUTOR_MODEL_ID,
23
+ ANVIL_WEB_ALL_MODELS,
24
+ getAnvilModelDefaultEffort,
25
+ getAnvilModelEfforts,
26
+ getAnvilModelReasoningEffort,
27
+ resolveAnvilReasoningEffort,
28
+ SUPPORTED_ANVIL_MODELS,
29
+ } from '../constants/anvil-models'
30
+
31
+ describe('the shared effort ladder', () => {
32
+ test('is ordered ascending, because the clamp does index arithmetic on it', () => {
33
+ // clampReasoningEffort answers "the most this model allows, but no more
34
+ // than was asked". That is only meaningful if position implies magnitude,
35
+ // so a reorder here would silently invert every clamp in the product.
36
+ expect(REASONING_EFFORTS).toEqual([
37
+ 'minimal',
38
+ 'low',
39
+ 'medium',
40
+ 'high',
41
+ 'xhigh',
42
+ 'max',
43
+ 'ultra',
44
+ ])
45
+ expect(reasoningEffortRank('low')).toBeLessThan(reasoningEffortRank('high'))
46
+ expect(reasoningEffortRank('high')).toBeLessThan(
47
+ reasoningEffortRank('xhigh'),
48
+ )
49
+ })
50
+
51
+ test('clamps DOWN to the ceiling rather than falling back to a default', () => {
52
+ // The distinction that matters on a reroute: a user on xhigh whose request
53
+ // lands on a model topping out at high should get high — the closest thing
54
+ // to what they chose — not that model's default, which could be lower.
55
+ expect(clampReasoningEffort('xhigh', EFFORTS_THROUGH_HIGH, 'low')).toBe(
56
+ 'high',
57
+ )
58
+ expect(clampReasoningEffort('ultra', EFFORTS_THROUGH_XHIGH, 'low')).toBe(
59
+ 'xhigh',
60
+ )
61
+ // Exactly on a rung is that rung.
62
+ expect(clampReasoningEffort('medium', EFFORTS_THROUGH_HIGH, 'high')).toBe(
63
+ 'medium',
64
+ )
65
+ // Nothing recognizable asked for: the caller's fallback, not a guess.
66
+ expect(clampReasoningEffort(undefined, EFFORTS_THROUGH_HIGH, 'high')).toBe(
67
+ 'high',
68
+ )
69
+ expect(clampReasoningEffort('bogus', EFFORTS_THROUGH_HIGH, 'high')).toBe(
70
+ 'high',
71
+ )
72
+ // Below everything on offer: the least of them, never nothing.
73
+ expect(clampReasoningEffort('low', ['high', 'xhigh'], 'xhigh')).toBe('high')
74
+ })
75
+ })
76
+
77
+ // `as const satisfies AnvilModelOption` gives each row a narrow literal
78
+ // type, so the union has no `efforts` property at all unless every member
79
+ // declares one. Widening once here keeps the invariants readable.
80
+ const ALL_ROWS: readonly AnvilModelOption[] = [
81
+ ...SUPPORTED_ANVIL_MODELS,
82
+ ...ANVIL_WEB_ALL_MODELS,
83
+ ]
84
+
85
+ describe('per-model effort ladders', () => {
86
+ test('every ladder contains its default', () => {
87
+ for (const model of ALL_ROWS) {
88
+ if (!model.efforts?.length) continue
89
+ const dflt = getAnvilModelDefaultEffort(model.id)!
90
+ expect({
91
+ id: model.id,
92
+ containsDefault: model.efforts.includes(dflt),
93
+ }).toEqual({ id: model.id, containsDefault: true })
94
+ }
95
+ })
96
+
97
+ test('every ladder rung is a rung of the shared vocabulary', () => {
98
+ for (const model of ALL_ROWS) {
99
+ for (const effort of model.efforts ?? []) {
100
+ expect(REASONING_EFFORTS).toContain(effort)
101
+ }
102
+ }
103
+ })
104
+
105
+ test('Muse Spark and Luna expose their complete native ladders', () => {
106
+ expect(getAnvilModelEfforts(ANVIL_MUSE_SPARK_12_CONTRIBUTOR_MODEL_ID)).toEqual(
107
+ EFFORTS_THROUGH_XHIGH,
108
+ )
109
+ expect(getAnvilModelEfforts(ANVIL_GPT_5_6_LUNA_MODEL_ID)).toEqual(
110
+ EFFORTS_THROUGH_MAX,
111
+ )
112
+ expect(
113
+ resolveAnvilReasoningEffort(ANVIL_MUSE_SPARK_12_CONTRIBUTOR_MODEL_ID, undefined),
114
+ ).toBe('xhigh')
115
+ expect(
116
+ resolveAnvilReasoningEffort(ANVIL_GPT_5_6_LUNA_MODEL_ID, undefined),
117
+ ).toBe('high')
118
+ })
119
+
120
+ test('Claude Fable 5 exposes every enabled effort', () => {
121
+ expect(getAnvilModelEfforts(ANVIL_FABLE_5_MODEL_ID)).toEqual(
122
+ EFFORTS_THROUGH_MAX,
123
+ )
124
+ expect(getAnvilModelDefaultEffort(ANVIL_FABLE_5_MODEL_ID)).toBe(
125
+ 'high',
126
+ )
127
+ })
128
+
129
+ test('DeepSeek exposes the three native V4 efforts on both models', () => {
130
+ // One ladder since the Pro 08/13 GA build: DeepSeek documents the same
131
+ // requested→actual mapping for flash and pro, and low is a real template on
132
+ // both. Medium is not, on either, so it must not appear as a rung.
133
+ for (const id of [
134
+ ANVIL_DEEPSEEK_V4_PRO_MODEL_ID,
135
+ ANVIL_DEEPSEEK_V4_FLASH_MODEL_ID,
136
+ ]) {
137
+ expect(getAnvilModelEfforts(id)).toEqual(['low', 'high', 'max'])
138
+ expect(resolveAnvilReasoningEffort(id, undefined)).toBe('high')
139
+ expect(getAnvilModelReasoningEffort(id)).toBe('high')
140
+ expect(resolveAnvilReasoningEffort(id, 'medium')).toBe('high')
141
+ expect(resolveAnvilReasoningEffort(id, 'max')).toBe('max')
142
+ expect(resolveAnvilReasoningEffort(id, 'low')).toBe('low')
143
+ }
144
+ })
145
+
146
+ test('binary, adaptive, and ignored controls do not masquerade as ladders', () => {
147
+ for (const id of [
148
+ ANVIL_MINIMAX_M3_MODEL_ID,
149
+ ANVIL_MIMO_V25_MODEL_ID,
150
+ ANVIL_GLM_V52_MODEL_ID,
151
+ ANVIL_KIMI_K3_ECO_MODEL_ID,
152
+ ]) {
153
+ expect(getAnvilModelEfforts(id)).toBeNull()
154
+ expect(resolveAnvilReasoningEffort(id, 'low')).toBeNull()
155
+ }
156
+ expect(resolveAnvilReasoningEffort('some/unknown-model', 'high')).toBeNull()
157
+ })
158
+
159
+ test('a dated provider snapshot resolves like the undated id', () => {
160
+ expect(
161
+ resolveAnvilReasoningEffort(
162
+ `${ANVIL_MUSE_SPARK_12_CONTRIBUTOR_MODEL_ID}-20260901`,
163
+ 'low',
164
+ ),
165
+ ).toBe('low')
166
+ })
167
+ })