@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,167 @@
|
|
|
1
|
+
import { describe, test, expect, afterEach } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { getCiEnv, ciEnv, isCI } from '../env-ci'
|
|
4
|
+
import { createTestCiEnv } from '../testing-env-ci'
|
|
5
|
+
|
|
6
|
+
describe('env-ci', () => {
|
|
7
|
+
describe('getCiEnv', () => {
|
|
8
|
+
const originalEnv = { ...process.env }
|
|
9
|
+
|
|
10
|
+
afterEach(() => {
|
|
11
|
+
// Restore original env
|
|
12
|
+
Object.keys(process.env).forEach((key) => {
|
|
13
|
+
if (!(key in originalEnv)) {
|
|
14
|
+
delete process.env[key]
|
|
15
|
+
}
|
|
16
|
+
})
|
|
17
|
+
Object.assign(process.env, originalEnv)
|
|
18
|
+
})
|
|
19
|
+
|
|
20
|
+
test('returns current process.env values for CI', () => {
|
|
21
|
+
process.env.CI = 'true'
|
|
22
|
+
const env = getCiEnv()
|
|
23
|
+
expect(env.CI).toBe('true')
|
|
24
|
+
})
|
|
25
|
+
|
|
26
|
+
test('returns current process.env values for GITHUB_ACTIONS', () => {
|
|
27
|
+
process.env.GITHUB_ACTIONS = 'true'
|
|
28
|
+
const env = getCiEnv()
|
|
29
|
+
expect(env.GITHUB_ACTIONS).toBe('true')
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
test('returns current process.env values for ANVIL_API_KEY', () => {
|
|
33
|
+
process.env.ANVIL_API_KEY = 'test-key-123'
|
|
34
|
+
const env = getCiEnv()
|
|
35
|
+
expect(env.ANVIL_API_KEY).toBe('test-key-123')
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
test('returns current process.env values for ANVIL_GITHUB_TOKEN', () => {
|
|
39
|
+
process.env.ANVIL_GITHUB_TOKEN = 'ghp_test_token'
|
|
40
|
+
const env = getCiEnv()
|
|
41
|
+
expect(env.ANVIL_GITHUB_TOKEN).toBe('ghp_test_token')
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
test('returns undefined for unset env vars', () => {
|
|
45
|
+
delete process.env.RENDER
|
|
46
|
+
const env = getCiEnv()
|
|
47
|
+
expect(env.RENDER).toBeUndefined()
|
|
48
|
+
})
|
|
49
|
+
|
|
50
|
+
test('returns a snapshot that does not change when process.env changes', () => {
|
|
51
|
+
process.env.CI = 'true'
|
|
52
|
+
const env = getCiEnv()
|
|
53
|
+
process.env.CI = 'false'
|
|
54
|
+
// The snapshot should still have the old value
|
|
55
|
+
expect(env.CI).toBe('true')
|
|
56
|
+
})
|
|
57
|
+
})
|
|
58
|
+
|
|
59
|
+
describe('ciEnv', () => {
|
|
60
|
+
test('is a CiEnv object', () => {
|
|
61
|
+
expect(ciEnv).toBeDefined()
|
|
62
|
+
expect(typeof ciEnv).toBe('object')
|
|
63
|
+
})
|
|
64
|
+
|
|
65
|
+
test('contains expected keys', () => {
|
|
66
|
+
expect('CI' in ciEnv).toBe(true)
|
|
67
|
+
expect('GITHUB_ACTIONS' in ciEnv).toBe(true)
|
|
68
|
+
expect('ANVIL_API_KEY' in ciEnv).toBe(true)
|
|
69
|
+
expect('ANVIL_GITHUB_TOKEN' in ciEnv).toBe(true)
|
|
70
|
+
})
|
|
71
|
+
})
|
|
72
|
+
|
|
73
|
+
describe('isCI', () => {
|
|
74
|
+
const originalEnv = { ...process.env }
|
|
75
|
+
|
|
76
|
+
afterEach(() => {
|
|
77
|
+
// Restore original env
|
|
78
|
+
Object.keys(process.env).forEach((key) => {
|
|
79
|
+
if (!(key in originalEnv)) {
|
|
80
|
+
delete process.env[key]
|
|
81
|
+
}
|
|
82
|
+
})
|
|
83
|
+
Object.assign(process.env, originalEnv)
|
|
84
|
+
})
|
|
85
|
+
|
|
86
|
+
test('returns true when CI=true', () => {
|
|
87
|
+
process.env.CI = 'true'
|
|
88
|
+
delete process.env.GITHUB_ACTIONS
|
|
89
|
+
expect(isCI()).toBe(true)
|
|
90
|
+
})
|
|
91
|
+
|
|
92
|
+
test('returns true when CI=1', () => {
|
|
93
|
+
process.env.CI = '1'
|
|
94
|
+
delete process.env.GITHUB_ACTIONS
|
|
95
|
+
expect(isCI()).toBe(true)
|
|
96
|
+
})
|
|
97
|
+
|
|
98
|
+
test('returns true when GITHUB_ACTIONS=true', () => {
|
|
99
|
+
delete process.env.CI
|
|
100
|
+
process.env.GITHUB_ACTIONS = 'true'
|
|
101
|
+
expect(isCI()).toBe(true)
|
|
102
|
+
})
|
|
103
|
+
|
|
104
|
+
test('returns false when neither CI nor GITHUB_ACTIONS is set', () => {
|
|
105
|
+
delete process.env.CI
|
|
106
|
+
delete process.env.GITHUB_ACTIONS
|
|
107
|
+
expect(isCI()).toBe(false)
|
|
108
|
+
})
|
|
109
|
+
|
|
110
|
+
test('returns false when CI=false', () => {
|
|
111
|
+
process.env.CI = 'false'
|
|
112
|
+
delete process.env.GITHUB_ACTIONS
|
|
113
|
+
expect(isCI()).toBe(false)
|
|
114
|
+
})
|
|
115
|
+
})
|
|
116
|
+
|
|
117
|
+
describe('createTestCiEnv', () => {
|
|
118
|
+
test('returns a CiEnv with default test values', () => {
|
|
119
|
+
const env = createTestCiEnv()
|
|
120
|
+
expect(env.ANVIL_API_KEY).toBe('test-api-key')
|
|
121
|
+
})
|
|
122
|
+
|
|
123
|
+
test('returns undefined for most vars by default', () => {
|
|
124
|
+
const env = createTestCiEnv()
|
|
125
|
+
expect(env.CI).toBeUndefined()
|
|
126
|
+
expect(env.GITHUB_ACTIONS).toBeUndefined()
|
|
127
|
+
expect(env.RENDER).toBeUndefined()
|
|
128
|
+
expect(env.IS_PULL_REQUEST).toBeUndefined()
|
|
129
|
+
expect(env.ANVIL_GITHUB_TOKEN).toBeUndefined()
|
|
130
|
+
})
|
|
131
|
+
|
|
132
|
+
test('allows overriding specific values', () => {
|
|
133
|
+
const env = createTestCiEnv({
|
|
134
|
+
CI: 'true',
|
|
135
|
+
GITHUB_ACTIONS: 'true',
|
|
136
|
+
})
|
|
137
|
+
expect(env.CI).toBe('true')
|
|
138
|
+
expect(env.GITHUB_ACTIONS).toBe('true')
|
|
139
|
+
// Other values should still have defaults
|
|
140
|
+
expect(env.ANVIL_API_KEY).toBe('test-api-key')
|
|
141
|
+
})
|
|
142
|
+
|
|
143
|
+
test('allows overriding default values', () => {
|
|
144
|
+
const env = createTestCiEnv({
|
|
145
|
+
ANVIL_API_KEY: 'custom-api-key',
|
|
146
|
+
})
|
|
147
|
+
expect(env.ANVIL_API_KEY).toBe('custom-api-key')
|
|
148
|
+
})
|
|
149
|
+
|
|
150
|
+
test('allows setting all CI-related vars for CI simulation', () => {
|
|
151
|
+
const env = createTestCiEnv({
|
|
152
|
+
CI: 'true',
|
|
153
|
+
GITHUB_ACTIONS: 'true',
|
|
154
|
+
RENDER: 'true',
|
|
155
|
+
IS_PULL_REQUEST: 'true',
|
|
156
|
+
ANVIL_GITHUB_TOKEN: 'ghp_simulated_token',
|
|
157
|
+
ANVIL_API_KEY: 'test-api-key-override',
|
|
158
|
+
})
|
|
159
|
+
expect(env.CI).toBe('true')
|
|
160
|
+
expect(env.GITHUB_ACTIONS).toBe('true')
|
|
161
|
+
expect(env.RENDER).toBe('true')
|
|
162
|
+
expect(env.IS_PULL_REQUEST).toBe('true')
|
|
163
|
+
expect(env.ANVIL_GITHUB_TOKEN).toBe('ghp_simulated_token')
|
|
164
|
+
expect(env.ANVIL_API_KEY).toBe('test-api-key-override')
|
|
165
|
+
})
|
|
166
|
+
})
|
|
167
|
+
})
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { describe, test, expect, afterEach } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { getProcessEnv, processEnv } from '../env-process'
|
|
4
|
+
import { createTestProcessEnv } from '../testing-env-process'
|
|
5
|
+
|
|
6
|
+
describe('env-process', () => {
|
|
7
|
+
describe('getProcessEnv', () => {
|
|
8
|
+
const originalEnv = { ...process.env }
|
|
9
|
+
|
|
10
|
+
afterEach(() => {
|
|
11
|
+
// Restore original env
|
|
12
|
+
Object.keys(process.env).forEach((key) => {
|
|
13
|
+
if (!(key in originalEnv)) {
|
|
14
|
+
delete process.env[key]
|
|
15
|
+
}
|
|
16
|
+
})
|
|
17
|
+
Object.assign(process.env, originalEnv)
|
|
18
|
+
})
|
|
19
|
+
|
|
20
|
+
test('returns current process.env values for SHELL', () => {
|
|
21
|
+
process.env.SHELL = '/bin/zsh'
|
|
22
|
+
const env = getProcessEnv()
|
|
23
|
+
expect(env.SHELL).toBe('/bin/zsh')
|
|
24
|
+
})
|
|
25
|
+
|
|
26
|
+
test('returns current process.env values for HOME', () => {
|
|
27
|
+
process.env.HOME = '/Users/testuser'
|
|
28
|
+
const env = getProcessEnv()
|
|
29
|
+
expect(env.HOME).toBe('/Users/testuser')
|
|
30
|
+
})
|
|
31
|
+
|
|
32
|
+
test('returns current process.env values for TERM', () => {
|
|
33
|
+
process.env.TERM = 'xterm-256color'
|
|
34
|
+
const env = getProcessEnv()
|
|
35
|
+
expect(env.TERM).toBe('xterm-256color')
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
test('returns current process.env values for TERM_PROGRAM', () => {
|
|
39
|
+
process.env.TERM_PROGRAM = 'iTerm.app'
|
|
40
|
+
const env = getProcessEnv()
|
|
41
|
+
expect(env.TERM_PROGRAM).toBe('iTerm.app')
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
test('returns current process.env values for NODE_ENV', () => {
|
|
45
|
+
process.env.NODE_ENV = 'development'
|
|
46
|
+
const env = getProcessEnv()
|
|
47
|
+
expect(env.NODE_ENV).toBe('development')
|
|
48
|
+
})
|
|
49
|
+
|
|
50
|
+
test('returns undefined for unset env vars', () => {
|
|
51
|
+
delete process.env.KITTY_WINDOW_ID
|
|
52
|
+
const env = getProcessEnv()
|
|
53
|
+
expect(env.KITTY_WINDOW_ID).toBeUndefined()
|
|
54
|
+
})
|
|
55
|
+
|
|
56
|
+
test('returns current process.env values for ANVIL_IS_BINARY', () => {
|
|
57
|
+
process.env.ANVIL_IS_BINARY = 'true'
|
|
58
|
+
const env = getProcessEnv()
|
|
59
|
+
expect(env.ANVIL_IS_BINARY).toBe('true')
|
|
60
|
+
})
|
|
61
|
+
|
|
62
|
+
test('returns a snapshot that does not change when process.env changes', () => {
|
|
63
|
+
process.env.SHELL = '/bin/bash'
|
|
64
|
+
const env = getProcessEnv()
|
|
65
|
+
process.env.SHELL = '/bin/zsh'
|
|
66
|
+
// The snapshot should still have the old value
|
|
67
|
+
expect(env.SHELL).toBe('/bin/bash')
|
|
68
|
+
})
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
describe('processEnv', () => {
|
|
72
|
+
test('is a ProcessEnv object', () => {
|
|
73
|
+
expect(processEnv).toBeDefined()
|
|
74
|
+
expect(typeof processEnv).toBe('object')
|
|
75
|
+
})
|
|
76
|
+
|
|
77
|
+
test('contains expected keys', () => {
|
|
78
|
+
expect('SHELL' in processEnv).toBe(true)
|
|
79
|
+
expect('HOME' in processEnv).toBe(true)
|
|
80
|
+
expect('TERM' in processEnv).toBe(true)
|
|
81
|
+
expect('NODE_ENV' in processEnv).toBe(true)
|
|
82
|
+
expect('PATH' in processEnv).toBe(true)
|
|
83
|
+
})
|
|
84
|
+
})
|
|
85
|
+
|
|
86
|
+
describe('createTestProcessEnv', () => {
|
|
87
|
+
test('returns a ProcessEnv with default test values', () => {
|
|
88
|
+
const env = createTestProcessEnv()
|
|
89
|
+
expect(env.HOME).toBe('/home/test')
|
|
90
|
+
expect(env.NODE_ENV).toBe('test')
|
|
91
|
+
expect(env.TERM).toBe('xterm-256color')
|
|
92
|
+
expect(env.PATH).toBe('/usr/bin')
|
|
93
|
+
})
|
|
94
|
+
|
|
95
|
+
test('returns undefined for most vars by default', () => {
|
|
96
|
+
const env = createTestProcessEnv()
|
|
97
|
+
expect(env.SHELL).toBeUndefined()
|
|
98
|
+
expect(env.COMSPEC).toBeUndefined()
|
|
99
|
+
expect(env.TERM_PROGRAM).toBeUndefined()
|
|
100
|
+
expect(env.KITTY_WINDOW_ID).toBeUndefined()
|
|
101
|
+
expect(env.ANVIL_IS_BINARY).toBeUndefined()
|
|
102
|
+
})
|
|
103
|
+
|
|
104
|
+
test('allows overriding specific values', () => {
|
|
105
|
+
const env = createTestProcessEnv({
|
|
106
|
+
SHELL: '/bin/fish',
|
|
107
|
+
TERM_PROGRAM: 'vscode',
|
|
108
|
+
})
|
|
109
|
+
expect(env.SHELL).toBe('/bin/fish')
|
|
110
|
+
expect(env.TERM_PROGRAM).toBe('vscode')
|
|
111
|
+
// Other values should still have defaults
|
|
112
|
+
expect(env.HOME).toBe('/home/test')
|
|
113
|
+
expect(env.NODE_ENV).toBe('test')
|
|
114
|
+
})
|
|
115
|
+
|
|
116
|
+
test('allows overriding default values', () => {
|
|
117
|
+
const env = createTestProcessEnv({
|
|
118
|
+
HOME: '/custom/home',
|
|
119
|
+
NODE_ENV: 'production',
|
|
120
|
+
})
|
|
121
|
+
expect(env.HOME).toBe('/custom/home')
|
|
122
|
+
expect(env.NODE_ENV).toBe('production')
|
|
123
|
+
})
|
|
124
|
+
|
|
125
|
+
test('allows setting ANVIL_IS_BINARY for binary mode tests', () => {
|
|
126
|
+
const env = createTestProcessEnv({
|
|
127
|
+
ANVIL_IS_BINARY: 'true',
|
|
128
|
+
ANVIL_CLI_VERSION: '1.0.0',
|
|
129
|
+
})
|
|
130
|
+
expect(env.ANVIL_IS_BINARY).toBe('true')
|
|
131
|
+
expect(env.ANVIL_CLI_VERSION).toBe('1.0.0')
|
|
132
|
+
})
|
|
133
|
+
|
|
134
|
+
test('allows setting terminal-specific vars', () => {
|
|
135
|
+
const env = createTestProcessEnv({
|
|
136
|
+
TERM_PROGRAM: 'iTerm.app',
|
|
137
|
+
KITTY_WINDOW_ID: '12345',
|
|
138
|
+
SIXEL_SUPPORT: 'true',
|
|
139
|
+
})
|
|
140
|
+
expect(env.TERM_PROGRAM).toBe('iTerm.app')
|
|
141
|
+
expect(env.KITTY_WINDOW_ID).toBe('12345')
|
|
142
|
+
expect(env.SIXEL_SUPPORT).toBe('true')
|
|
143
|
+
})
|
|
144
|
+
})
|
|
145
|
+
})
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
import { readdirSync, readFileSync, statSync } from 'node:fs'
|
|
2
|
+
import { join, relative } from 'node:path'
|
|
3
|
+
|
|
4
|
+
import { describe, expect, test } from 'bun:test'
|
|
5
|
+
|
|
6
|
+
import { ANVIL_ROOT_AGENT_IDS } from '../constants/free-agents'
|
|
7
|
+
import {
|
|
8
|
+
detectForeignAnvilClient,
|
|
9
|
+
ANVIL_CUSTOM_TOOL_NAMES,
|
|
10
|
+
} from '../constants/foreign-client-signals'
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Nothing we ship may be mistaken for a third-party client.
|
|
14
|
+
*
|
|
15
|
+
* The downgrade now runs unconditionally with no flag to disable it, so a
|
|
16
|
+
* anvil agent the detector flags is served a different model in production
|
|
17
|
+
* with no way to switch it off short of a revert and redeploy. This has already
|
|
18
|
+
* happened twice, both silently:
|
|
19
|
+
*
|
|
20
|
+
* - `researcher-web` offers `['web_search', 'read_url']` and was flagged on
|
|
21
|
+
* 100% of its 334,042 requests from 4,821 users over 30 days.
|
|
22
|
+
* - `anvil-desktop-autorun` offers only the custom tool `decide`, so it had
|
|
23
|
+
* no signature tool at all — 2,904 requests from 41 users.
|
|
24
|
+
*
|
|
25
|
+
* Both were found by querying production, which is the wrong place to find
|
|
26
|
+
* them. This scans the source instead, so the next one fails CI.
|
|
27
|
+
*
|
|
28
|
+
* Reading source with a regex is crude, and the real hazard is that it quietly
|
|
29
|
+
* stops matching and the test passes on an empty set — hence the floor below
|
|
30
|
+
* and the named spot checks.
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
const REPO_ROOT = join(import.meta.dir, '..', '..', '..')
|
|
34
|
+
|
|
35
|
+
/** Where agent definitions live. */
|
|
36
|
+
const SEARCH_ROOTS = [
|
|
37
|
+
'agents',
|
|
38
|
+
'.agents',
|
|
39
|
+
'anvil',
|
|
40
|
+
'anvil-desktop/src',
|
|
41
|
+
'web/src',
|
|
42
|
+
'common/src',
|
|
43
|
+
'sdk/src',
|
|
44
|
+
'cli/src',
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Definitions that cannot reach the downgrade, with the property that makes
|
|
49
|
+
* that true. `mustContain` is the load-bearing part: if the reason stops
|
|
50
|
+
* holding, this fails rather than the exclusion silently outliving it.
|
|
51
|
+
*/
|
|
52
|
+
const EXCLUDED: Array<{ path: string; mustContain: string; why: string }> = [
|
|
53
|
+
{
|
|
54
|
+
path: 'anvil/e2e/agent/anvil-tester.ts',
|
|
55
|
+
mustContain: "model: 'anthropic/claude-sonnet-4.5'",
|
|
56
|
+
why:
|
|
57
|
+
'e2e harness pinned to a paid Anthropic model. The downgrade only runs ' +
|
|
58
|
+
'on free-mode requests, and a free-mode request for a non-free model is ' +
|
|
59
|
+
'rejected by isFreeModeAllowedAgentModel long before the detector. It ' +
|
|
60
|
+
'also had 0 production requests over 30 days. If it ever moves to a ' +
|
|
61
|
+
'free model this exclusion stops applying and the test says so.',
|
|
62
|
+
},
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* The regex only sees literal names. A declaration built at runtime is invisible
|
|
67
|
+
* to it, which is precisely how `decide` slipped through — so custom tools are
|
|
68
|
+
* asserted separately below rather than assumed covered here.
|
|
69
|
+
*/
|
|
70
|
+
const TOOL_NAMES_DECLARATION = /toolNames:\s*\[([^\]]*)\]/g
|
|
71
|
+
const QUOTED_NAME = /'([^']+)'|"([^"]+)"/g
|
|
72
|
+
|
|
73
|
+
/** Below this, assume the scan broke rather than that we deleted 20 agents. */
|
|
74
|
+
const MINIMUM_DECLARATIONS = 25
|
|
75
|
+
|
|
76
|
+
type Declaration = { file: string; names: string[]; ids: string[] }
|
|
77
|
+
|
|
78
|
+
function collectSourceFiles(): string[] {
|
|
79
|
+
const files: string[] = []
|
|
80
|
+
const walk = (dir: string) => {
|
|
81
|
+
let entries: string[]
|
|
82
|
+
try {
|
|
83
|
+
entries = readdirSync(dir)
|
|
84
|
+
} catch {
|
|
85
|
+
return
|
|
86
|
+
}
|
|
87
|
+
for (const entry of entries) {
|
|
88
|
+
if (entry === 'node_modules' || entry === '.next' || entry === 'dist') {
|
|
89
|
+
continue
|
|
90
|
+
}
|
|
91
|
+
const path = join(dir, entry)
|
|
92
|
+
if (statSync(path).isDirectory()) {
|
|
93
|
+
walk(path)
|
|
94
|
+
continue
|
|
95
|
+
}
|
|
96
|
+
// Test files carry deliberately-foreign fixtures; they are not shipped.
|
|
97
|
+
if (
|
|
98
|
+
path.endsWith('.ts') &&
|
|
99
|
+
!path.includes('__tests__') &&
|
|
100
|
+
!path.endsWith('.test.ts')
|
|
101
|
+
) {
|
|
102
|
+
files.push(path)
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
for (const root of SEARCH_ROOTS) walk(join(REPO_ROOT, root))
|
|
107
|
+
return files
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function collectDeclarations(): Declaration[] {
|
|
111
|
+
const excluded = new Set(EXCLUDED.map((entry) => entry.path))
|
|
112
|
+
const declarations: Declaration[] = []
|
|
113
|
+
for (const file of collectSourceFiles()) {
|
|
114
|
+
const relativePath = relative(REPO_ROOT, file)
|
|
115
|
+
if (excluded.has(relativePath)) continue
|
|
116
|
+
const source = readFileSync(file, 'utf8')
|
|
117
|
+
const ids = [...source.matchAll(/\bid:\s*'([^']+)'/g)].map((m) => m[1]!)
|
|
118
|
+
for (const match of source.matchAll(TOOL_NAMES_DECLARATION)) {
|
|
119
|
+
const names = [...match[1]!.matchAll(QUOTED_NAME)].map(
|
|
120
|
+
(name) => name[1] ?? name[2]!,
|
|
121
|
+
)
|
|
122
|
+
// Empty declarations are kept, not filtered. `toolNames: []` on a ROOT is
|
|
123
|
+
// precisely what the root test below must catch, and dropping it here
|
|
124
|
+
// made that test vacuous — a root with an empty toolset simply vanished
|
|
125
|
+
// from the scan and the assertion passed over nothing.
|
|
126
|
+
declarations.push({ file: relativePath, names, ids })
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
return declarations
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
const DECLARATIONS = collectDeclarations()
|
|
133
|
+
|
|
134
|
+
function asToolSchemas(names: string[]) {
|
|
135
|
+
return names.map((name) => ({ type: 'function', function: { name } }))
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
describe('no shipped anvil agent is flagged as a foreign client', () => {
|
|
139
|
+
test('the scan actually found our agents', () => {
|
|
140
|
+
// Guards the failure mode where a reformat stops the regex matching and
|
|
141
|
+
// every assertion below passes over an empty set.
|
|
142
|
+
expect(DECLARATIONS.length).toBeGreaterThanOrEqual(MINIMUM_DECLARATIONS)
|
|
143
|
+
})
|
|
144
|
+
|
|
145
|
+
test.each(DECLARATIONS.map((d): [string, Declaration] => [d.file, d]))(
|
|
146
|
+
'%s',
|
|
147
|
+
(_file, declaration) => {
|
|
148
|
+
const verdict = detectForeignAnvilClient({
|
|
149
|
+
tools: asToolSchemas(declaration.names),
|
|
150
|
+
})
|
|
151
|
+
// Surface the toolset in the failure, since the fix is almost always
|
|
152
|
+
// "this agent's tools are all generic — give it a distinctive one, or
|
|
153
|
+
// add the missing name back to the signature".
|
|
154
|
+
expect({
|
|
155
|
+
file: declaration.file,
|
|
156
|
+
names: declaration.names,
|
|
157
|
+
signal: verdict.signal,
|
|
158
|
+
}).toEqual({
|
|
159
|
+
file: declaration.file,
|
|
160
|
+
names: declaration.names,
|
|
161
|
+
signal: null,
|
|
162
|
+
})
|
|
163
|
+
},
|
|
164
|
+
)
|
|
165
|
+
|
|
166
|
+
test.each([
|
|
167
|
+
['researcher-web', 'agents/researcher/researcher-web.ts'],
|
|
168
|
+
['desktop autorun', 'anvil-desktop/src/server/services/autorun.ts'],
|
|
169
|
+
['glob-matcher', 'agents/file-explorer/glob-matcher.ts'],
|
|
170
|
+
])('still covers %s, which the scan must not silently drop', (_name, path) => {
|
|
171
|
+
// The first two are the agents this test exists because of. The third has
|
|
172
|
+
// exactly one signature tool (`glob` is generic, `set_output` is not), so
|
|
173
|
+
// it is the closest thing we ship to the failure mode.
|
|
174
|
+
expect(DECLARATIONS.some((d) => d.file === path)).toBe(true)
|
|
175
|
+
})
|
|
176
|
+
|
|
177
|
+
test('every root agent we ship declares tools', () => {
|
|
178
|
+
// `root_agent_no_tools` downgrades any ROOT agent request that offers no
|
|
179
|
+
// tools, on the grounds that our roots are agentic by definition. A root
|
|
180
|
+
// shipped with an empty toolset would therefore have every one of its
|
|
181
|
+
// requests downgraded in production, with no flag to turn it off.
|
|
182
|
+
const roots = new Set<string>(ANVIL_ROOT_AGENT_IDS)
|
|
183
|
+
const shippedRoots = DECLARATIONS.filter((d) =>
|
|
184
|
+
d.ids.some((id) => roots.has(id)),
|
|
185
|
+
)
|
|
186
|
+
// The scan must actually be finding roots, or this passes vacuously.
|
|
187
|
+
expect(shippedRoots.length).toBeGreaterThan(0)
|
|
188
|
+
// Name the offending file in the failure, since "a root declares no tools"
|
|
189
|
+
// is useless without knowing which one.
|
|
190
|
+
expect(
|
|
191
|
+
shippedRoots
|
|
192
|
+
.filter((d) => d.names.length === 0)
|
|
193
|
+
.map((d) => `${d.file} (${d.ids.join(', ')})`),
|
|
194
|
+
).toEqual([])
|
|
195
|
+
})
|
|
196
|
+
|
|
197
|
+
test.each([...ANVIL_CUSTOM_TOOL_NAMES])(
|
|
198
|
+
'custom tool %s clears on its own',
|
|
199
|
+
(name) => {
|
|
200
|
+
// Custom tools are registered at runtime through customToolDefinitions,
|
|
201
|
+
// so the source scan cannot see them. An agent offering one and nothing
|
|
202
|
+
// else — which is exactly what desktop autorun does — has no signature
|
|
203
|
+
// tool unless it is enumerated.
|
|
204
|
+
expect(
|
|
205
|
+
detectForeignAnvilClient({ tools: asToolSchemas([name]) }).signal,
|
|
206
|
+
).toBeNull()
|
|
207
|
+
},
|
|
208
|
+
)
|
|
209
|
+
|
|
210
|
+
test('custom tools appended to a real toolset stay cleared', () => {
|
|
211
|
+
// How the chat surface composes: base-chat's tools plus per-turn image and
|
|
212
|
+
// document tools (anvil/web/src/server/chat/agent.ts). The additions are
|
|
213
|
+
// caller-named and arbitrary, so this must not depend on recognising them.
|
|
214
|
+
expect(
|
|
215
|
+
detectForeignAnvilClient({
|
|
216
|
+
tools: asToolSchemas([
|
|
217
|
+
'spawn_agents',
|
|
218
|
+
'gravity_index',
|
|
219
|
+
'render_ui',
|
|
220
|
+
'suggest_followups',
|
|
221
|
+
'read_attached_image_abc123',
|
|
222
|
+
'read_attached_doc_def456',
|
|
223
|
+
]),
|
|
224
|
+
}).signal,
|
|
225
|
+
).toBeNull()
|
|
226
|
+
})
|
|
227
|
+
|
|
228
|
+
test.each(EXCLUDED)('exclusion of $path still holds', (entry) => {
|
|
229
|
+
// An exclusion outliving its reason is how a real false positive gets
|
|
230
|
+
// waved through, so the reason is asserted rather than just written down.
|
|
231
|
+
const source = readFileSync(join(REPO_ROOT, entry.path), 'utf8')
|
|
232
|
+
expect(source).toContain(entry.mustContain)
|
|
233
|
+
})
|
|
234
|
+
})
|