@alumbwe/anvil 1.0.20 → 1.0.21

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 +6 -2
  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,258 @@
1
+ import { describe, expect, test } from 'bun:test'
2
+ import { readFileSync, readdirSync, statSync } from 'node:fs'
3
+ import { resolve } from 'node:path'
4
+
5
+ import {
6
+ ANVIL_AI_TRAINING_NOTICE,
7
+ ANVIL_DATA_USE_GENERATED_MARKDOWN_BLOCK,
8
+ ANVIL_DATA_USE_GENERATED_MDX_BLOCK,
9
+ ANVIL_POLICY_ROLLOUT,
10
+ ANVIL_PUBLIC_DATA_USE_COPY,
11
+ renderAnvilDataUseFaqMarkdown,
12
+ renderAnvilDataUseFaqMdx,
13
+ } from '../constants/anvil-data-use'
14
+
15
+ const REPO_ROOT = resolve(import.meta.dir, '../../..')
16
+
17
+ function readRepoFile(path: string): string {
18
+ return readFileSync(resolve(REPO_ROOT, path), 'utf8')
19
+ }
20
+
21
+ function listPublicTextFiles(path: string): string[] {
22
+ const absolutePath = resolve(REPO_ROOT, path)
23
+ if (!statSync(absolutePath).isDirectory()) return [path]
24
+
25
+ return readdirSync(absolutePath).flatMap((entry) => {
26
+ const child = `${path}/${entry}`
27
+ const childPath = resolve(REPO_ROOT, child)
28
+
29
+ if (statSync(childPath).isDirectory()) return listPublicTextFiles(child)
30
+ return /\.(?:md|mdx|ts|tsx)$/.test(entry) ? [child] : []
31
+ })
32
+ }
33
+
34
+ function generatedBlock(
35
+ source: string,
36
+ markers: { start: string; end: string },
37
+ ): string {
38
+ const start = source.indexOf(markers.start)
39
+ const end = source.indexOf(markers.end, start)
40
+
41
+ expect(start).toBeGreaterThanOrEqual(0)
42
+ expect(end).toBeGreaterThan(start)
43
+
44
+ return source.slice(start, end + markers.end.length)
45
+ }
46
+
47
+ describe('public Anvil data-use copy', () => {
48
+ test('the July 23 policy rollout metadata and notice stay aligned', () => {
49
+ expect(ANVIL_POLICY_ROLLOUT).toEqual({
50
+ version: '2026-07-23',
51
+ effectiveDate: 'July 23, 2026',
52
+ lastUpdated: '07/23/2026',
53
+ noticeEndsAt: '2026-08-23T00:00:00-07:00',
54
+ notice: {
55
+ title:
56
+ 'We’ve updated our Terms and Privacy Policy, effective July 23, 2026.',
57
+ summary:
58
+ 'Prompts may be used to personalize ads, AI training applies only to labeled models or features, and usage restrictions were updated.',
59
+ },
60
+ })
61
+ })
62
+
63
+ test.each(['README.md', 'anvil/cli/release/README.md'])(
64
+ '%s matches the generated Markdown FAQ',
65
+ (path) => {
66
+ expect(
67
+ generatedBlock(
68
+ readRepoFile(path),
69
+ ANVIL_DATA_USE_GENERATED_MARKDOWN_BLOCK,
70
+ ),
71
+ ).toBe(renderAnvilDataUseFaqMarkdown())
72
+ },
73
+ )
74
+
75
+ test.each([
76
+ 'web/src/content/advanced/privacy.mdx',
77
+ 'web/src/content/help/faq.mdx',
78
+ ])('%s matches the generated MDX FAQ', (path) => {
79
+ expect(
80
+ generatedBlock(readRepoFile(path), ANVIL_DATA_USE_GENERATED_MDX_BLOCK),
81
+ ).toBe(renderAnvilDataUseFaqMdx())
82
+ })
83
+
84
+ test('the standalone landing prototype matches canonical FAQ copy', () => {
85
+ const source = readRepoFile('landing-lab/src/components/sections/Faq.tsx')
86
+
87
+ expect(source).toContain(ANVIL_PUBLIC_DATA_USE_COPY.trainingQuestion)
88
+ expect(source).toContain(ANVIL_PUBLIC_DATA_USE_COPY.trainingAnswer)
89
+ expect(source).toContain(ANVIL_PUBLIC_DATA_USE_COPY.storageQuestion)
90
+ expect(source).toContain(ANVIL_PUBLIC_DATA_USE_COPY.storageAnswer)
91
+ })
92
+
93
+ test.each([
94
+ 'anvil/web/src/lib/home-faqs.ts',
95
+ 'anvil/web/src/components/landing/sections/Faq.tsx',
96
+ 'anvil/web/src/components/landing/cloud/CloudLanding.tsx',
97
+ 'anvil/web/src/vly/components/pages/WebLandingSections.tsx',
98
+ 'anvil/web/src/lib/blog/posts/anvil-launch.ts',
99
+ 'anvil/web/src/lib/blog/posts/free-cloud-coding-agent.ts',
100
+ 'anvil/web/src/lib/blog/posts/anvil-web-launch.ts',
101
+ 'anvil/web/src/lib/blog/posts/vly-becomes-anvil-web.ts',
102
+ 'anvil/web/src/lib/blog/posts/free-antigravity-cli-coding-agent-alternative-anvil.ts',
103
+ 'anvil/web/src/lib/blog/posts/free-alternative-to-devin.ts',
104
+ 'anvil/web/src/lib/blog/posts/free-codex-cli-openai-coding-agent-alternative-anvil.ts',
105
+ 'anvil/web/src/lib/blog/posts/free-claude-code-cli-coding-agent-alternative-anvil.ts',
106
+ 'web/src/app/docs/[category]/[slug]/page.tsx',
107
+ ])('%s imports canonical data-use copy', (path) => {
108
+ expect(readRepoFile(path)).toContain('ANVIL_PUBLIC_DATA_USE_COPY')
109
+ })
110
+
111
+ test.each([
112
+ 'anvil/web/src/app/privacy-policy/page.tsx',
113
+ 'anvil/web/src/app/terms-of-service/page.tsx',
114
+ 'anvil/web/src/components/policy-update-notice.tsx',
115
+ ])('%s imports canonical policy metadata', (path) => {
116
+ expect(readRepoFile(path)).toContain('ANVIL_POLICY_ROLLOUT')
117
+ })
118
+
119
+ test('the policy update banner uses the canonical rollout copy', () => {
120
+ const source = readRepoFile(
121
+ 'anvil/web/src/components/policy-update-notice.tsx',
122
+ )
123
+
124
+ expect(source).toContain('ANVIL_POLICY_ROLLOUT.notice.title')
125
+ expect(source).toContain('ANVIL_POLICY_ROLLOUT.notice.summary')
126
+ expect(source).toContain('Review updates')
127
+ expect(source).toContain('ANVIL_POLICY_ROLLOUT.noticeEndsAt')
128
+ expect(source).toContain("'/login'")
129
+ expect(source).toContain("pathname.startsWith('/web/invite/')")
130
+ expect(source).not.toContain("'upcoming'")
131
+ })
132
+
133
+ test.each([
134
+ 'anvil/web/src/components/login/login-card.tsx',
135
+ 'anvil/web/src/app/get-started/get-started-onboarding.tsx',
136
+ 'anvil/web/src/components/creators/auth/creators-auth-page.tsx',
137
+ 'anvil/web/src/app/web/affiliate/page.tsx',
138
+ 'anvil/web/src/app/web/invite/[token]/page.tsx',
139
+ ])('%s shows the shared policy agreement notice', (path) => {
140
+ expect(readRepoFile(path)).toContain('PolicyAgreementNotice')
141
+ })
142
+
143
+ test('the shared login notice uses the requested acceptance language', () => {
144
+ const source = readRepoFile(
145
+ 'anvil/web/src/components/policy-agreement-notice.tsx',
146
+ )
147
+
148
+ expect(source).toContain('By continuing, you agree to the')
149
+ expect(source).toContain('Terms')
150
+ })
151
+
152
+ test.each([
153
+ 'anvil/web/src/app/privacy-policy/page.tsx',
154
+ 'anvil/web/src/app/terms-of-service/page.tsx',
155
+ ])('%s is updated for the July 23 rollout', (path) => {
156
+ expect(readRepoFile(path)).toContain('ANVIL_POLICY_ROLLOUT.lastUpdated')
157
+ })
158
+
159
+ test('the Privacy Policy keeps explicit training and advertising boundaries', () => {
160
+ const source = readRepoFile('anvil/web/src/app/privacy-policy/page.tsx')
161
+
162
+ expect(ANVIL_AI_TRAINING_NOTICE).toContain('AI training')
163
+ expect(source).toContain('ANVIL_AI_TRAINING_NOTICE')
164
+ expect(source).toContain('legally recognized opt-out preference')
165
+ expect(source).toContain('service providers acting on our')
166
+ expect(source).not.toContain('submitted on or after')
167
+ expect(source).not.toContain('submitted before')
168
+ expect(ANVIL_PUBLIC_DATA_USE_COPY.storageAnswer).not.toContain(
169
+ 'Starting ',
170
+ )
171
+ expect(source).toMatch(
172
+ /may not\s+use that information for their own independent purposes/,
173
+ )
174
+ expect(source).toContain('fine-tuning')
175
+ expect(source).toContain('legitimate business')
176
+ expect(source).not.toContain('CALIFORNIA_DISCLOSURES')
177
+ expect(source).not.toContain('detect and remove credentials')
178
+ expect(source).not.toContain('designed not to include raw prompts')
179
+ expect(source).not.toContain(
180
+ 'Raw prompts and messages used for advertising',
181
+ )
182
+ expect(source).not.toContain('longer-term advertising profile')
183
+
184
+ for (const vendor of [
185
+ 'Fireworks AI',
186
+ 'OpenAI',
187
+ 'OpenRouter',
188
+ 'Anthropic',
189
+ 'Convex',
190
+ 'PostHog',
191
+ 'Axiom',
192
+ 'Reddit',
193
+ ]) {
194
+ expect(source).not.toContain(vendor)
195
+ }
196
+ })
197
+
198
+ test('the Terms retain the requested consumer safeguards', () => {
199
+ const source = readRepoFile(
200
+ 'anvil/web/src/app/terms-of-service/page.tsx',
201
+ )
202
+
203
+ expect(source).toContain('AI Output and Actions')
204
+ expect(source).toContain('third-party claims')
205
+ expect(source).toContain('GREATER OF $100')
206
+ expect(source).toContain('San Francisco County')
207
+ expect(source).toContain('advance notice when required by law')
208
+ expect(source).toMatch(
209
+ /provide,\s+maintain,\s+develop,\s+evaluate,\s+improve/,
210
+ )
211
+ expect(source).toMatch(/Anvil, Inc\.\s+has/)
212
+ expect(source).not.toContain('damage or falsify Company rating')
213
+ })
214
+
215
+ test('retired privacy claims do not reappear on public surfaces', () => {
216
+ const publicPaths = [
217
+ 'README.md',
218
+ 'anvil/cli/release/README.md',
219
+ 'anvil/web/src/lib/home-faqs.ts',
220
+ 'anvil/web/src/components/landing',
221
+ 'anvil/web/src/vly/components/pages',
222
+ 'anvil/web/src/lib/blog/posts',
223
+ 'anvil/web/scripts/generate-cli-blog-posts.ts',
224
+ 'landing-lab/src',
225
+ 'web/src/content',
226
+ 'web/src/app/docs/[category]/[slug]/page.tsx',
227
+ ].flatMap(listPublicTextFiles)
228
+
229
+ const retiredClaims = [
230
+ /we (?:do not|don't) store your codebase/i,
231
+ /only collect minimal logs/i,
232
+ /we (?:do not|don't) share your (?:data|repo|code) with third parties that would train/i,
233
+ /we do not train on your data/i,
234
+ /no training on your code/i,
235
+ /your code is never used for training/i,
236
+ /logs[^.]*not shared with third parties/i,
237
+ /only use information from your current session context/i,
238
+ /privacy mode[^.]*won't store/i,
239
+ /(?:code|codebase|repo(?:sitory)?) (?:never|doesn['’]t|does not) leave (?:your|the) (?:machine|laptop)/i,
240
+ /your code stays local/i,
241
+ /no upload required/i,
242
+ /stored locally \(and nowhere else\)/i,
243
+ /no telemetry attached to your code/i,
244
+ /tracking pixel anywhere near your repo/i,
245
+ /the server is stateless/i,
246
+ /local-first[^.]*privacy/i,
247
+ ]
248
+
249
+ for (const path of publicPaths) {
250
+ const source = readRepoFile(path)
251
+ for (const retiredClaim of retiredClaims) {
252
+ if (retiredClaim.test(source)) {
253
+ throw new Error(`${path} contains retired claim ${retiredClaim}`)
254
+ }
255
+ }
256
+ }
257
+ })
258
+ })
@@ -0,0 +1,48 @@
1
+ import { describe, expect, it } from 'bun:test'
2
+
3
+ import {
4
+ MIN_GITHUB_ACCOUNT_AGE_MONTHS,
5
+ isGithubAccountOldEnoughForReferral,
6
+ } from '../constants/anvil-referral-tiers'
7
+
8
+ const NOW = Date.parse('2026-06-12T00:00:00Z')
9
+
10
+ function monthsAgo(months: number): number {
11
+ const date = new Date(NOW)
12
+ date.setUTCMonth(date.getUTCMonth() - months)
13
+ return date.getTime()
14
+ }
15
+
16
+ // The tier ladder (tiered daily message limits + watermark removal) was
17
+ // removed 2026-07-30: the limits were enforced nowhere and the deploy
18
+ // watermark is globally disabled, so the referral reward consolidated to
19
+ // daily GLM 5.2 sessions (full tier, uncapped) and the limited-tier daily
20
+ // session bonus. What remains here is the qualification machinery.
21
+
22
+ describe('isGithubAccountOldEnoughForReferral', () => {
23
+ it('accepts accounts at or beyond the age threshold', () => {
24
+ expect(
25
+ isGithubAccountOldEnoughForReferral(
26
+ monthsAgo(MIN_GITHUB_ACCOUNT_AGE_MONTHS),
27
+ NOW,
28
+ ),
29
+ ).toBe(true)
30
+ expect(isGithubAccountOldEnoughForReferral(monthsAgo(36), NOW)).toBe(true)
31
+ })
32
+
33
+ it('rejects accounts younger than the threshold', () => {
34
+ expect(
35
+ isGithubAccountOldEnoughForReferral(
36
+ monthsAgo(MIN_GITHUB_ACCOUNT_AGE_MONTHS - 1),
37
+ NOW,
38
+ ),
39
+ ).toBe(false)
40
+ expect(isGithubAccountOldEnoughForReferral(NOW, NOW)).toBe(false)
41
+ })
42
+
43
+ it('rejects missing or invalid creation dates', () => {
44
+ expect(isGithubAccountOldEnoughForReferral(null, NOW)).toBe(false)
45
+ expect(isGithubAccountOldEnoughForReferral(undefined, NOW)).toBe(false)
46
+ expect(isGithubAccountOldEnoughForReferral(Number.NaN, NOW)).toBe(false)
47
+ })
48
+ })
@@ -0,0 +1,282 @@
1
+ import { describe, expect, it } from 'bun:test'
2
+
3
+ import {
4
+ ANVIL_BUDGET_NOTICE,
5
+ ANVIL_CAPACITY_NOTICE,
6
+ ANVIL_ELEVATED_DAILY_SPEND_USD,
7
+ ANVIL_REGION_DAILY_SPEND_USD,
8
+ ANVIL_RESTRICTED_DAILY_SPEND_USD,
9
+ ANVIL_RESTRICTED_NOTICE,
10
+ anvilSpendNoticeFor,
11
+ resolveAnvilHardSpendCeiling,
12
+ resolveAnvilSpendCeiling,
13
+ } from '../constants/anvil-spend-ceilings'
14
+
15
+ describe('region ceilings', () => {
16
+ it('replaces the old flat $50 with a per-region figure', () => {
17
+ expect(resolveAnvilSpendCeiling({ accessTier: 'full' }).usd).toBe(15)
18
+ expect(resolveAnvilSpendCeiling({ accessTier: 'limited' }).usd).toBe(5)
19
+ })
20
+
21
+ it('keeps the limited region below the full one', () => {
22
+ // A limited-region account cannot reach a premium model, so the same
23
+ // dollars buy far more requests there. An identical cap would not be an
24
+ // identical constraint.
25
+ expect(ANVIL_REGION_DAILY_SPEND_USD.limited).toBeLessThan(
26
+ ANVIL_REGION_DAILY_SPEND_USD.full,
27
+ )
28
+ })
29
+ })
30
+
31
+ describe('restricted cohorts', () => {
32
+ it('holds a restricted country at the restricted ceiling', () => {
33
+ const result = resolveAnvilSpendCeiling({
34
+ accessTier: 'full',
35
+ countryCode: 'CN',
36
+ })
37
+ expect(result.usd).toBe(ANVIL_RESTRICTED_DAILY_SPEND_USD)
38
+ expect(result.reason).toBe('restricted_country')
39
+ })
40
+
41
+ it('matches the country case-insensitively', () => {
42
+ expect(
43
+ resolveAnvilSpendCeiling({ accessTier: 'full', countryCode: 'cn' })
44
+ .reason,
45
+ ).toBe('restricted_country')
46
+ })
47
+
48
+ it('leaves other countries on the region ceiling', () => {
49
+ const result = resolveAnvilSpendCeiling({
50
+ accessTier: 'full',
51
+ countryCode: 'US',
52
+ })
53
+ expect(result.usd).toBe(15)
54
+ expect(result.reason).toBe('region')
55
+ })
56
+
57
+ it('applies to an anonymizing egress', () => {
58
+ const result = resolveAnvilSpendCeiling({
59
+ accessTier: 'limited',
60
+ privacyEgress: true,
61
+ })
62
+ expect(result.usd).toBe(ANVIL_RESTRICTED_DAILY_SPEND_USD)
63
+ expect(result.reason).toBe('privacy_egress')
64
+ })
65
+
66
+ it('applies to a flagged email domain and to a third-party client', () => {
67
+ expect(
68
+ resolveAnvilSpendCeiling({
69
+ accessTier: 'full',
70
+ flaggedEmailDomain: true,
71
+ }).reason,
72
+ ).toBe('flagged_email_domain')
73
+ expect(
74
+ resolveAnvilSpendCeiling({
75
+ accessTier: 'full',
76
+ thirdPartyClient: true,
77
+ }).reason,
78
+ ).toBe('third_party_client')
79
+ })
80
+
81
+ it('is half a dollar, and below every region ceiling', () => {
82
+ expect(ANVIL_RESTRICTED_DAILY_SPEND_USD).toBe(0.5)
83
+ expect(ANVIL_RESTRICTED_DAILY_SPEND_USD).toBeLessThan(
84
+ ANVIL_REGION_DAILY_SPEND_USD.limited,
85
+ )
86
+ })
87
+
88
+ it('never blocks outright — the restricted ceiling is above zero', () => {
89
+ // A zero ceiling is a block, and a block tells the operator which signal
90
+ // caught them, at which point they rotate it. Keeping them served at a
91
+ // dollar keeps them visible to the sweeps that produce ban-grade evidence.
92
+ expect(ANVIL_RESTRICTED_DAILY_SPEND_USD).toBeGreaterThan(0)
93
+ })
94
+ })
95
+
96
+ describe('composition', () => {
97
+ it('takes the minimum, so order of rules cannot change the outcome', () => {
98
+ const result = resolveAnvilSpendCeiling({
99
+ accessTier: 'limited',
100
+ countryCode: 'SG',
101
+ privacyEgress: true,
102
+ flaggedEmailDomain: true,
103
+ thirdPartyClient: true,
104
+ trustLevelCeilingUsd: 3,
105
+ })
106
+ expect(result.usd).toBe(ANVIL_RESTRICTED_DAILY_SPEND_USD)
107
+ expect(result.applied.length).toBe(6)
108
+ })
109
+
110
+ it('can only lower, never raise', () => {
111
+ // The property that makes this safe to ship while the trust rollout is
112
+ // still observing: nothing here can hand anyone a bigger budget.
113
+ const base = resolveAnvilSpendCeiling({ accessTier: 'full' }).usd
114
+ for (const trustLevelCeilingUsd of [1, 8, 50, 90]) {
115
+ expect(
116
+ resolveAnvilSpendCeiling({
117
+ accessTier: 'full',
118
+ trustLevelCeilingUsd,
119
+ }).usd,
120
+ ).toBeLessThanOrEqual(base)
121
+ }
122
+ })
123
+
124
+ it('ignores a trust ceiling that is not being enforced', () => {
125
+ expect(
126
+ resolveAnvilSpendCeiling({
127
+ accessTier: 'full',
128
+ trustLevelCeilingUsd: null,
129
+ }).usd,
130
+ ).toBe(15)
131
+ })
132
+
133
+ it('resolves a tie to the least accusatory reason', () => {
134
+ // When the region and a restricted cohort agree on the number, "region" is
135
+ // equally true and does not imply we think something about the account.
136
+ const result = resolveAnvilSpendCeiling({
137
+ accessTier: 'limited',
138
+ flaggedEmailDomain: true,
139
+ overrides: { regionUsd: { limited: 1 }, restrictedUsd: 1 },
140
+ })
141
+ expect(result.usd).toBe(1)
142
+ expect(result.reason).toBe('region')
143
+ })
144
+ })
145
+
146
+ describe('overrides', () => {
147
+ it('lets every ceiling be raised without a deploy', () => {
148
+ const result = resolveAnvilSpendCeiling({
149
+ accessTier: 'limited',
150
+ countryCode: 'CN',
151
+ overrides: {
152
+ regionUsd: { limited: 40 },
153
+ restrictedUsd: 25,
154
+ restrictedCountries: [],
155
+ elevatedCountries: [],
156
+ },
157
+ })
158
+ expect(result.usd).toBe(40)
159
+ expect(result.reason).toBe('region')
160
+ })
161
+
162
+ it('disables the country rule on an empty list', () => {
163
+ expect(
164
+ resolveAnvilSpendCeiling({
165
+ accessTier: 'full',
166
+ countryCode: 'CN',
167
+ overrides: { restrictedCountries: [] },
168
+ }).reason,
169
+ ).toBe('region')
170
+ })
171
+ })
172
+
173
+ describe('elevated countries', () => {
174
+ it('holds an elevated country between the region and restricted ceilings', () => {
175
+ const result = resolveAnvilSpendCeiling({
176
+ accessTier: 'full',
177
+ countryCode: 'SG',
178
+ })
179
+ expect(result.usd).toBe(ANVIL_ELEVATED_DAILY_SPEND_USD)
180
+ expect(result.reason).toBe('elevated_country')
181
+ expect(result.usd).toBeGreaterThan(ANVIL_RESTRICTED_DAILY_SPEND_USD)
182
+ expect(result.usd).toBeLessThan(ANVIL_REGION_DAILY_SPEND_USD.full)
183
+ })
184
+
185
+ it('does not cut a LIVE session — no hard cap, like the region ceilings', () => {
186
+ // The whole point of $5 rather than $0.50 is that it is a budget, not a
187
+ // suspicion. Applying the 2x hard cut here would interrupt an ordinary
188
+ // Singaporean developer mid-thought, which is the error this tier exists
189
+ // to stop making.
190
+ const ceiling = resolveAnvilSpendCeiling({
191
+ accessTier: 'full',
192
+ countryCode: 'SG',
193
+ })
194
+ expect(resolveAnvilHardSpendCeiling(ceiling)).toBeNull()
195
+ })
196
+
197
+ it('still loses to a restricted cohort the account is also in', () => {
198
+ // Composition by minimum has to keep working: an SG account on a VPN is
199
+ // priced by the VPN, not by the softer geography.
200
+ const result = resolveAnvilSpendCeiling({
201
+ accessTier: 'full',
202
+ countryCode: 'SG',
203
+ privacyEgress: true,
204
+ })
205
+ expect(result.usd).toBe(ANVIL_RESTRICTED_DAILY_SPEND_USD)
206
+ expect(result.reason).toBe('privacy_egress')
207
+ })
208
+
209
+ it('resolves a tie with the region ceiling to `region`', () => {
210
+ // A limited-tier account in an elevated country sees $5 from both rules.
211
+ // The tie must land on the reason that implies nothing about the account.
212
+ const result = resolveAnvilSpendCeiling({
213
+ accessTier: 'limited',
214
+ countryCode: 'SG',
215
+ })
216
+ expect(result.usd).toBe(5)
217
+ expect(result.reason).toBe('region')
218
+ })
219
+ })
220
+
221
+ describe('unverified egress', () => {
222
+ it('prices an unresolved escalation at the restricted ceiling', () => {
223
+ // A provider outage must not be the cheapest way to buy a bigger budget.
224
+ const result = resolveAnvilSpendCeiling({
225
+ accessTier: 'full',
226
+ unverifiedEgress: true,
227
+ })
228
+ expect(result.usd).toBe(ANVIL_RESTRICTED_DAILY_SPEND_USD)
229
+ expect(result.reason).toBe('unverified_egress')
230
+ })
231
+
232
+ it('applies the hard multiplier, like the other restricted cohorts', () => {
233
+ const ceiling = resolveAnvilSpendCeiling({
234
+ accessTier: 'full',
235
+ unverifiedEgress: true,
236
+ })
237
+ expect(resolveAnvilHardSpendCeiling(ceiling, 2)).toBe(1)
238
+ })
239
+ })
240
+
241
+ describe('refusal copy', () => {
242
+ it('gives a plain allowance no abuse framing', () => {
243
+ for (const reason of ['region', 'elevated_country', 'trust_level']) {
244
+ const copy = anvilSpendNoticeFor(reason)
245
+ expect(copy).toBe(ANVIL_BUDGET_NOTICE)
246
+ expect(copy).not.toContain('abuse')
247
+ // The words that turn a cap into a verdict on the person, and the ones
248
+ // support tickets come back quoting.
249
+ expect(copy.toLowerCase()).not.toContain('limited')
250
+ expect(copy.toLowerCase()).not.toContain('restricted')
251
+ expect(copy.toLowerCase()).not.toContain('blocked')
252
+ }
253
+ })
254
+
255
+ it('keeps naming the cause SET for the restricted cohorts', () => {
256
+ for (const reason of [
257
+ 'privacy_egress',
258
+ 'restricted_country',
259
+ 'flagged_email_domain',
260
+ 'unverified_egress',
261
+ ]) {
262
+ expect(anvilSpendNoticeFor(reason)).toBe(ANVIL_RESTRICTED_NOTICE)
263
+ }
264
+ })
265
+
266
+ it('keeps third_party_client cause-blind so the detector stays unnamed', () => {
267
+ expect(anvilSpendNoticeFor('third_party_client')).toBe(
268
+ ANVIL_CAPACITY_NOTICE,
269
+ )
270
+ })
271
+
272
+ it('publishes no dollar figure in any refusal', () => {
273
+ // A published cap is a published pacing instruction.
274
+ for (const copy of [
275
+ ANVIL_BUDGET_NOTICE,
276
+ ANVIL_CAPACITY_NOTICE,
277
+ ANVIL_RESTRICTED_NOTICE,
278
+ ]) {
279
+ expect(copy).not.toMatch(/\$|\d/)
280
+ }
281
+ })
282
+ })