@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.
- package/package.json +74 -70
- package/src/agents/bundled-agents.generated.ts +4 -4
- package/src/chat.tsx +1703 -1698
- package/src/cli-args.ts +134 -134
- package/src/components/status-bar.tsx +331 -313
- package/src/hooks/helpers/send-message.ts +663 -654
- package/src/hooks/use-send-message.ts +806 -773
- package/src/index.tsx +473 -473
- package/src/state/chat-store.ts +553 -544
- package/src/utils/create-run-config.ts +121 -121
- package/src/utils/format-compact-number.ts +37 -0
- package/vendor/@anvil/common/package.json +27 -0
- package/vendor/@anvil/common/src/__tests__/agent-validation.test.ts +846 -0
- package/vendor/@anvil/common/src/__tests__/anvil-model-availability.test.ts +101 -0
- package/vendor/@anvil/common/src/__tests__/anvil-models.test.ts +1408 -0
- package/vendor/@anvil/common/src/__tests__/anvil-public-data-use-copy.test.ts +258 -0
- package/vendor/@anvil/common/src/__tests__/anvil-referral-tiers.test.ts +48 -0
- package/vendor/@anvil/common/src/__tests__/anvil-spend-ceilings.test.ts +282 -0
- package/vendor/@anvil/common/src/__tests__/anvil-trust.test.ts +526 -0
- package/vendor/@anvil/common/src/__tests__/deepseek-direct.test.ts +68 -0
- package/vendor/@anvil/common/src/__tests__/disposable-email.test.ts +132 -0
- package/vendor/@anvil/common/src/__tests__/dynamic-agent-template-schema.test.ts +422 -0
- package/vendor/@anvil/common/src/__tests__/env-ci.test.ts +167 -0
- package/vendor/@anvil/common/src/__tests__/env-process.test.ts +145 -0
- package/vendor/@anvil/common/src/__tests__/foreign-client-shipped-agents.test.ts +234 -0
- package/vendor/@anvil/common/src/__tests__/foreign-client-signals.test.ts +379 -0
- package/vendor/@anvil/common/src/__tests__/free-agents.test.ts +807 -0
- package/vendor/@anvil/common/src/__tests__/gravity-capi.test.ts +154 -0
- package/vendor/@anvil/common/src/__tests__/handlesteps-parsing.test.ts +246 -0
- package/vendor/@anvil/common/src/__tests__/kimi-k3-god-only.test.ts +77 -0
- package/vendor/@anvil/common/src/__tests__/model-config.test.ts +89 -0
- package/vendor/@anvil/common/src/__tests__/project-file-tree.test.ts +298 -0
- package/vendor/@anvil/common/src/__tests__/provisioned-model-tiers.test.ts +116 -0
- package/vendor/@anvil/common/src/__tests__/reasoning-effort.test.ts +167 -0
- package/vendor/@anvil/common/src/__tests__/reddit-capi.test.ts +132 -0
- package/vendor/@anvil/common/src/__tests__/response-ad-positions.test.ts +72 -0
- package/vendor/@anvil/common/src/__tests__/user-state.test.ts +30 -0
- package/vendor/@anvil/common/src/actions.ts +215 -0
- package/vendor/@anvil/common/src/analytics-core.ts +69 -0
- package/vendor/@anvil/common/src/analytics.ts +93 -0
- package/vendor/@anvil/common/src/api-keys/constants.ts +26 -0
- package/vendor/@anvil/common/src/browser-actions.ts +413 -0
- package/vendor/@anvil/common/src/constants/__tests__/anvil-onboarding-gate.test.ts +63 -0
- package/vendor/@anvil/common/src/constants/__tests__/anvil-onboarding.test.ts +246 -0
- package/vendor/@anvil/common/src/constants/__tests__/cf-worker-signals.test.ts +106 -0
- package/vendor/@anvil/common/src/constants/agents.ts +99 -0
- package/vendor/@anvil/common/src/constants/analytics-events.ts +435 -0
- package/vendor/@anvil/common/src/constants/anthropic.ts +73 -0
- package/vendor/@anvil/common/src/constants/anvil-data-use.ts +81 -0
- package/vendor/@anvil/common/src/constants/anvil-errors.ts +7 -0
- package/vendor/@anvil/common/src/constants/anvil-gemini-thinker.ts +21 -0
- package/vendor/@anvil/common/src/constants/anvil-model-ids.ts +11 -0
- package/vendor/@anvil/common/src/constants/anvil-models.ts +2130 -0
- package/vendor/@anvil/common/src/constants/anvil-onboarding-gate.ts +55 -0
- package/vendor/@anvil/common/src/constants/anvil-onboarding.ts +307 -0
- package/vendor/@anvil/common/src/constants/anvil-referral-tiers.ts +87 -0
- package/vendor/@anvil/common/src/constants/anvil-signup-block.ts +68 -0
- package/vendor/@anvil/common/src/constants/anvil-spend-ceilings.ts +450 -0
- package/vendor/@anvil/common/src/constants/anvil-trust.ts +976 -0
- package/vendor/@anvil/common/src/constants/auth.ts +18 -0
- package/vendor/@anvil/common/src/constants/byok.ts +2 -0
- package/vendor/@anvil/common/src/constants/cf-worker-signals.ts +132 -0
- package/vendor/@anvil/common/src/constants/composio.ts +34 -0
- package/vendor/@anvil/common/src/constants/deepseek-direct.ts +55 -0
- package/vendor/@anvil/common/src/constants/feedback.ts +13 -0
- package/vendor/@anvil/common/src/constants/foreign-client-signals.ts +272 -0
- package/vendor/@anvil/common/src/constants/free-agents.ts +777 -0
- package/vendor/@anvil/common/src/constants/gemini.ts +15 -0
- package/vendor/@anvil/common/src/constants/grant-priorities.ts +13 -0
- package/vendor/@anvil/common/src/constants/hosts.ts +6 -0
- package/vendor/@anvil/common/src/constants/images.ts +51 -0
- package/vendor/@anvil/common/src/constants/index.ts +7 -0
- package/vendor/@anvil/common/src/constants/knowledge.ts +35 -0
- package/vendor/@anvil/common/src/constants/limits.ts +23 -0
- package/vendor/@anvil/common/src/constants/model-config.ts +277 -0
- package/vendor/@anvil/common/src/constants/openrouter-attribution.ts +8 -0
- package/vendor/@anvil/common/src/constants/paths.ts +69 -0
- package/vendor/@anvil/common/src/constants/provider-routes.ts +317 -0
- package/vendor/@anvil/common/src/constants/reasoning-effort.ts +79 -0
- package/vendor/@anvil/common/src/constants/skills.ts +60 -0
- package/vendor/@anvil/common/src/constants/subscription-plans.ts +49 -0
- package/vendor/@anvil/common/src/constants/ui.ts +25 -0
- package/vendor/@anvil/common/src/env-ci.ts +36 -0
- package/vendor/@anvil/common/src/env-process.ts +95 -0
- package/vendor/@anvil/common/src/env-schema.ts +95 -0
- package/vendor/@anvil/common/src/env.ts +24 -0
- package/vendor/@anvil/common/src/gravity-capi.ts +207 -0
- package/vendor/@anvil/common/src/mcp/client.ts +233 -0
- package/vendor/@anvil/common/src/old-constants.ts +10 -0
- package/vendor/@anvil/common/src/project-file-tree.ts +355 -0
- package/vendor/@anvil/common/src/reddit-capi.ts +254 -0
- package/vendor/@anvil/common/src/schemas/feedback.ts +52 -0
- package/vendor/@anvil/common/src/schemas/logs.ts +66 -0
- package/vendor/@anvil/common/src/templates/agent-validation.ts +392 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/LICENSE +202 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/README.md +294 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/01-basic-diff-reviewer.ts +17 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/02-intermediate-git-committer.ts +78 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/examples/03-advanced-file-explorer.ts +73 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/my-custom-agent.ts +40 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/package.json +6 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/skills/README.md +65 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/skills/example-skill/SKILL.md +29 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/types/agent-definition.ts +497 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/types/tools.ts +444 -0
- package/vendor/@anvil/common/src/templates/initial-agents-dir/types/util-types.ts +178 -0
- package/vendor/@anvil/common/src/testing/TESTING_PATTERNS.md +351 -0
- package/vendor/@anvil/common/src/testing/anvil-offer-invariants.ts +169 -0
- package/vendor/@anvil/common/src/testing/errors.ts +33 -0
- package/vendor/@anvil/common/src/testing/fixtures/agent-runtime.ts +334 -0
- package/vendor/@anvil/common/src/testing/impl/agent-runtime.ts +6 -0
- package/vendor/@anvil/common/src/testing/index.ts +84 -0
- package/vendor/@anvil/common/src/testing/mock-modules.ts +53 -0
- package/vendor/@anvil/common/src/testing/mock-types.ts +123 -0
- package/vendor/@anvil/common/src/testing/mocks/analytics.ts +261 -0
- package/vendor/@anvil/common/src/testing/mocks/child-process.ts +93 -0
- package/vendor/@anvil/common/src/testing/mocks/crypto.ts +218 -0
- package/vendor/@anvil/common/src/testing/mocks/database.ts +337 -0
- package/vendor/@anvil/common/src/testing/mocks/fetch.ts +219 -0
- package/vendor/@anvil/common/src/testing/mocks/filesystem.ts +166 -0
- package/vendor/@anvil/common/src/testing/mocks/index.ts +101 -0
- package/vendor/@anvil/common/src/testing/mocks/logger.ts +135 -0
- package/vendor/@anvil/common/src/testing/mocks/stream.ts +313 -0
- package/vendor/@anvil/common/src/testing/mocks/timers.ts +132 -0
- package/vendor/@anvil/common/src/testing/mocks/tree-sitter.ts +127 -0
- package/vendor/@anvil/common/src/testing/setup.ts +282 -0
- package/vendor/@anvil/common/src/testing-env-ci.ts +15 -0
- package/vendor/@anvil/common/src/testing-env-process.ts +78 -0
- package/vendor/@anvil/common/src/tools/__tests__/compile-tool-definitions.test.ts +34 -0
- package/vendor/@anvil/common/src/tools/compile-tool-definitions.ts +157 -0
- package/vendor/@anvil/common/src/tools/constants.ts +117 -0
- package/vendor/@anvil/common/src/tools/list.ts +190 -0
- package/vendor/@anvil/common/src/tools/params/__tests__/coerce-to-array.test.ts +213 -0
- package/vendor/@anvil/common/src/tools/params/__tests__/read-docs.test.ts +47 -0
- package/vendor/@anvil/common/src/tools/params/__tests__/render-ui.test.ts +65 -0
- package/vendor/@anvil/common/src/tools/params/tool/__tests__/run-terminal-command-timeout.test.ts +49 -0
- package/vendor/@anvil/common/src/tools/params/tool/add-message.ts +39 -0
- package/vendor/@anvil/common/src/tools/params/tool/add-subgoal.ts +57 -0
- package/vendor/@anvil/common/src/tools/params/tool/apply-patch.ts +110 -0
- package/vendor/@anvil/common/src/tools/params/tool/ask-user.ts +181 -0
- package/vendor/@anvil/common/src/tools/params/tool/browser-logs.ts +85 -0
- package/vendor/@anvil/common/src/tools/params/tool/cloud-plan-ready.ts +94 -0
- package/vendor/@anvil/common/src/tools/params/tool/code-search.ts +159 -0
- package/vendor/@anvil/common/src/tools/params/tool/composio.ts +131 -0
- package/vendor/@anvil/common/src/tools/params/tool/create-plan.ts +80 -0
- package/vendor/@anvil/common/src/tools/params/tool/end-turn.ts +57 -0
- package/vendor/@anvil/common/src/tools/params/tool/find-files.ts +60 -0
- package/vendor/@anvil/common/src/tools/params/tool/glob.ts +80 -0
- package/vendor/@anvil/common/src/tools/params/tool/gravity-index.ts +93 -0
- package/vendor/@anvil/common/src/tools/params/tool/list-directory.ts +58 -0
- package/vendor/@anvil/common/src/tools/params/tool/lookup-agent-info.ts +37 -0
- package/vendor/@anvil/common/src/tools/params/tool/propose-str-replace.ts +103 -0
- package/vendor/@anvil/common/src/tools/params/tool/propose-write-file.ts +71 -0
- package/vendor/@anvil/common/src/tools/params/tool/read-docs.ts +90 -0
- package/vendor/@anvil/common/src/tools/params/tool/read-files.ts +109 -0
- package/vendor/@anvil/common/src/tools/params/tool/read-subtree.ts +79 -0
- package/vendor/@anvil/common/src/tools/params/tool/read-url.ts +81 -0
- package/vendor/@anvil/common/src/tools/params/tool/render-ui.ts +168 -0
- package/vendor/@anvil/common/src/tools/params/tool/run-file-change-hooks.ts +57 -0
- package/vendor/@anvil/common/src/tools/params/tool/run-terminal-command.ts +211 -0
- package/vendor/@anvil/common/src/tools/params/tool/screenshot.ts +97 -0
- package/vendor/@anvil/common/src/tools/params/tool/set-messages.ts +44 -0
- package/vendor/@anvil/common/src/tools/params/tool/set-output.ts +61 -0
- package/vendor/@anvil/common/src/tools/params/tool/skill.ts +59 -0
- package/vendor/@anvil/common/src/tools/params/tool/spawn-agent-inline.ts +56 -0
- package/vendor/@anvil/common/src/tools/params/tool/spawn-agents.ts +154 -0
- package/vendor/@anvil/common/src/tools/params/tool/str-replace.ts +107 -0
- package/vendor/@anvil/common/src/tools/params/tool/suggest-followups.ts +97 -0
- package/vendor/@anvil/common/src/tools/params/tool/task-completed.ts +61 -0
- package/vendor/@anvil/common/src/tools/params/tool/think-deeply.ts +56 -0
- package/vendor/@anvil/common/src/tools/params/tool/update-subgoal.ts +89 -0
- package/vendor/@anvil/common/src/tools/params/tool/vision-analyze.ts +82 -0
- package/vendor/@anvil/common/src/tools/params/tool/web-search.ts +73 -0
- package/vendor/@anvil/common/src/tools/params/tool/write-file.ts +71 -0
- package/vendor/@anvil/common/src/tools/params/tool/write-todos.ts +67 -0
- package/vendor/@anvil/common/src/tools/params/utils.ts +150 -0
- package/vendor/@anvil/common/src/tools/utils.ts +24 -0
- package/vendor/@anvil/common/src/types/__tests__/dynamic-agent-template.test.ts +20 -0
- package/vendor/@anvil/common/src/types/agent-template.ts +215 -0
- package/vendor/@anvil/common/src/types/anvil-session.ts +535 -0
- package/vendor/@anvil/common/src/types/anvil-streak.ts +6 -0
- package/vendor/@anvil/common/src/types/anvil-usage.ts +64 -0
- package/vendor/@anvil/common/src/types/api/agents/publish.ts +61 -0
- package/vendor/@anvil/common/src/types/bun-test.d.ts +5 -0
- package/vendor/@anvil/common/src/types/contracts/agent-runtime.ts +75 -0
- package/vendor/@anvil/common/src/types/contracts/analytics.ts +9 -0
- package/vendor/@anvil/common/src/types/contracts/bigquery.ts +55 -0
- package/vendor/@anvil/common/src/types/contracts/billing.ts +46 -0
- package/vendor/@anvil/common/src/types/contracts/client.ts +53 -0
- package/vendor/@anvil/common/src/types/contracts/database.ts +112 -0
- package/vendor/@anvil/common/src/types/contracts/env.ts +203 -0
- package/vendor/@anvil/common/src/types/contracts/llm.ts +191 -0
- package/vendor/@anvil/common/src/types/contracts/logger.ts +14 -0
- package/vendor/@anvil/common/src/types/contracts/logs.ts +34 -0
- package/vendor/@anvil/common/src/types/contracts/trace.ts +21 -0
- package/vendor/@anvil/common/src/types/dynamic-agent-template.ts +328 -0
- package/vendor/@anvil/common/src/types/filesystem.ts +10 -0
- package/vendor/@anvil/common/src/types/function-params.ts +33 -0
- package/vendor/@anvil/common/src/types/grant.ts +20 -0
- package/vendor/@anvil/common/src/types/gravity-index.ts +170 -0
- package/vendor/@anvil/common/src/types/json.ts +29 -0
- package/vendor/@anvil/common/src/types/mcp.ts +24 -0
- package/vendor/@anvil/common/src/types/messages/anvil-message.ts +58 -0
- package/vendor/@anvil/common/src/types/messages/content-part.ts +59 -0
- package/vendor/@anvil/common/src/types/messages/data-content.ts +14 -0
- package/vendor/@anvil/common/src/types/messages/provider-metadata.ts +13 -0
- package/vendor/@anvil/common/src/types/organization.ts +118 -0
- package/vendor/@anvil/common/src/types/print-mode.ts +121 -0
- package/vendor/@anvil/common/src/types/publisher.ts +67 -0
- package/vendor/@anvil/common/src/types/session-state.ts +149 -0
- package/vendor/@anvil/common/src/types/skill.ts +86 -0
- package/vendor/@anvil/common/src/types/source.ts +11 -0
- package/vendor/@anvil/common/src/types/spawn.ts +13 -0
- package/vendor/@anvil/common/src/types/subscription.ts +67 -0
- package/vendor/@anvil/common/src/types/usage.ts +16 -0
- package/vendor/@anvil/common/src/types/util.ts +3 -0
- package/vendor/@anvil/common/src/util/__tests__/ad-user-agent.test.ts +26 -0
- package/vendor/@anvil/common/src/util/__tests__/analytics-dispatcher.test.ts +122 -0
- package/vendor/@anvil/common/src/util/__tests__/analytics-log.test.ts +102 -0
- package/vendor/@anvil/common/src/util/__tests__/analytics-sampling.test.ts +143 -0
- package/vendor/@anvil/common/src/util/__tests__/anvil-streak.test.ts +202 -0
- package/vendor/@anvil/common/src/util/__tests__/anvil-usage-summary.test.ts +193 -0
- package/vendor/@anvil/common/src/util/__tests__/axiom-only-log.test.ts +140 -0
- package/vendor/@anvil/common/src/util/__tests__/client-user-agent.test.ts +148 -0
- package/vendor/@anvil/common/src/util/__tests__/engagement-tracker.test.ts +115 -0
- package/vendor/@anvil/common/src/util/__tests__/env-file-path.test.ts +57 -0
- package/vendor/@anvil/common/src/util/__tests__/error-abort.test.ts +774 -0
- package/vendor/@anvil/common/src/util/__tests__/error-api-details.test.ts +206 -0
- package/vendor/@anvil/common/src/util/__tests__/file-read-limits.test.ts +173 -0
- package/vendor/@anvil/common/src/util/__tests__/format-code-search.test.ts +60 -0
- package/vendor/@anvil/common/src/util/__tests__/log-mirror.test.ts +31 -0
- package/vendor/@anvil/common/src/util/__tests__/messages.test.ts +1252 -0
- package/vendor/@anvil/common/src/util/__tests__/partial-json-delta.test.ts +505 -0
- package/vendor/@anvil/common/src/util/__tests__/path.test.ts +22 -0
- package/vendor/@anvil/common/src/util/__tests__/project-ignore.test.ts +90 -0
- package/vendor/@anvil/common/src/util/__tests__/promise.test.ts +325 -0
- package/vendor/@anvil/common/src/util/__tests__/rate-limit.test.ts +28 -0
- package/vendor/@anvil/common/src/util/__tests__/reddit-anvil-retention.test.ts +130 -0
- package/vendor/@anvil/common/src/util/__tests__/saxy.test.ts +1008 -0
- package/vendor/@anvil/common/src/util/__tests__/split-data.test.ts +289 -0
- package/vendor/@anvil/common/src/util/__tests__/string.test.ts +239 -0
- package/vendor/@anvil/common/src/util/__tests__/thread-title.test.ts +70 -0
- package/vendor/@anvil/common/src/util/__tests__/tool-result-media-order.test.ts +108 -0
- package/vendor/@anvil/common/src/util/__tests__/ttft-histogram.test.ts +180 -0
- package/vendor/@anvil/common/src/util/__tests__/with-timeout.test.ts +24 -0
- package/vendor/@anvil/common/src/util/__tests__/zoned-time.test.ts +88 -0
- package/vendor/@anvil/common/src/util/ad-user-agent.ts +25 -0
- package/vendor/@anvil/common/src/util/agent-file-utils.ts +110 -0
- package/vendor/@anvil/common/src/util/agent-id-parsing.ts +136 -0
- package/vendor/@anvil/common/src/util/agent-name-normalization.ts +38 -0
- package/vendor/@anvil/common/src/util/agent-name-resolver.ts +86 -0
- package/vendor/@anvil/common/src/util/analytics-dispatcher.ts +82 -0
- package/vendor/@anvil/common/src/util/analytics-log.ts +78 -0
- package/vendor/@anvil/common/src/util/analytics-sampling.ts +255 -0
- package/vendor/@anvil/common/src/util/anvil-model-availability.ts +102 -0
- package/vendor/@anvil/common/src/util/anvil-privacy.ts +82 -0
- package/vendor/@anvil/common/src/util/anvil-streak-line.ts +103 -0
- package/vendor/@anvil/common/src/util/anvil-streak.ts +156 -0
- package/vendor/@anvil/common/src/util/anvil-usage-summary.ts +125 -0
- package/vendor/@anvil/common/src/util/array.ts +31 -0
- package/vendor/@anvil/common/src/util/axiom-only-log.ts +124 -0
- package/vendor/@anvil/common/src/util/cache-debug.ts +171 -0
- package/vendor/@anvil/common/src/util/client-user-agent.ts +114 -0
- package/vendor/@anvil/common/src/util/credentials.ts +26 -0
- package/vendor/@anvil/common/src/util/currency.ts +25 -0
- package/vendor/@anvil/common/src/util/dates.ts +81 -0
- package/vendor/@anvil/common/src/util/disposable-email.ts +277 -0
- package/vendor/@anvil/common/src/util/engagement-tracker.ts +129 -0
- package/vendor/@anvil/common/src/util/env-file-path.ts +40 -0
- package/vendor/@anvil/common/src/util/error.ts +562 -0
- package/vendor/@anvil/common/src/util/file-read-limits.ts +236 -0
- package/vendor/@anvil/common/src/util/file.ts +339 -0
- package/vendor/@anvil/common/src/util/format-code-search.ts +115 -0
- package/vendor/@anvil/common/src/util/lazy-response-ads.ts +92 -0
- package/vendor/@anvil/common/src/util/log-data.ts +57 -0
- package/vendor/@anvil/common/src/util/log-ingest.ts +58 -0
- package/vendor/@anvil/common/src/util/log-mirror.ts +34 -0
- package/vendor/@anvil/common/src/util/lru-cache.ts +67 -0
- package/vendor/@anvil/common/src/util/messages.ts +685 -0
- package/vendor/@anvil/common/src/util/min-heap.ts +87 -0
- package/vendor/@anvil/common/src/util/model-utils.ts +4 -0
- package/vendor/@anvil/common/src/util/object.ts +128 -0
- package/vendor/@anvil/common/src/util/partial-json-delta.ts +89 -0
- package/vendor/@anvil/common/src/util/path.ts +15 -0
- package/vendor/@anvil/common/src/util/project-ignore.ts +119 -0
- package/vendor/@anvil/common/src/util/promise.ts +73 -0
- package/vendor/@anvil/common/src/util/random.ts +15 -0
- package/vendor/@anvil/common/src/util/rate-limit.ts +56 -0
- package/vendor/@anvil/common/src/util/reddit-anvil-retention.ts +60 -0
- package/vendor/@anvil/common/src/util/reddit-capi-events.ts +36 -0
- package/vendor/@anvil/common/src/util/response-ad-positions.ts +54 -0
- package/vendor/@anvil/common/src/util/saxy.ts +741 -0
- package/vendor/@anvil/common/src/util/skills.test.ts +44 -0
- package/vendor/@anvil/common/src/util/skills.ts +36 -0
- package/vendor/@anvil/common/src/util/split-data.ts +259 -0
- package/vendor/@anvil/common/src/util/stop-sequence.ts +61 -0
- package/vendor/@anvil/common/src/util/string.ts +426 -0
- package/vendor/@anvil/common/src/util/system-info.ts +53 -0
- package/vendor/@anvil/common/src/util/thread-title.ts +46 -0
- package/vendor/@anvil/common/src/util/ttft-histogram.ts +73 -0
- package/vendor/@anvil/common/src/util/xml-parser.ts +27 -0
- package/vendor/@anvil/common/src/util/xml.ts +17 -0
- package/vendor/@anvil/common/src/util/zod-schema.ts +25 -0
- package/vendor/@anvil/common/src/util/zoned-time.ts +136 -0
- package/vendor/@anvil/common/src/utils/ask-user-bridge.ts +44 -0
- package/vendor/@anvil/sdk/dist/index.cjs +52297 -0
- package/vendor/@anvil/sdk/dist/index.cjs.map +440 -0
- package/vendor/@anvil/sdk/dist/index.d.ts +4277 -0
- package/vendor/@anvil/sdk/dist/index.mjs +52290 -0
- package/vendor/@anvil/sdk/dist/index.mjs.map +440 -0
- package/vendor/@anvil/sdk/dist/vendor/ai.cjs +30886 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/arm64-darwin/rg +0 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/arm64-linux/rg +0 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-darwin/rg +0 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-linux/rg +0 -0
- package/vendor/@anvil/sdk/dist/vendor/ripgrep/x64-win32/rg.exe +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-c-sharp.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-cpp.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-go.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-java.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-javascript.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-python.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-ruby.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-rust.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-tsx.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter-typescript.wasm +0 -0
- package/vendor/@anvil/sdk/dist/wasm/tree-sitter.wasm +0 -0
- package/vendor/@anvil/sdk/package.json +21 -0
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
import { afterEach, beforeEach, describe, expect, it, mock, spyOn } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { INITIAL_RETRY_DELAY, withRetry } from '../promise'
|
|
4
|
+
|
|
5
|
+
describe('withRetry', () => {
|
|
6
|
+
describe('basic functionality', () => {
|
|
7
|
+
it('should return result on successful first attempt', async () => {
|
|
8
|
+
const operation = mock(() => Promise.resolve('success'))
|
|
9
|
+
|
|
10
|
+
const result = await withRetry(operation)
|
|
11
|
+
|
|
12
|
+
expect(result).toBe('success')
|
|
13
|
+
expect(operation).toHaveBeenCalledTimes(1)
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
it('should retry on retryable error and succeed', async () => {
|
|
17
|
+
let attempts = 0
|
|
18
|
+
const operation = mock(() => {
|
|
19
|
+
attempts++
|
|
20
|
+
if (attempts === 1) {
|
|
21
|
+
const error = { type: 'APIConnectionError' }
|
|
22
|
+
return Promise.reject(error)
|
|
23
|
+
}
|
|
24
|
+
return Promise.resolve('success after retry')
|
|
25
|
+
})
|
|
26
|
+
|
|
27
|
+
// Mock setTimeout to avoid delays
|
|
28
|
+
const setTimeoutSpy = spyOn(globalThis, 'setTimeout').mockImplementation(
|
|
29
|
+
((callback: () => void) => {
|
|
30
|
+
callback()
|
|
31
|
+
return 0 as unknown as NodeJS.Timeout
|
|
32
|
+
}) as typeof setTimeout,
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
const result = await withRetry(operation)
|
|
36
|
+
|
|
37
|
+
expect(result).toBe('success after retry')
|
|
38
|
+
expect(attempts).toBe(2)
|
|
39
|
+
|
|
40
|
+
setTimeoutSpy.mockRestore()
|
|
41
|
+
})
|
|
42
|
+
|
|
43
|
+
it('should throw immediately on non-retryable error', async () => {
|
|
44
|
+
const error = new Error('non-retryable')
|
|
45
|
+
const operation = mock(() => Promise.reject(error))
|
|
46
|
+
|
|
47
|
+
await expect(withRetry(operation)).rejects.toThrow('non-retryable')
|
|
48
|
+
expect(operation).toHaveBeenCalledTimes(1)
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
it('should throw after max retries exceeded', async () => {
|
|
52
|
+
const error = { type: 'APIConnectionError' }
|
|
53
|
+
const operation = mock(() => Promise.reject(error))
|
|
54
|
+
|
|
55
|
+
// Mock setTimeout to avoid delays
|
|
56
|
+
const setTimeoutSpy = spyOn(globalThis, 'setTimeout').mockImplementation(
|
|
57
|
+
((callback: () => void) => {
|
|
58
|
+
callback()
|
|
59
|
+
return 0 as unknown as NodeJS.Timeout
|
|
60
|
+
}) as typeof setTimeout,
|
|
61
|
+
)
|
|
62
|
+
|
|
63
|
+
await expect(
|
|
64
|
+
withRetry(operation, { maxRetries: 3 }),
|
|
65
|
+
).rejects.toMatchObject({ type: 'APIConnectionError' })
|
|
66
|
+
|
|
67
|
+
expect(operation).toHaveBeenCalledTimes(3)
|
|
68
|
+
|
|
69
|
+
setTimeoutSpy.mockRestore()
|
|
70
|
+
})
|
|
71
|
+
})
|
|
72
|
+
|
|
73
|
+
describe('jitter behavior', () => {
|
|
74
|
+
let setTimeoutSpy: ReturnType<typeof spyOn>
|
|
75
|
+
let mathRandomSpy: ReturnType<typeof spyOn>
|
|
76
|
+
let capturedDelays: number[]
|
|
77
|
+
|
|
78
|
+
beforeEach(() => {
|
|
79
|
+
capturedDelays = []
|
|
80
|
+
|
|
81
|
+
// Capture the delay values passed to setTimeout
|
|
82
|
+
setTimeoutSpy = spyOn(globalThis, 'setTimeout').mockImplementation(
|
|
83
|
+
((callback: () => void, delay: number) => {
|
|
84
|
+
capturedDelays.push(delay)
|
|
85
|
+
callback()
|
|
86
|
+
return 0 as unknown as NodeJS.Timeout
|
|
87
|
+
}) as typeof setTimeout,
|
|
88
|
+
)
|
|
89
|
+
})
|
|
90
|
+
|
|
91
|
+
afterEach(() => {
|
|
92
|
+
setTimeoutSpy.mockRestore()
|
|
93
|
+
if (mathRandomSpy) {
|
|
94
|
+
mathRandomSpy.mockRestore()
|
|
95
|
+
}
|
|
96
|
+
})
|
|
97
|
+
|
|
98
|
+
it('should apply minimum jitter (0.8x) when Math.random returns 0', async () => {
|
|
99
|
+
mathRandomSpy = spyOn(Math, 'random').mockReturnValue(0)
|
|
100
|
+
|
|
101
|
+
const error = { type: 'APIConnectionError' }
|
|
102
|
+
let attempts = 0
|
|
103
|
+
const operation = mock(() => {
|
|
104
|
+
attempts++
|
|
105
|
+
if (attempts < 3) {
|
|
106
|
+
return Promise.reject(error)
|
|
107
|
+
}
|
|
108
|
+
return Promise.resolve('success')
|
|
109
|
+
})
|
|
110
|
+
|
|
111
|
+
await withRetry(operation, {
|
|
112
|
+
maxRetries: 3,
|
|
113
|
+
retryDelayMs: INITIAL_RETRY_DELAY,
|
|
114
|
+
})
|
|
115
|
+
|
|
116
|
+
// With Math.random() = 0, jitter = 0.8
|
|
117
|
+
// Attempt 0 (first retry): baseDelay = 1000 * 2^0 = 1000, delay = 1000 * 0.8 = 800
|
|
118
|
+
// Attempt 1 (second retry): baseDelay = 1000 * 2^1 = 2000, delay = 2000 * 0.8 = 1600
|
|
119
|
+
expect(capturedDelays).toEqual([800, 1600])
|
|
120
|
+
})
|
|
121
|
+
|
|
122
|
+
it('should apply maximum jitter (1.2x) when Math.random returns 1', async () => {
|
|
123
|
+
mathRandomSpy = spyOn(Math, 'random').mockReturnValue(1)
|
|
124
|
+
|
|
125
|
+
const error = { type: 'APIConnectionError' }
|
|
126
|
+
let attempts = 0
|
|
127
|
+
const operation = mock(() => {
|
|
128
|
+
attempts++
|
|
129
|
+
if (attempts < 3) {
|
|
130
|
+
return Promise.reject(error)
|
|
131
|
+
}
|
|
132
|
+
return Promise.resolve('success')
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
await withRetry(operation, {
|
|
136
|
+
maxRetries: 3,
|
|
137
|
+
retryDelayMs: INITIAL_RETRY_DELAY,
|
|
138
|
+
})
|
|
139
|
+
|
|
140
|
+
// With Math.random() = 1, jitter = 1.2
|
|
141
|
+
// Attempt 0: baseDelay = 1000 * 2^0 = 1000, delay = 1000 * 1.2 = 1200
|
|
142
|
+
// Attempt 1: baseDelay = 1000 * 2^1 = 2000, delay = 2000 * 1.2 = 2400
|
|
143
|
+
expect(capturedDelays).toEqual([1200, 2400])
|
|
144
|
+
})
|
|
145
|
+
|
|
146
|
+
it('should apply no jitter (1.0x) when Math.random returns 0.5', async () => {
|
|
147
|
+
mathRandomSpy = spyOn(Math, 'random').mockReturnValue(0.5)
|
|
148
|
+
|
|
149
|
+
const error = { type: 'APIConnectionError' }
|
|
150
|
+
let attempts = 0
|
|
151
|
+
const operation = mock(() => {
|
|
152
|
+
attempts++
|
|
153
|
+
if (attempts < 3) {
|
|
154
|
+
return Promise.reject(error)
|
|
155
|
+
}
|
|
156
|
+
return Promise.resolve('success')
|
|
157
|
+
})
|
|
158
|
+
|
|
159
|
+
await withRetry(operation, {
|
|
160
|
+
maxRetries: 3,
|
|
161
|
+
retryDelayMs: INITIAL_RETRY_DELAY,
|
|
162
|
+
})
|
|
163
|
+
|
|
164
|
+
// With Math.random() = 0.5, jitter = 0.8 + 0.5 * 0.4 = 1.0
|
|
165
|
+
// Attempt 0: baseDelay = 1000, delay = 1000 * 1.0 = 1000
|
|
166
|
+
// Attempt 1: baseDelay = 2000, delay = 2000 * 1.0 = 2000
|
|
167
|
+
expect(capturedDelays).toEqual([1000, 2000])
|
|
168
|
+
})
|
|
169
|
+
|
|
170
|
+
it('should apply exponential backoff with jitter correctly', async () => {
|
|
171
|
+
// Use a specific random value to verify the jitter calculation
|
|
172
|
+
mathRandomSpy = spyOn(Math, 'random').mockReturnValue(0.25)
|
|
173
|
+
|
|
174
|
+
const error = { type: 'APIConnectionError' }
|
|
175
|
+
let attempts = 0
|
|
176
|
+
const operation = mock(() => {
|
|
177
|
+
attempts++
|
|
178
|
+
if (attempts < 4) {
|
|
179
|
+
return Promise.reject(error)
|
|
180
|
+
}
|
|
181
|
+
return Promise.resolve('success')
|
|
182
|
+
})
|
|
183
|
+
|
|
184
|
+
await withRetry(operation, {
|
|
185
|
+
maxRetries: 4,
|
|
186
|
+
retryDelayMs: 1000,
|
|
187
|
+
})
|
|
188
|
+
|
|
189
|
+
// With Math.random() = 0.25, jitter = 0.8 + 0.25 * 0.4 = 0.9
|
|
190
|
+
// Attempt 0: 1000 * 2^0 * 0.9 = 900
|
|
191
|
+
// Attempt 1: 1000 * 2^1 * 0.9 = 1800
|
|
192
|
+
// Attempt 2: 1000 * 2^2 * 0.9 = 3600
|
|
193
|
+
expect(capturedDelays).toEqual([900, 1800, 3600])
|
|
194
|
+
})
|
|
195
|
+
|
|
196
|
+
it('should produce delays within ±20% of base delay', async () => {
|
|
197
|
+
// Don't mock Math.random - let it use real random values
|
|
198
|
+
mathRandomSpy?.mockRestore()
|
|
199
|
+
|
|
200
|
+
const error = { type: 'APIConnectionError' }
|
|
201
|
+
let attempts = 0
|
|
202
|
+
const operation = mock(() => {
|
|
203
|
+
attempts++
|
|
204
|
+
if (attempts < 3) {
|
|
205
|
+
return Promise.reject(error)
|
|
206
|
+
}
|
|
207
|
+
return Promise.resolve('success')
|
|
208
|
+
})
|
|
209
|
+
|
|
210
|
+
await withRetry(operation, {
|
|
211
|
+
maxRetries: 3,
|
|
212
|
+
retryDelayMs: 1000,
|
|
213
|
+
})
|
|
214
|
+
|
|
215
|
+
// Verify delays are within expected ranges
|
|
216
|
+
// Attempt 0: base = 1000, range = [800, 1200]
|
|
217
|
+
expect(capturedDelays[0]).toBeGreaterThanOrEqual(800)
|
|
218
|
+
expect(capturedDelays[0]).toBeLessThanOrEqual(1200)
|
|
219
|
+
|
|
220
|
+
// Attempt 1: base = 2000, range = [1600, 2400]
|
|
221
|
+
expect(capturedDelays[1]).toBeGreaterThanOrEqual(1600)
|
|
222
|
+
expect(capturedDelays[1]).toBeLessThanOrEqual(2400)
|
|
223
|
+
})
|
|
224
|
+
|
|
225
|
+
it('should use custom retryDelayMs for base delay calculation', async () => {
|
|
226
|
+
mathRandomSpy = spyOn(Math, 'random').mockReturnValue(0.5) // jitter = 1.0
|
|
227
|
+
|
|
228
|
+
const error = { type: 'APIConnectionError' }
|
|
229
|
+
let attempts = 0
|
|
230
|
+
const operation = mock(() => {
|
|
231
|
+
attempts++
|
|
232
|
+
if (attempts < 2) {
|
|
233
|
+
return Promise.reject(error)
|
|
234
|
+
}
|
|
235
|
+
return Promise.resolve('success')
|
|
236
|
+
})
|
|
237
|
+
|
|
238
|
+
await withRetry(operation, {
|
|
239
|
+
maxRetries: 2,
|
|
240
|
+
retryDelayMs: 500, // Custom base delay
|
|
241
|
+
})
|
|
242
|
+
|
|
243
|
+
// With jitter = 1.0 and retryDelayMs = 500
|
|
244
|
+
// Attempt 0: 500 * 2^0 * 1.0 = 500
|
|
245
|
+
expect(capturedDelays).toEqual([500])
|
|
246
|
+
})
|
|
247
|
+
})
|
|
248
|
+
|
|
249
|
+
describe('onRetry callback', () => {
|
|
250
|
+
it('should call onRetry with error and attempt number', async () => {
|
|
251
|
+
const setTimeoutSpy = spyOn(globalThis, 'setTimeout').mockImplementation(
|
|
252
|
+
((callback: () => void) => {
|
|
253
|
+
callback()
|
|
254
|
+
return 0 as unknown as NodeJS.Timeout
|
|
255
|
+
}) as typeof setTimeout,
|
|
256
|
+
)
|
|
257
|
+
|
|
258
|
+
const onRetry = mock(() => {})
|
|
259
|
+
const error = { type: 'APIConnectionError' }
|
|
260
|
+
let attempts = 0
|
|
261
|
+
const operation = mock(() => {
|
|
262
|
+
attempts++
|
|
263
|
+
if (attempts < 3) {
|
|
264
|
+
return Promise.reject(error)
|
|
265
|
+
}
|
|
266
|
+
return Promise.resolve('success')
|
|
267
|
+
})
|
|
268
|
+
|
|
269
|
+
await withRetry(operation, {
|
|
270
|
+
maxRetries: 3,
|
|
271
|
+
onRetry,
|
|
272
|
+
})
|
|
273
|
+
|
|
274
|
+
expect(onRetry).toHaveBeenCalledTimes(2)
|
|
275
|
+
expect(onRetry).toHaveBeenNthCalledWith(1, error, 1)
|
|
276
|
+
expect(onRetry).toHaveBeenNthCalledWith(2, error, 2)
|
|
277
|
+
|
|
278
|
+
setTimeoutSpy.mockRestore()
|
|
279
|
+
})
|
|
280
|
+
})
|
|
281
|
+
|
|
282
|
+
describe('retryIf callback', () => {
|
|
283
|
+
it('should use custom retryIf to determine retryability', async () => {
|
|
284
|
+
const setTimeoutSpy = spyOn(globalThis, 'setTimeout').mockImplementation(
|
|
285
|
+
((callback: () => void) => {
|
|
286
|
+
callback()
|
|
287
|
+
return 0 as unknown as NodeJS.Timeout
|
|
288
|
+
}) as typeof setTimeout,
|
|
289
|
+
)
|
|
290
|
+
|
|
291
|
+
let attempts = 0
|
|
292
|
+
const operation = mock(() => {
|
|
293
|
+
attempts++
|
|
294
|
+
if (attempts === 1) {
|
|
295
|
+
return Promise.reject({ code: 'RETRY_ME' })
|
|
296
|
+
}
|
|
297
|
+
return Promise.resolve('success')
|
|
298
|
+
})
|
|
299
|
+
|
|
300
|
+
const result = await withRetry(operation, {
|
|
301
|
+
maxRetries: 3,
|
|
302
|
+
retryIf: (error) => error?.code === 'RETRY_ME',
|
|
303
|
+
})
|
|
304
|
+
|
|
305
|
+
expect(result).toBe('success')
|
|
306
|
+
expect(attempts).toBe(2)
|
|
307
|
+
|
|
308
|
+
setTimeoutSpy.mockRestore()
|
|
309
|
+
})
|
|
310
|
+
|
|
311
|
+
it('should not retry when retryIf returns false', async () => {
|
|
312
|
+
const error = { code: 'DO_NOT_RETRY' }
|
|
313
|
+
const operation = mock(() => Promise.reject(error))
|
|
314
|
+
|
|
315
|
+
await expect(
|
|
316
|
+
withRetry(operation, {
|
|
317
|
+
maxRetries: 3,
|
|
318
|
+
retryIf: (err) => err?.code === 'RETRY_ME',
|
|
319
|
+
}),
|
|
320
|
+
).rejects.toMatchObject({ code: 'DO_NOT_RETRY' })
|
|
321
|
+
|
|
322
|
+
expect(operation).toHaveBeenCalledTimes(1)
|
|
323
|
+
})
|
|
324
|
+
})
|
|
325
|
+
})
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { describe, expect, it } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { createFixedWindowRateLimiter } from '../rate-limit'
|
|
4
|
+
|
|
5
|
+
describe('createFixedWindowRateLimiter', () => {
|
|
6
|
+
it('allows up to `max` requests per window, then limits', () => {
|
|
7
|
+
const rl = createFixedWindowRateLimiter({ windowMs: 1000, max: 3 })
|
|
8
|
+
const t = 0
|
|
9
|
+
expect(rl.limited('a', t)).toBe(false) // 1
|
|
10
|
+
expect(rl.limited('a', t)).toBe(false) // 2
|
|
11
|
+
expect(rl.limited('a', t)).toBe(false) // 3
|
|
12
|
+
expect(rl.limited('a', t)).toBe(true) // 4 -> over
|
|
13
|
+
})
|
|
14
|
+
|
|
15
|
+
it('resets after the window elapses', () => {
|
|
16
|
+
const rl = createFixedWindowRateLimiter({ windowMs: 1000, max: 1 })
|
|
17
|
+
expect(rl.limited('a', 0)).toBe(false)
|
|
18
|
+
expect(rl.limited('a', 500)).toBe(true) // still in window
|
|
19
|
+
expect(rl.limited('a', 1000)).toBe(false) // window rolled over
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
it('tracks keys independently', () => {
|
|
23
|
+
const rl = createFixedWindowRateLimiter({ windowMs: 1000, max: 1 })
|
|
24
|
+
expect(rl.limited('a', 0)).toBe(false)
|
|
25
|
+
expect(rl.limited('b', 0)).toBe(false) // different key, own budget
|
|
26
|
+
expect(rl.limited('a', 0)).toBe(true)
|
|
27
|
+
})
|
|
28
|
+
})
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { describe, expect, test } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
getAnvilRetentionMilestonesToFire,
|
|
5
|
+
isFirstAnvilPrompt,
|
|
6
|
+
planAnvilRedditConversionEvents,
|
|
7
|
+
} from '@anvil/common/util/reddit-anvil-retention'
|
|
8
|
+
|
|
9
|
+
describe('isFirstAnvilPrompt', () => {
|
|
10
|
+
test('returns true on first-ever usage day', () => {
|
|
11
|
+
expect(
|
|
12
|
+
isFirstAnvilPrompt({
|
|
13
|
+
previousUsageDays: [],
|
|
14
|
+
newUsageDayRecorded: true,
|
|
15
|
+
}),
|
|
16
|
+
).toBe(true)
|
|
17
|
+
})
|
|
18
|
+
|
|
19
|
+
test('returns false on repeat prompts same day', () => {
|
|
20
|
+
expect(
|
|
21
|
+
isFirstAnvilPrompt({
|
|
22
|
+
previousUsageDays: ['2026-06-30'],
|
|
23
|
+
newUsageDayRecorded: false,
|
|
24
|
+
}),
|
|
25
|
+
).toBe(false)
|
|
26
|
+
})
|
|
27
|
+
|
|
28
|
+
test('returns false on a later usage day', () => {
|
|
29
|
+
expect(
|
|
30
|
+
isFirstAnvilPrompt({
|
|
31
|
+
previousUsageDays: ['2026-06-30'],
|
|
32
|
+
newUsageDayRecorded: true,
|
|
33
|
+
}),
|
|
34
|
+
).toBe(false)
|
|
35
|
+
})
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
describe('getAnvilRetentionMilestonesToFire', () => {
|
|
39
|
+
test('returns nothing on first-ever usage day', () => {
|
|
40
|
+
expect(
|
|
41
|
+
getAnvilRetentionMilestonesToFire({
|
|
42
|
+
previousUsageDays: [],
|
|
43
|
+
todayDateKey: '2026-06-30',
|
|
44
|
+
newUsageDayRecorded: true,
|
|
45
|
+
}),
|
|
46
|
+
).toEqual([])
|
|
47
|
+
})
|
|
48
|
+
|
|
49
|
+
test('returns nothing when no new usage day was recorded', () => {
|
|
50
|
+
expect(
|
|
51
|
+
getAnvilRetentionMilestonesToFire({
|
|
52
|
+
previousUsageDays: ['2026-06-30'],
|
|
53
|
+
todayDateKey: '2026-07-01',
|
|
54
|
+
newUsageDayRecorded: false,
|
|
55
|
+
}),
|
|
56
|
+
).toEqual([])
|
|
57
|
+
})
|
|
58
|
+
|
|
59
|
+
test('fires 1d retention on day 1', () => {
|
|
60
|
+
expect(
|
|
61
|
+
getAnvilRetentionMilestonesToFire({
|
|
62
|
+
previousUsageDays: ['2026-06-30'],
|
|
63
|
+
todayDateKey: '2026-07-01',
|
|
64
|
+
newUsageDayRecorded: true,
|
|
65
|
+
}),
|
|
66
|
+
).toEqual([1])
|
|
67
|
+
})
|
|
68
|
+
|
|
69
|
+
test('does not repeat 1d on day 2', () => {
|
|
70
|
+
expect(
|
|
71
|
+
getAnvilRetentionMilestonesToFire({
|
|
72
|
+
previousUsageDays: ['2026-06-30', '2026-07-01'],
|
|
73
|
+
todayDateKey: '2026-07-02',
|
|
74
|
+
newUsageDayRecorded: true,
|
|
75
|
+
}),
|
|
76
|
+
).toEqual([])
|
|
77
|
+
})
|
|
78
|
+
|
|
79
|
+
test('fires 7d retention on day 7', () => {
|
|
80
|
+
expect(
|
|
81
|
+
getAnvilRetentionMilestonesToFire({
|
|
82
|
+
previousUsageDays: ['2026-06-30', '2026-07-01'],
|
|
83
|
+
todayDateKey: '2026-07-07',
|
|
84
|
+
newUsageDayRecorded: true,
|
|
85
|
+
}),
|
|
86
|
+
).toEqual([7])
|
|
87
|
+
})
|
|
88
|
+
|
|
89
|
+
test('does not backfill missed milestones after a long gap', () => {
|
|
90
|
+
expect(
|
|
91
|
+
getAnvilRetentionMilestonesToFire({
|
|
92
|
+
previousUsageDays: ['2026-06-01'],
|
|
93
|
+
todayDateKey: '2026-07-01',
|
|
94
|
+
newUsageDayRecorded: true,
|
|
95
|
+
}),
|
|
96
|
+
).toEqual([])
|
|
97
|
+
})
|
|
98
|
+
|
|
99
|
+
test('fires 24d retention only on exact day 24', () => {
|
|
100
|
+
expect(
|
|
101
|
+
getAnvilRetentionMilestonesToFire({
|
|
102
|
+
previousUsageDays: ['2026-06-01', '2026-06-02'],
|
|
103
|
+
todayDateKey: '2026-06-25',
|
|
104
|
+
newUsageDayRecorded: true,
|
|
105
|
+
}),
|
|
106
|
+
).toEqual([24])
|
|
107
|
+
})
|
|
108
|
+
})
|
|
109
|
+
|
|
110
|
+
describe('planAnvilRedditConversionEvents', () => {
|
|
111
|
+
test('first prompt only on day 0', () => {
|
|
112
|
+
expect(
|
|
113
|
+
planAnvilRedditConversionEvents({
|
|
114
|
+
previousUsageDays: [],
|
|
115
|
+
todayDateKey: '2026-06-30',
|
|
116
|
+
newUsageDayRecorded: true,
|
|
117
|
+
}),
|
|
118
|
+
).toEqual({ fireFirstPrompt: true, retentionMilestones: [] })
|
|
119
|
+
})
|
|
120
|
+
|
|
121
|
+
test('1d retention without first prompt on day 1', () => {
|
|
122
|
+
expect(
|
|
123
|
+
planAnvilRedditConversionEvents({
|
|
124
|
+
previousUsageDays: ['2026-06-30'],
|
|
125
|
+
todayDateKey: '2026-07-01',
|
|
126
|
+
newUsageDayRecorded: true,
|
|
127
|
+
}),
|
|
128
|
+
).toEqual({ fireFirstPrompt: false, retentionMilestones: [1] })
|
|
129
|
+
})
|
|
130
|
+
})
|