@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,379 @@
|
|
|
1
|
+
import { describe, expect, test } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
detectForeignAnvilClient,
|
|
5
|
+
ANVIL_DOWNGRADE_MODEL_ID,
|
|
6
|
+
ANVIL_SIGNATURE_TOOL_NAMES,
|
|
7
|
+
GENERIC_TOOL_NAMES,
|
|
8
|
+
resolveForeignClientDowngrade,
|
|
9
|
+
} from '../constants/foreign-client-signals'
|
|
10
|
+
import { toolNames } from '../tools/constants'
|
|
11
|
+
|
|
12
|
+
function tools(...names: string[]) {
|
|
13
|
+
return names.map((name) => ({ type: 'function', function: { name } }))
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/** Toolsets observed on real anvil traffic over 24h of DeepSeek V4 Flash. */
|
|
17
|
+
const ANVIL_TOOLSETS = [
|
|
18
|
+
// CLI / desktop root agent
|
|
19
|
+
tools(
|
|
20
|
+
'ask_user',
|
|
21
|
+
'basher',
|
|
22
|
+
'browser_use',
|
|
23
|
+
'code_reviewer_deepseek_flash',
|
|
24
|
+
'code_searcher',
|
|
25
|
+
'context_pruner',
|
|
26
|
+
'file_picker',
|
|
27
|
+
'glob',
|
|
28
|
+
'gravity_index',
|
|
29
|
+
'list_directory',
|
|
30
|
+
'read_files',
|
|
31
|
+
'read_subtree',
|
|
32
|
+
),
|
|
33
|
+
// desktop thread agent
|
|
34
|
+
tools(
|
|
35
|
+
'basher',
|
|
36
|
+
'browser_check',
|
|
37
|
+
'code_reviewer_deepseek_flash',
|
|
38
|
+
'code_searcher',
|
|
39
|
+
'context_pruner',
|
|
40
|
+
'end_turn',
|
|
41
|
+
'file_picker',
|
|
42
|
+
'glob',
|
|
43
|
+
'list_directory',
|
|
44
|
+
'preview_click',
|
|
45
|
+
'preview_evaluate',
|
|
46
|
+
),
|
|
47
|
+
// chat surface
|
|
48
|
+
tools(
|
|
49
|
+
'context_pruner',
|
|
50
|
+
'gravity_index',
|
|
51
|
+
'render_ui',
|
|
52
|
+
'researcher_web',
|
|
53
|
+
'spawn_agents',
|
|
54
|
+
'suggest_followups',
|
|
55
|
+
'thinker_gemini',
|
|
56
|
+
),
|
|
57
|
+
// helper agent
|
|
58
|
+
tools('add_message', 'read_files', 'run_terminal_command', 'set_output'),
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
/** Toolsets observed proxying our free endpoint, by harness. */
|
|
62
|
+
const FOREIGN_TOOLSETS: Array<[string, ReturnType<typeof tools>]> = [
|
|
63
|
+
['claude-code', tools('Bash', 'Edit', 'Glob', 'Grep', 'Read', 'Write')],
|
|
64
|
+
[
|
|
65
|
+
'opencode',
|
|
66
|
+
tools(
|
|
67
|
+
'ask',
|
|
68
|
+
'bash',
|
|
69
|
+
'edit',
|
|
70
|
+
'eval',
|
|
71
|
+
'glob',
|
|
72
|
+
'grep',
|
|
73
|
+
'hub',
|
|
74
|
+
'read',
|
|
75
|
+
'task',
|
|
76
|
+
'todo',
|
|
77
|
+
'web_search',
|
|
78
|
+
'write',
|
|
79
|
+
),
|
|
80
|
+
],
|
|
81
|
+
[
|
|
82
|
+
'cline',
|
|
83
|
+
tools(
|
|
84
|
+
'list_files',
|
|
85
|
+
'read_file',
|
|
86
|
+
'replace_in_file',
|
|
87
|
+
'search_files',
|
|
88
|
+
'write_file',
|
|
89
|
+
),
|
|
90
|
+
],
|
|
91
|
+
[
|
|
92
|
+
'novel-farm',
|
|
93
|
+
tools(
|
|
94
|
+
'check_consistency',
|
|
95
|
+
'commit_chapter',
|
|
96
|
+
'draft_chapter',
|
|
97
|
+
'edit_chapter',
|
|
98
|
+
'novel_context',
|
|
99
|
+
'plan_chapter',
|
|
100
|
+
'read_chapter',
|
|
101
|
+
),
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
'pentest-harness',
|
|
105
|
+
tools(
|
|
106
|
+
'analyze_target_graph',
|
|
107
|
+
'delegate_task',
|
|
108
|
+
'edit_source_code',
|
|
109
|
+
'execute_command',
|
|
110
|
+
'install_tool',
|
|
111
|
+
'python_execute',
|
|
112
|
+
'read_file',
|
|
113
|
+
),
|
|
114
|
+
],
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
describe('detectForeignAnvilClient', () => {
|
|
118
|
+
test('the signature is every non-generic tool we define', () => {
|
|
119
|
+
// Derived, not hand-listed: a tool added to `toolNames` joins the signature
|
|
120
|
+
// automatically. That is the rot that flagged researcher-web — a
|
|
121
|
+
// hand-picked list simply never grew to cover it.
|
|
122
|
+
const known = new Set<string>(toolNames)
|
|
123
|
+
for (const name of known) {
|
|
124
|
+
expect(ANVIL_SIGNATURE_TOOL_NAMES.has(name)).toBe(
|
|
125
|
+
!GENERIC_TOOL_NAMES.has(name),
|
|
126
|
+
)
|
|
127
|
+
}
|
|
128
|
+
// Every generic name must be one we actually define, or it is dead weight.
|
|
129
|
+
for (const name of GENERIC_TOOL_NAMES) {
|
|
130
|
+
expect(known.has(name)).toBe(true)
|
|
131
|
+
}
|
|
132
|
+
expect(ANVIL_SIGNATURE_TOOL_NAMES.size).toBeGreaterThan(20)
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
test('clears real anvil toolsets', () => {
|
|
136
|
+
for (const toolset of ANVIL_TOOLSETS) {
|
|
137
|
+
expect(detectForeignAnvilClient({ tools: toolset }).signal).toBeNull()
|
|
138
|
+
}
|
|
139
|
+
})
|
|
140
|
+
|
|
141
|
+
test.each(FOREIGN_TOOLSETS)('flags %s', (_name, toolset) => {
|
|
142
|
+
expect(detectForeignAnvilClient({ tools: toolset }).signal).toBe(
|
|
143
|
+
'foreign_toolset',
|
|
144
|
+
)
|
|
145
|
+
})
|
|
146
|
+
|
|
147
|
+
test('sharing a few generic names does not launder a foreign harness', () => {
|
|
148
|
+
// opencode sends `glob` and `web_search`, which we define — but both are
|
|
149
|
+
// generic, so neither is in the signature and the overlap buys it nothing.
|
|
150
|
+
expect(
|
|
151
|
+
detectForeignAnvilClient({
|
|
152
|
+
tools: tools('glob', 'web_search', 'bash', 'edit', 'write'),
|
|
153
|
+
}).signal,
|
|
154
|
+
).toBe('foreign_toolset')
|
|
155
|
+
})
|
|
156
|
+
|
|
157
|
+
test('a toolset of only generic names is foreign', () => {
|
|
158
|
+
// Measured over 30 days: 406 users on spoofed `base2-free-*` agent ids send
|
|
159
|
+
// a bare `web_search` and nothing else. No agent we ship has a toolset of
|
|
160
|
+
// only generic names — every single-tool agent of ours uses a distinctive
|
|
161
|
+
// one (`run_terminal_command`, `spawn_agents`, `read_docs`, `set_output`).
|
|
162
|
+
expect(
|
|
163
|
+
detectForeignAnvilClient({ tools: tools('web_search') }).signal,
|
|
164
|
+
).toBe('foreign_toolset')
|
|
165
|
+
expect(
|
|
166
|
+
detectForeignAnvilClient({ tools: tools('glob', 'web_search') }).signal,
|
|
167
|
+
).toBe('foreign_toolset')
|
|
168
|
+
})
|
|
169
|
+
|
|
170
|
+
test('our toolset wins over sampling params', () => {
|
|
171
|
+
// 16 users in one day sent our tools AND set params. Downgrading them is
|
|
172
|
+
// the false positive this ordering exists to prevent.
|
|
173
|
+
expect(
|
|
174
|
+
detectForeignAnvilClient({
|
|
175
|
+
tools: tools('ask_user', 'read_files'),
|
|
176
|
+
temperature: 0.3,
|
|
177
|
+
max_tokens: 32000,
|
|
178
|
+
}).signal,
|
|
179
|
+
).toBeNull()
|
|
180
|
+
})
|
|
181
|
+
|
|
182
|
+
test('flags sampling params only when no tools are offered', () => {
|
|
183
|
+
expect(detectForeignAnvilClient({ temperature: 0.7 }).signal).toBe(
|
|
184
|
+
'sampling_params',
|
|
185
|
+
)
|
|
186
|
+
expect(detectForeignAnvilClient({ top_p: 0.9 }).signal).toBe(
|
|
187
|
+
'sampling_params',
|
|
188
|
+
)
|
|
189
|
+
expect(detectForeignAnvilClient({ max_tokens: 4096 }).signal).toBe(
|
|
190
|
+
'sampling_params',
|
|
191
|
+
)
|
|
192
|
+
expect(
|
|
193
|
+
detectForeignAnvilClient({ max_completion_tokens: 4096 }).signal,
|
|
194
|
+
).toBe('sampling_params')
|
|
195
|
+
})
|
|
196
|
+
|
|
197
|
+
test('clears a tool-free request that leaves sampling params unset', () => {
|
|
198
|
+
// Our helper agents (chat titles, compaction) send no tools at all.
|
|
199
|
+
expect(detectForeignAnvilClient({}).signal).toBeNull()
|
|
200
|
+
expect(detectForeignAnvilClient({ tools: [] }).signal).toBeNull()
|
|
201
|
+
})
|
|
202
|
+
|
|
203
|
+
test('explicit nulls are not treated as set', () => {
|
|
204
|
+
// Regression: this test used to pass `undefined` while claiming to cover
|
|
205
|
+
// `null`, so it passed against a detector that flagged every explicit
|
|
206
|
+
// null. A client that serializes its whole body sends `temperature: null`
|
|
207
|
+
// rather than omitting the key, and that is unset.
|
|
208
|
+
for (const body of [
|
|
209
|
+
{ temperature: null },
|
|
210
|
+
{ top_p: null },
|
|
211
|
+
{ max_tokens: null },
|
|
212
|
+
{ max_completion_tokens: null },
|
|
213
|
+
{ temperature: null, top_p: null, max_tokens: null },
|
|
214
|
+
]) {
|
|
215
|
+
expect(detectForeignAnvilClient(body as never).signal).toBeNull()
|
|
216
|
+
}
|
|
217
|
+
expect(
|
|
218
|
+
detectForeignAnvilClient({
|
|
219
|
+
temperature: undefined,
|
|
220
|
+
top_p: undefined,
|
|
221
|
+
max_tokens: undefined,
|
|
222
|
+
}).signal,
|
|
223
|
+
).toBeNull()
|
|
224
|
+
})
|
|
225
|
+
|
|
226
|
+
test('zero is a real choice and stays flagged', () => {
|
|
227
|
+
// `!= null` must not swallow falsy-but-set values.
|
|
228
|
+
expect(detectForeignAnvilClient({ temperature: 0 }).signal).toBe(
|
|
229
|
+
'sampling_params',
|
|
230
|
+
)
|
|
231
|
+
expect(detectForeignAnvilClient({ top_p: 0 }).signal).toBe(
|
|
232
|
+
'sampling_params',
|
|
233
|
+
)
|
|
234
|
+
})
|
|
235
|
+
|
|
236
|
+
test('tolerates malformed tool entries without throwing', () => {
|
|
237
|
+
for (const tools of [null, undefined, 'nope', [], [null], [{}], [{ function: {} }]]) {
|
|
238
|
+
expect(() =>
|
|
239
|
+
detectForeignAnvilClient({ tools } as never),
|
|
240
|
+
).not.toThrow()
|
|
241
|
+
}
|
|
242
|
+
// Tools present but unparseable read as "no tools offered", so the request
|
|
243
|
+
// falls through to the param check rather than being flagged on a name
|
|
244
|
+
// list we could not actually read.
|
|
245
|
+
expect(detectForeignAnvilClient({ tools: [{}] }).signal).toBeNull()
|
|
246
|
+
})
|
|
247
|
+
|
|
248
|
+
test('truncates caller-controlled tool names before they reach logs', () => {
|
|
249
|
+
const verdict = detectForeignAnvilClient({
|
|
250
|
+
tools: [{ type: 'function', function: { name: 'x'.repeat(5000) } }],
|
|
251
|
+
})
|
|
252
|
+
expect(verdict.signal).toBe('foreign_toolset')
|
|
253
|
+
expect(verdict.sampleToolNames[0]!.length).toBeLessThanOrEqual(64)
|
|
254
|
+
})
|
|
255
|
+
|
|
256
|
+
test('reports bounded evidence for the log line', () => {
|
|
257
|
+
const verdict = detectForeignAnvilClient({
|
|
258
|
+
tools: tools('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'),
|
|
259
|
+
})
|
|
260
|
+
expect(verdict.toolCount).toBe(10)
|
|
261
|
+
expect(verdict.sampleToolNames).toHaveLength(8)
|
|
262
|
+
})
|
|
263
|
+
|
|
264
|
+
test.each([
|
|
265
|
+
['researcher-web', ['web_search', 'read_url']],
|
|
266
|
+
['researcher-docs', ['read_docs']],
|
|
267
|
+
['anvil-desktop-autorun', ['decide']],
|
|
268
|
+
['basher', ['run_terminal_command']],
|
|
269
|
+
['file-picker', ['spawn_agents']],
|
|
270
|
+
])('clears our own %s toolset', (_agent, names) => {
|
|
271
|
+
// Backtested over 30 days against the signature alone: researcher-web was
|
|
272
|
+
// flagged on 100% of 334,042 requests from 4,821 users, autorun on 100% of
|
|
273
|
+
// 2,904 from 41. `web_search` cannot join the signature (opencode ships
|
|
274
|
+
// it), so these clear by the every-tool-is-ours rule instead.
|
|
275
|
+
expect(detectForeignAnvilClient({ tools: tools(...names) }).signal).toBeNull()
|
|
276
|
+
})
|
|
277
|
+
|
|
278
|
+
test('borrowing one distinctive name clears an otherwise foreign toolset', () => {
|
|
279
|
+
// Known and accepted, not an oversight. `some` semantics are what let an
|
|
280
|
+
// MCP user attach `ghidra__*` alongside our tools without being flagged,
|
|
281
|
+
// and the cost is that a proxy declaring one of our names is cleared too.
|
|
282
|
+
// Self-limiting: the borrowed name becomes a GENERIC_TOOL_NAMES candidate
|
|
283
|
+
// the moment it shows up in the logs, and the proxy has to actually
|
|
284
|
+
// implement the tool for its own loop to keep working.
|
|
285
|
+
expect(
|
|
286
|
+
detectForeignAnvilClient({ tools: tools('read_files', 'Bash') }).signal,
|
|
287
|
+
).toBeNull()
|
|
288
|
+
})
|
|
289
|
+
|
|
290
|
+
test('a root agent offering no tools is a bare completion proxy', () => {
|
|
291
|
+
// Our roots always ship their toolset — that is what makes them agentic.
|
|
292
|
+
// Measured over 7 days with assistant-response rows excluded, the desktop
|
|
293
|
+
// roots send zero tool-free requests (0 of 683,151 for -v3, 0 of 294,823
|
|
294
|
+
// for -worktree) and the CLI roots 0.30%/2.81%. All 18 users sampled across
|
|
295
|
+
// that tail were non-coding automation.
|
|
296
|
+
expect(detectForeignAnvilClient({}, true).signal).toBe(
|
|
297
|
+
'root_agent_no_tools',
|
|
298
|
+
)
|
|
299
|
+
// Sampling params do not change the verdict for a root.
|
|
300
|
+
expect(detectForeignAnvilClient({ temperature: 0.7 }, true).signal).toBe(
|
|
301
|
+
'root_agent_no_tools',
|
|
302
|
+
)
|
|
303
|
+
})
|
|
304
|
+
|
|
305
|
+
test('a root agent sending our tools is still ours', () => {
|
|
306
|
+
// Evading root_agent_no_tools means sending our toolset, at which point the
|
|
307
|
+
// toolset check applies instead — the same convergent property.
|
|
308
|
+
expect(
|
|
309
|
+
detectForeignAnvilClient({ tools: tools('ask_user') }, true).signal,
|
|
310
|
+
).toBeNull()
|
|
311
|
+
expect(
|
|
312
|
+
detectForeignAnvilClient({ tools: tools('Bash', 'Edit') }, true).signal,
|
|
313
|
+
).toBe('foreign_toolset')
|
|
314
|
+
})
|
|
315
|
+
|
|
316
|
+
test('a tool-free SUBagent is untouched', () => {
|
|
317
|
+
// Our helper agents (chat titles, compaction, researcher-docs) legitimately
|
|
318
|
+
// send no tools; only ROOT agents are agentic by definition. Defaulting
|
|
319
|
+
// isRootAgent to false keeps every non-root caller on the old behaviour.
|
|
320
|
+
expect(detectForeignAnvilClient({}).signal).toBeNull()
|
|
321
|
+
expect(detectForeignAnvilClient({}, false).signal).toBeNull()
|
|
322
|
+
})
|
|
323
|
+
|
|
324
|
+
test('downgrade target is the free OpenRouter variant', () => {
|
|
325
|
+
expect(ANVIL_DOWNGRADE_MODEL_ID).toBe('inclusionai/ling-3.0-tiny:free')
|
|
326
|
+
expect(ANVIL_DOWNGRADE_MODEL_ID.endsWith(':free')).toBe(true)
|
|
327
|
+
})
|
|
328
|
+
})
|
|
329
|
+
|
|
330
|
+
describe('resolveForeignClientDowngrade', () => {
|
|
331
|
+
const foreign = { tools: tools('Bash', 'Edit') }
|
|
332
|
+
const params = { max_completion_tokens: 977_725 }
|
|
333
|
+
const ours = { tools: tools('ask_user', 'read_files') }
|
|
334
|
+
|
|
335
|
+
test('always downgrades a foreign toolset', () => {
|
|
336
|
+
// Third-party clients are a terms violation: Anvil funds free inference
|
|
337
|
+
// with ads only our own clients render, so a proxied request takes the
|
|
338
|
+
// cost and returns none of the revenue. There is no mode in which this is
|
|
339
|
+
// served what it asked for.
|
|
340
|
+
expect(resolveForeignClientDowngrade({ body: foreign })!.downgradeTo).toBe(
|
|
341
|
+
ANVIL_DOWNGRADE_MODEL_ID,
|
|
342
|
+
)
|
|
343
|
+
})
|
|
344
|
+
|
|
345
|
+
test('reports but never acts on a tool-free root agent', () => {
|
|
346
|
+
// Deliberately report-only. The 30-day backtest found 3,729 users who mix
|
|
347
|
+
// tool-free root requests into real agentic traffic, 999 of whose sessions
|
|
348
|
+
// contain both — enforcing per-request swaps the model mid-session for real
|
|
349
|
+
// coding runs. Only 417 users are pure proxies, and no run-length threshold
|
|
350
|
+
// separates them (the MIXED cohort holds the longest tool-free run, 11,094,
|
|
351
|
+
// vs 2,153 for the proxies). Flipping this to enforce needs an
|
|
352
|
+
// account-level verdict, not a change here.
|
|
353
|
+
const d = resolveForeignClientDowngrade({ body: {}, isRootAgent: true })!
|
|
354
|
+
expect(d.signal).toBe('root_agent_no_tools')
|
|
355
|
+
expect(d.downgradeTo).toBeNull()
|
|
356
|
+
})
|
|
357
|
+
|
|
358
|
+
test('leaves a tool-free non-root request alone', () => {
|
|
359
|
+
expect(resolveForeignClientDowngrade({ body: {} })).toBeNull()
|
|
360
|
+
})
|
|
361
|
+
|
|
362
|
+
test('reports but never acts on the sampling-param signal', () => {
|
|
363
|
+
const decision = resolveForeignClientDowngrade({ body: params })!
|
|
364
|
+
expect(decision.signal).toBe('sampling_params')
|
|
365
|
+
expect(decision.downgradeTo).toBeNull()
|
|
366
|
+
})
|
|
367
|
+
|
|
368
|
+
test('a anvil toolset is never reported', () => {
|
|
369
|
+
expect(resolveForeignClientDowngrade({ body: ours })).toBeNull()
|
|
370
|
+
})
|
|
371
|
+
|
|
372
|
+
test('does not re-downgrade a request already on the downgrade model', () => {
|
|
373
|
+
const decision = resolveForeignClientDowngrade({
|
|
374
|
+
body: { ...foreign, model: ANVIL_DOWNGRADE_MODEL_ID },
|
|
375
|
+
})!
|
|
376
|
+
expect(decision.signal).toBe('foreign_toolset')
|
|
377
|
+
expect(decision.downgradeTo).toBeNull()
|
|
378
|
+
})
|
|
379
|
+
})
|