@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.
- package/package.json +6 -2
- 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,108 @@
|
|
|
1
|
+
import { describe, expect, it } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { convertCbToModelMessages } from '../messages'
|
|
4
|
+
|
|
5
|
+
import type { Message } from '../../types/messages/anvil-message'
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* preview_screenshot returns [media, json] so the model sees the pixels before
|
|
9
|
+
* the note. A `media` part becomes a user message (providers reject images
|
|
10
|
+
* inside a tool message), so emitting parts in their original order put that
|
|
11
|
+
* user message between the assistant's tool_call and its result — which
|
|
12
|
+
* providers reject, and which the server's repair then resolves by dropping
|
|
13
|
+
* both the call and the result.
|
|
14
|
+
*/
|
|
15
|
+
describe('convertMessages — tool results carrying media', () => {
|
|
16
|
+
const screenshotHistory = (): Message[] => [
|
|
17
|
+
{ role: 'user', content: [{ type: 'text', text: 'take a screenshot' }] },
|
|
18
|
+
{
|
|
19
|
+
role: 'assistant',
|
|
20
|
+
content: [
|
|
21
|
+
{
|
|
22
|
+
type: 'tool-call',
|
|
23
|
+
toolCallId: 'shot-1',
|
|
24
|
+
toolName: 'preview_screenshot',
|
|
25
|
+
input: {},
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
role: 'tool',
|
|
31
|
+
toolName: 'preview_screenshot',
|
|
32
|
+
toolCallId: 'shot-1',
|
|
33
|
+
content: [
|
|
34
|
+
{ type: 'media', data: 'BASE64PNG', mediaType: 'image/png' },
|
|
35
|
+
{ type: 'json', value: { ok: true } },
|
|
36
|
+
],
|
|
37
|
+
},
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
it('puts the tool result immediately after the call, image after', () => {
|
|
41
|
+
const converted = convertCbToModelMessages({
|
|
42
|
+
messages: screenshotHistory(),
|
|
43
|
+
})
|
|
44
|
+
|
|
45
|
+
expect(converted.map((m) => m.role)).toEqual([
|
|
46
|
+
'user',
|
|
47
|
+
'assistant',
|
|
48
|
+
'tool',
|
|
49
|
+
'user',
|
|
50
|
+
])
|
|
51
|
+
})
|
|
52
|
+
|
|
53
|
+
it('keeps both the result and the image', () => {
|
|
54
|
+
const converted = convertCbToModelMessages({
|
|
55
|
+
messages: screenshotHistory(),
|
|
56
|
+
})
|
|
57
|
+
const serialized = JSON.stringify(converted)
|
|
58
|
+
|
|
59
|
+
expect(serialized).toContain('BASE64PNG')
|
|
60
|
+
expect(serialized).toContain('shot-1')
|
|
61
|
+
})
|
|
62
|
+
|
|
63
|
+
it('is unaffected when a tool returns json only', () => {
|
|
64
|
+
const converted = convertCbToModelMessages({
|
|
65
|
+
messages: [
|
|
66
|
+
{
|
|
67
|
+
role: 'tool',
|
|
68
|
+
toolName: 'read_files',
|
|
69
|
+
toolCallId: 'r1',
|
|
70
|
+
content: [{ type: 'json', value: { files: [] } }],
|
|
71
|
+
},
|
|
72
|
+
] as Message[],
|
|
73
|
+
})
|
|
74
|
+
|
|
75
|
+
expect(converted.map((m) => m.role)).toEqual(['tool'])
|
|
76
|
+
})
|
|
77
|
+
})
|
|
78
|
+
|
|
79
|
+
describe('convertMessages — tool results with media but no json', () => {
|
|
80
|
+
it('still answers the call, so it is not left unpaired', () => {
|
|
81
|
+
// `mediaToolResult` produces media-only output. Emitting just the user
|
|
82
|
+
// message would leave the assistant's tool_call permanently unanswered.
|
|
83
|
+
const converted = convertCbToModelMessages({
|
|
84
|
+
messages: [
|
|
85
|
+
{
|
|
86
|
+
role: 'assistant',
|
|
87
|
+
content: [
|
|
88
|
+
{
|
|
89
|
+
type: 'tool-call',
|
|
90
|
+
toolCallId: 'shot-2',
|
|
91
|
+
toolName: 'preview_screenshot',
|
|
92
|
+
input: {},
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
role: 'tool',
|
|
98
|
+
toolName: 'preview_screenshot',
|
|
99
|
+
toolCallId: 'shot-2',
|
|
100
|
+
content: [{ type: 'media', data: 'ONLYIMG', mediaType: 'image/png' }],
|
|
101
|
+
},
|
|
102
|
+
] as Message[],
|
|
103
|
+
})
|
|
104
|
+
|
|
105
|
+
expect(converted.map((m) => m.role)).toEqual(['assistant', 'tool', 'user'])
|
|
106
|
+
expect(JSON.stringify(converted)).toContain('ONLYIMG')
|
|
107
|
+
})
|
|
108
|
+
})
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The /latency dashboard's p50/p95 come out of this bucketing rather than out of
|
|
3
|
+
* percentile_cont over `message`, so what these tests guard is the size of the
|
|
4
|
+
* error that substitution introduces — and that it stays a bounded *relative*
|
|
5
|
+
* error at every latency, which is what keeps models ranked correctly against
|
|
6
|
+
* each other.
|
|
7
|
+
*/
|
|
8
|
+
import { describe, expect, it } from 'bun:test'
|
|
9
|
+
|
|
10
|
+
import {
|
|
11
|
+
TTFT_HISTOGRAM_BASE,
|
|
12
|
+
TTFT_HISTOGRAM_BUCKET_COUNT,
|
|
13
|
+
ttftBucketIndex,
|
|
14
|
+
ttftBucketMs,
|
|
15
|
+
ttftPercentileFromHistogram,
|
|
16
|
+
} from '../ttft-histogram'
|
|
17
|
+
|
|
18
|
+
/** Exact percentile with the same nearest-rank definition the histogram uses. */
|
|
19
|
+
function exactPercentile(samples: number[], quantile: number): number {
|
|
20
|
+
const sorted = [...samples].sort((a, b) => a - b)
|
|
21
|
+
const target = sorted.length * quantile
|
|
22
|
+
let cumulative = 0
|
|
23
|
+
for (const value of sorted) {
|
|
24
|
+
cumulative += 1
|
|
25
|
+
if (cumulative >= target) return value
|
|
26
|
+
}
|
|
27
|
+
return sorted[sorted.length - 1]
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function histogramOf(samples: number[]): Map<number, number> {
|
|
31
|
+
const histogram = new Map<number, number>()
|
|
32
|
+
for (const sample of samples) {
|
|
33
|
+
const bucket = ttftBucketIndex(sample)
|
|
34
|
+
histogram.set(bucket, (histogram.get(bucket) ?? 0) + 1)
|
|
35
|
+
}
|
|
36
|
+
return histogram
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/** Deterministic LCG — a seeded generator keeps failures reproducible. */
|
|
40
|
+
function makeRandom(seed: number): () => number {
|
|
41
|
+
let state = seed
|
|
42
|
+
return () => {
|
|
43
|
+
state = (state * 1664525 + 1013904223) % 4294967296
|
|
44
|
+
return state / 4294967296
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
describe('ttftBucketIndex', () => {
|
|
49
|
+
it('is monotonic in latency', () => {
|
|
50
|
+
let previous = -1
|
|
51
|
+
for (const ms of [0, 1, 10, 100, 500, 1000, 2000, 5000, 30_000, 120_000]) {
|
|
52
|
+
const bucket = ttftBucketIndex(ms)
|
|
53
|
+
expect(bucket).toBeGreaterThanOrEqual(previous)
|
|
54
|
+
previous = bucket
|
|
55
|
+
}
|
|
56
|
+
})
|
|
57
|
+
|
|
58
|
+
it('clamps degenerate samples into the first bucket instead of -Infinity', () => {
|
|
59
|
+
// log(0) is -Infinity, which would poison every downstream sum.
|
|
60
|
+
expect(ttftBucketIndex(0)).toBe(0)
|
|
61
|
+
expect(ttftBucketIndex(0.4)).toBe(0)
|
|
62
|
+
expect(ttftBucketIndex(1)).toBe(0)
|
|
63
|
+
expect(Number.isFinite(ttftBucketMs(ttftBucketIndex(0)))).toBe(true)
|
|
64
|
+
})
|
|
65
|
+
|
|
66
|
+
it('clamps pathological samples into the last bucket', () => {
|
|
67
|
+
const last = TTFT_HISTOGRAM_BUCKET_COUNT - 1
|
|
68
|
+
expect(ttftBucketIndex(Number.MAX_SAFE_INTEGER)).toBe(last)
|
|
69
|
+
// The top edge is far past any real TTFT, so nothing legitimate saturates.
|
|
70
|
+
expect(ttftBucketIndex(60 * 60 * 1000)).toBeLessThan(last)
|
|
71
|
+
})
|
|
72
|
+
|
|
73
|
+
it('keeps every reported value within half a bucket, plus ms rounding', () => {
|
|
74
|
+
// The geometric half-width is the real guarantee; the extra 0.5ms is
|
|
75
|
+
// ttftBucketMs rounding to whole milliseconds, which only matters at
|
|
76
|
+
// latencies far below anything a model produces.
|
|
77
|
+
const halfWidth = (TTFT_HISTOGRAM_BASE - 1) / 2
|
|
78
|
+
for (let ms = 1; ms <= 300_000; ms = Math.ceil(ms * 1.017)) {
|
|
79
|
+
const reported = ttftBucketMs(ttftBucketIndex(ms))
|
|
80
|
+
expect(Math.abs(reported - ms)).toBeLessThanOrEqual(
|
|
81
|
+
ms * halfWidth + 0.5 + 1e-9,
|
|
82
|
+
)
|
|
83
|
+
}
|
|
84
|
+
})
|
|
85
|
+
|
|
86
|
+
it('keeps the relative error under 1.6% across the range the page renders', () => {
|
|
87
|
+
// This is what the dashboard rests on: ~1.5% of a 2s median is ~30ms, far
|
|
88
|
+
// below the gap between any two models on the page. The bound is 1.6% and
|
|
89
|
+
// not 1.5% because whole-millisecond rounding adds up to 0.5ms on top of
|
|
90
|
+
// the geometric half-width, which is only visible below ~200ms. Measured
|
|
91
|
+
// worst case over this range is 1.544%, at 259ms.
|
|
92
|
+
for (let ms = 200; ms <= 300_000; ms = Math.ceil(ms * 1.017)) {
|
|
93
|
+
const reported = ttftBucketMs(ttftBucketIndex(ms))
|
|
94
|
+
expect(Math.abs(reported - ms) / ms).toBeLessThanOrEqual(0.016)
|
|
95
|
+
}
|
|
96
|
+
})
|
|
97
|
+
})
|
|
98
|
+
|
|
99
|
+
describe('ttftPercentileFromHistogram', () => {
|
|
100
|
+
it('returns null for an empty histogram rather than 0', () => {
|
|
101
|
+
// 0 would render as a real, extremely fast measurement.
|
|
102
|
+
expect(ttftPercentileFromHistogram([], 0.5)).toBeNull()
|
|
103
|
+
expect(ttftPercentileFromHistogram([[10, 0]], 0.5)).toBeNull()
|
|
104
|
+
})
|
|
105
|
+
|
|
106
|
+
it('tracks exact percentiles on a realistic long-tailed distribution', () => {
|
|
107
|
+
// Log-normal-ish: a tight body around ~1.8s with a slow tail, which is what
|
|
108
|
+
// the real TTFT samples look like.
|
|
109
|
+
const random = makeRandom(20260728)
|
|
110
|
+
const samples = Array.from({ length: 50_000 }, () => {
|
|
111
|
+
const u = Math.max(random(), 1e-9)
|
|
112
|
+
const v = Math.max(random(), 1e-9)
|
|
113
|
+
const normal = Math.sqrt(-2 * Math.log(u)) * Math.cos(2 * Math.PI * v)
|
|
114
|
+
return Math.max(1, Math.round(Math.exp(7.5 + 0.6 * normal)))
|
|
115
|
+
})
|
|
116
|
+
|
|
117
|
+
const histogram = histogramOf(samples)
|
|
118
|
+
for (const quantile of [0.5, 0.9, 0.95, 0.99]) {
|
|
119
|
+
const approximate = ttftPercentileFromHistogram(histogram, quantile)!
|
|
120
|
+
const exact = exactPercentile(samples, quantile)
|
|
121
|
+
expect(Math.abs(approximate - exact) / exact).toBeLessThan(0.02)
|
|
122
|
+
}
|
|
123
|
+
})
|
|
124
|
+
|
|
125
|
+
it('preserves the ordering between two models a few percent apart', () => {
|
|
126
|
+
// The page sorts by p50, and the real DeepSeek/MiniMax gap is ~8%. Bucketing
|
|
127
|
+
// must not be able to flip that.
|
|
128
|
+
const slower = histogramOf(
|
|
129
|
+
Array.from({ length: 10_000 }, (_, i) => 1981 + (i % 200)),
|
|
130
|
+
)
|
|
131
|
+
const faster = histogramOf(
|
|
132
|
+
Array.from({ length: 10_000 }, (_, i) => 1822 + (i % 200)),
|
|
133
|
+
)
|
|
134
|
+
|
|
135
|
+
expect(ttftPercentileFromHistogram(faster, 0.5)!).toBeLessThan(
|
|
136
|
+
ttftPercentileFromHistogram(slower, 0.5)!,
|
|
137
|
+
)
|
|
138
|
+
})
|
|
139
|
+
|
|
140
|
+
it('merges histograms additively, which is what hourly rollup relies on', () => {
|
|
141
|
+
// Percentiles are not additive, but counts are: a window percentile must
|
|
142
|
+
// equal the percentile of the merged distribution, not a blend of the parts.
|
|
143
|
+
const hourA = Array.from({ length: 3_000 }, (_, i) => 800 + (i % 400))
|
|
144
|
+
const hourB = Array.from({ length: 1_000 }, (_, i) => 9_000 + (i % 900))
|
|
145
|
+
|
|
146
|
+
const merged = histogramOf([...hourA, ...hourB])
|
|
147
|
+
const combined = new Map(histogramOf(hourA))
|
|
148
|
+
for (const [bucket, count] of histogramOf(hourB)) {
|
|
149
|
+
combined.set(bucket, (combined.get(bucket) ?? 0) + count)
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
expect(ttftPercentileFromHistogram(combined, 0.5)).toBe(
|
|
153
|
+
ttftPercentileFromHistogram(merged, 0.5),
|
|
154
|
+
)
|
|
155
|
+
expect(ttftPercentileFromHistogram(combined, 0.95)).toBe(
|
|
156
|
+
ttftPercentileFromHistogram(merged, 0.95),
|
|
157
|
+
)
|
|
158
|
+
// And the merged p95 lands in the slow hour, not on an average of the two.
|
|
159
|
+
expect(ttftPercentileFromHistogram(merged, 0.95)!).toBeGreaterThan(8_000)
|
|
160
|
+
})
|
|
161
|
+
|
|
162
|
+
it('does not require the caller to pre-sort buckets', () => {
|
|
163
|
+
const pairs: [number, number][] = [
|
|
164
|
+
[300, 10],
|
|
165
|
+
[100, 80],
|
|
166
|
+
[200, 10],
|
|
167
|
+
]
|
|
168
|
+
expect(ttftPercentileFromHistogram(pairs, 0.5)).toBe(ttftBucketMs(100))
|
|
169
|
+
expect(ttftPercentileFromHistogram([...pairs].reverse(), 0.5)).toBe(
|
|
170
|
+
ttftBucketMs(100),
|
|
171
|
+
)
|
|
172
|
+
})
|
|
173
|
+
|
|
174
|
+
it('reports the slowest occupied bucket for a quantile of 1', () => {
|
|
175
|
+
const histogram = histogramOf([100, 200, 30_000])
|
|
176
|
+
expect(ttftPercentileFromHistogram(histogram, 1)).toBe(
|
|
177
|
+
ttftBucketMs(ttftBucketIndex(30_000)),
|
|
178
|
+
)
|
|
179
|
+
})
|
|
180
|
+
})
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { describe, expect, it, spyOn } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { withTimeout } from '../promise'
|
|
4
|
+
|
|
5
|
+
describe('withTimeout', () => {
|
|
6
|
+
it('clears its timer when the wrapped promise rejects', async () => {
|
|
7
|
+
const timeoutId = 123 as unknown as ReturnType<typeof setTimeout>
|
|
8
|
+
const setTimeoutSpy = spyOn(globalThis, 'setTimeout').mockReturnValue(
|
|
9
|
+
timeoutId,
|
|
10
|
+
)
|
|
11
|
+
const clearTimeoutSpy = spyOn(globalThis, 'clearTimeout')
|
|
12
|
+
const error = new Error('expected rejection')
|
|
13
|
+
|
|
14
|
+
try {
|
|
15
|
+
await expect(withTimeout(Promise.reject(error), 15_000)).rejects.toBe(
|
|
16
|
+
error,
|
|
17
|
+
)
|
|
18
|
+
expect(clearTimeoutSpy).toHaveBeenCalledWith(timeoutId)
|
|
19
|
+
} finally {
|
|
20
|
+
setTimeoutSpy.mockRestore()
|
|
21
|
+
clearTimeoutSpy.mockRestore()
|
|
22
|
+
}
|
|
23
|
+
})
|
|
24
|
+
})
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { describe, expect, test } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { getZonedDayBounds, getZonedWeekBounds } from '../zoned-time'
|
|
4
|
+
|
|
5
|
+
describe('getZonedDayBounds', () => {
|
|
6
|
+
test('returns the current Pacific day bounds on a normal day', () => {
|
|
7
|
+
const bounds = getZonedDayBounds(
|
|
8
|
+
new Date('2026-04-17T16:00:00Z'),
|
|
9
|
+
'America/Los_Angeles',
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
expect(bounds.startsAt.toISOString()).toBe('2026-04-17T07:00:00.000Z')
|
|
13
|
+
expect(bounds.resetsAt.toISOString()).toBe('2026-04-18T07:00:00.000Z')
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
test('handles the shorter spring-forward Pacific day', () => {
|
|
17
|
+
const bounds = getZonedDayBounds(
|
|
18
|
+
new Date('2026-03-08T09:00:00Z'),
|
|
19
|
+
'America/Los_Angeles',
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
expect(bounds.startsAt.toISOString()).toBe('2026-03-08T08:00:00.000Z')
|
|
23
|
+
expect(bounds.resetsAt.toISOString()).toBe('2026-03-09T07:00:00.000Z')
|
|
24
|
+
})
|
|
25
|
+
|
|
26
|
+
test('handles the longer fall-back Pacific day', () => {
|
|
27
|
+
const bounds = getZonedDayBounds(
|
|
28
|
+
new Date('2026-11-01T09:00:00Z'),
|
|
29
|
+
'America/Los_Angeles',
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
expect(bounds.startsAt.toISOString()).toBe('2026-11-01T07:00:00.000Z')
|
|
33
|
+
expect(bounds.resetsAt.toISOString()).toBe('2026-11-02T08:00:00.000Z')
|
|
34
|
+
})
|
|
35
|
+
})
|
|
36
|
+
|
|
37
|
+
describe('getZonedWeekBounds', () => {
|
|
38
|
+
// The week is Monday-anchored by default. 2026-04-17 is a Friday; its week
|
|
39
|
+
// starts Monday 2026-04-13 and resets the following Monday 2026-04-20, both at
|
|
40
|
+
// Pacific midnight (07:00Z during PDT).
|
|
41
|
+
test('returns Monday→Monday Pacific bounds for a mid-week day', () => {
|
|
42
|
+
const bounds = getZonedWeekBounds(
|
|
43
|
+
new Date('2026-04-17T16:00:00Z'),
|
|
44
|
+
'America/Los_Angeles',
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
expect(bounds.startsAt.toISOString()).toBe('2026-04-13T07:00:00.000Z')
|
|
48
|
+
expect(bounds.resetsAt.toISOString()).toBe('2026-04-20T07:00:00.000Z')
|
|
49
|
+
})
|
|
50
|
+
|
|
51
|
+
test('groups Sunday into the week that started the prior Monday', () => {
|
|
52
|
+
// 2026-04-19 is the Sunday of the same week, so it must yield identical
|
|
53
|
+
// bounds to the Friday case (Sunday is the LAST day of a Monday-week).
|
|
54
|
+
const bounds = getZonedWeekBounds(
|
|
55
|
+
new Date('2026-04-19T18:00:00Z'),
|
|
56
|
+
'America/Los_Angeles',
|
|
57
|
+
)
|
|
58
|
+
|
|
59
|
+
expect(bounds.startsAt.toISOString()).toBe('2026-04-13T07:00:00.000Z')
|
|
60
|
+
expect(bounds.resetsAt.toISOString()).toBe('2026-04-20T07:00:00.000Z')
|
|
61
|
+
})
|
|
62
|
+
|
|
63
|
+
test('handles the spring-forward week (start in PST, reset in PDT)', () => {
|
|
64
|
+
// 2026-03-08 (DST switch day) is a Sunday; its week started Monday
|
|
65
|
+
// 2026-03-02 at PST midnight (08:00Z) and resets Monday 2026-03-09 at PDT
|
|
66
|
+
// midnight (07:00Z) — the week itself is one hour short.
|
|
67
|
+
const bounds = getZonedWeekBounds(
|
|
68
|
+
new Date('2026-03-08T18:00:00Z'),
|
|
69
|
+
'America/Los_Angeles',
|
|
70
|
+
)
|
|
71
|
+
|
|
72
|
+
expect(bounds.startsAt.toISOString()).toBe('2026-03-02T08:00:00.000Z')
|
|
73
|
+
expect(bounds.resetsAt.toISOString()).toBe('2026-03-09T07:00:00.000Z')
|
|
74
|
+
})
|
|
75
|
+
|
|
76
|
+
test('honors a Sunday week start when requested', () => {
|
|
77
|
+
// weekStartsOn=0 → the Friday 2026-04-17 belongs to the week starting
|
|
78
|
+
// Sunday 2026-04-12.
|
|
79
|
+
const bounds = getZonedWeekBounds(
|
|
80
|
+
new Date('2026-04-17T16:00:00Z'),
|
|
81
|
+
'America/Los_Angeles',
|
|
82
|
+
0,
|
|
83
|
+
)
|
|
84
|
+
|
|
85
|
+
expect(bounds.startsAt.toISOString()).toBe('2026-04-12T07:00:00.000Z')
|
|
86
|
+
expect(bounds.resetsAt.toISOString()).toBe('2026-04-19T07:00:00.000Z')
|
|
87
|
+
})
|
|
88
|
+
})
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browser-like user agent passed to ad providers for targeting and fraud
|
|
3
|
+
* screening. Keep this shared by every native client so one surface cannot
|
|
4
|
+
* accidentally fall back to a runtime UA such as `Bun/<version>`.
|
|
5
|
+
*
|
|
6
|
+
* Chrome version needs bumping periodically because stale UAs look bot-like to
|
|
7
|
+
* ad networks. Last bumped: 2026-04-21. Revisit roughly every six months.
|
|
8
|
+
*/
|
|
9
|
+
const AD_CHROME_VERSION = '124.0.0.0'
|
|
10
|
+
|
|
11
|
+
const AD_USER_AGENTS: Record<string, string> = {
|
|
12
|
+
darwin: `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/${AD_CHROME_VERSION} Safari/537.36`,
|
|
13
|
+
win32: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/${AD_CHROME_VERSION} Safari/537.36`,
|
|
14
|
+
linux: `Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/${AD_CHROME_VERSION} Safari/537.36`,
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export function getAdUserAgent(platform: string = process.platform): string {
|
|
18
|
+
const platformKey =
|
|
19
|
+
platform === 'macos'
|
|
20
|
+
? 'darwin'
|
|
21
|
+
: platform === 'windows'
|
|
22
|
+
? 'win32'
|
|
23
|
+
: platform
|
|
24
|
+
return AD_USER_AGENTS[platformKey] ?? AD_USER_AGENTS.linux
|
|
25
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Utility functions for working with agent template files
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import type { DynamicAgentTemplate } from '../types/dynamic-agent-template'
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Determines if a file is a valid custom agent template file.
|
|
9
|
+
*
|
|
10
|
+
* Custom agent files must:
|
|
11
|
+
* - End with .ts extension
|
|
12
|
+
* - NOT end with .d.ts (TypeScript declaration files)
|
|
13
|
+
*
|
|
14
|
+
* @param fileName - The name of the file to check
|
|
15
|
+
* @returns true if the file is a valid custom agent template
|
|
16
|
+
*/
|
|
17
|
+
export function isCustomAgentFile(fileName: string): boolean {
|
|
18
|
+
return fileName.endsWith('.ts') && !fileName.endsWith('.d.ts')
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Filters a list of file names to only include valid custom agent template files.
|
|
23
|
+
*
|
|
24
|
+
* @param fileNames - Array of file names to filter
|
|
25
|
+
* @returns Array of file names that are valid custom agent templates
|
|
26
|
+
*/
|
|
27
|
+
export function filterCustomAgentFiles(fileNames: string[]): string[] {
|
|
28
|
+
return fileNames.filter(isCustomAgentFile)
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Filters an object of file paths/templates to only include valid custom agent templates.
|
|
33
|
+
*
|
|
34
|
+
* @param agentTemplates - Object with file paths as keys
|
|
35
|
+
* @returns Filtered object containing only valid custom agent templates
|
|
36
|
+
*/
|
|
37
|
+
export function filterCustomAgentTemplates<T>(
|
|
38
|
+
agentTemplates: Record<string, T>,
|
|
39
|
+
): Record<string, T> {
|
|
40
|
+
return Object.fromEntries(
|
|
41
|
+
Object.entries(agentTemplates).filter(([filePath]) =>
|
|
42
|
+
isCustomAgentFile(filePath),
|
|
43
|
+
),
|
|
44
|
+
)
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Extracts the agent ID from a TypeScript file name.
|
|
49
|
+
*
|
|
50
|
+
* @param fileName - The TypeScript file name (e.g., 'my-agent.ts')
|
|
51
|
+
* @returns The agent ID (e.g., 'my-agent')
|
|
52
|
+
*/
|
|
53
|
+
export function extractAgentIdFromFileName(fileName: string): string {
|
|
54
|
+
return fileName.replace('.ts', '')
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Filters agent templates to include only valid ones, excluding generated files and invalid entries.
|
|
59
|
+
*
|
|
60
|
+
* This method handles various edge cases:
|
|
61
|
+
* - TypeScript declaration files (.d.ts) generated by tools
|
|
62
|
+
* - Frontend key normalization (strips .ts extensions)
|
|
63
|
+
* - Files without extensions
|
|
64
|
+
* - Invalid or empty template data
|
|
65
|
+
*
|
|
66
|
+
* @param agentTemplates - Object with file paths as keys and templates as values
|
|
67
|
+
* @returns Filtered object containing only valid agent templates
|
|
68
|
+
*/
|
|
69
|
+
export function filterValidAgentTemplates(
|
|
70
|
+
agentTemplates: Record<string, DynamicAgentTemplate>,
|
|
71
|
+
): Record<string, DynamicAgentTemplate> {
|
|
72
|
+
return Object.fromEntries(
|
|
73
|
+
Object.entries(agentTemplates).filter(([key, template]) => {
|
|
74
|
+
// Skip if no template data
|
|
75
|
+
if (!template) {
|
|
76
|
+
return false
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// Skip TypeScript declaration files (.d.ts) - these are generated artifacts
|
|
80
|
+
if (key.endsWith('.d.ts')) {
|
|
81
|
+
return false
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// Skip files with invalid extensions (but allow files without extensions)
|
|
85
|
+
// This handles cases where frontend strips .ts but we want to exclude other extensions
|
|
86
|
+
if (key.includes('.') && !key.endsWith('.ts')) {
|
|
87
|
+
// Allow common valid extensions for agent templates
|
|
88
|
+
const validExtensions = ['.ts', '.js', '.mjs']
|
|
89
|
+
const hasValidExtension = validExtensions.some((ext) =>
|
|
90
|
+
key.endsWith(ext),
|
|
91
|
+
)
|
|
92
|
+
if (!hasValidExtension) {
|
|
93
|
+
return false
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// Skip if template doesn't have required fields
|
|
98
|
+
if (!template.id || typeof template.id !== 'string') {
|
|
99
|
+
return false
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// Skip if template has invalid structure
|
|
103
|
+
if (typeof template !== 'object') {
|
|
104
|
+
return false
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
return true
|
|
108
|
+
}),
|
|
109
|
+
)
|
|
110
|
+
}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Parse agent ID to extract publisher, agent name, and version
|
|
3
|
+
* Supports formats:
|
|
4
|
+
* - publisher/agentId[@version]
|
|
5
|
+
* - agentId[@version] (no publisher)
|
|
6
|
+
*/
|
|
7
|
+
export function parseAgentId(fullAgentId: string): {
|
|
8
|
+
publisherId?: string
|
|
9
|
+
agentId?: string
|
|
10
|
+
version?: string
|
|
11
|
+
givenAgentId: string
|
|
12
|
+
} {
|
|
13
|
+
// Check if it's in the publisher/agent-id[@version] format
|
|
14
|
+
const parts = fullAgentId.split('/')
|
|
15
|
+
|
|
16
|
+
if (parts.length === 2) {
|
|
17
|
+
// Full format: publisher/agentId[@version]
|
|
18
|
+
const [publisherId, agentNameWithVersion] = parts
|
|
19
|
+
|
|
20
|
+
if (!publisherId || !agentNameWithVersion) {
|
|
21
|
+
return {
|
|
22
|
+
publisherId: undefined,
|
|
23
|
+
agentId: undefined,
|
|
24
|
+
version: undefined,
|
|
25
|
+
givenAgentId: fullAgentId,
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Check for version suffix
|
|
30
|
+
const versionMatch = agentNameWithVersion.match(/^(.+)@(.+)$/)
|
|
31
|
+
if (versionMatch) {
|
|
32
|
+
const [, agentId, version] = versionMatch
|
|
33
|
+
return { publisherId, agentId, version, givenAgentId: fullAgentId }
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return {
|
|
37
|
+
publisherId,
|
|
38
|
+
agentId: agentNameWithVersion,
|
|
39
|
+
givenAgentId: fullAgentId,
|
|
40
|
+
}
|
|
41
|
+
} else if (parts.length === 1) {
|
|
42
|
+
// Just agent name (for backward compatibility)
|
|
43
|
+
const agentNameWithVersion = parts[0]
|
|
44
|
+
|
|
45
|
+
if (!agentNameWithVersion) {
|
|
46
|
+
return {
|
|
47
|
+
publisherId: undefined,
|
|
48
|
+
agentId: undefined,
|
|
49
|
+
version: undefined,
|
|
50
|
+
givenAgentId: fullAgentId,
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// Check for version suffix
|
|
55
|
+
const versionMatch = agentNameWithVersion.match(/^(.+)@(.+)$/)
|
|
56
|
+
if (versionMatch) {
|
|
57
|
+
const [, agentId, version] = versionMatch
|
|
58
|
+
return {
|
|
59
|
+
publisherId: undefined,
|
|
60
|
+
agentId,
|
|
61
|
+
version,
|
|
62
|
+
givenAgentId: fullAgentId,
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return {
|
|
67
|
+
publisherId: undefined,
|
|
68
|
+
agentId: agentNameWithVersion,
|
|
69
|
+
version: undefined,
|
|
70
|
+
givenAgentId: fullAgentId,
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
return {
|
|
75
|
+
publisherId: undefined,
|
|
76
|
+
agentId: undefined,
|
|
77
|
+
version: undefined,
|
|
78
|
+
givenAgentId: fullAgentId,
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Parse published agent ID to extract publisher, agent name, and optionally version
|
|
84
|
+
*
|
|
85
|
+
* If the agent ID is not in the publisher/agent format, return null
|
|
86
|
+
*/
|
|
87
|
+
export function parsePublishedAgentId(fullAgentId: string): {
|
|
88
|
+
publisherId: string
|
|
89
|
+
agentId: string
|
|
90
|
+
version?: string
|
|
91
|
+
} | null {
|
|
92
|
+
const { publisherId, agentId, version } = parseAgentId(fullAgentId)
|
|
93
|
+
if (!publisherId || !agentId) {
|
|
94
|
+
return null
|
|
95
|
+
}
|
|
96
|
+
return {
|
|
97
|
+
publisherId,
|
|
98
|
+
agentId,
|
|
99
|
+
version,
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Normalizes an agent ID for lookup by accepting underscores as aliases for
|
|
105
|
+
* hyphens in the agent-name segment. Publisher IDs and version strings are
|
|
106
|
+
* preserved as written.
|
|
107
|
+
*/
|
|
108
|
+
export function normalizeAgentIdForLookup(fullAgentId: string): string {
|
|
109
|
+
const parts = fullAgentId.split('/')
|
|
110
|
+
if (parts.length > 2) {
|
|
111
|
+
return fullAgentId
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
const normalizeNameWithVersion = (agentNameWithVersion: string) => {
|
|
115
|
+
const versionStart = agentNameWithVersion.indexOf('@')
|
|
116
|
+
const agentName =
|
|
117
|
+
versionStart === -1
|
|
118
|
+
? agentNameWithVersion
|
|
119
|
+
: agentNameWithVersion.slice(0, versionStart)
|
|
120
|
+
const version =
|
|
121
|
+
versionStart === -1 ? '' : agentNameWithVersion.slice(versionStart)
|
|
122
|
+
|
|
123
|
+
return `${agentName.replace(/_/g, '-')}${version}`
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
if (parts.length === 1) {
|
|
127
|
+
return normalizeNameWithVersion(fullAgentId)
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
const [publisherId, agentNameWithVersion] = parts
|
|
131
|
+
if (!publisherId || !agentNameWithVersion) {
|
|
132
|
+
return fullAgentId
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
return `${publisherId}/${normalizeNameWithVersion(agentNameWithVersion)}`
|
|
136
|
+
}
|