@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,44 @@
|
|
|
1
|
+
import { describe, expect, test } from 'bun:test'
|
|
2
|
+
|
|
3
|
+
import { formatAvailableSkillsXml } from './skills'
|
|
4
|
+
|
|
5
|
+
import type { SkillsMap } from '../types/skill'
|
|
6
|
+
|
|
7
|
+
describe('formatAvailableSkillsXml', () => {
|
|
8
|
+
test('omits skills that only the user may invoke', () => {
|
|
9
|
+
const skills: SkillsMap = {
|
|
10
|
+
deploy: {
|
|
11
|
+
name: 'deploy',
|
|
12
|
+
description: 'Deploy the application',
|
|
13
|
+
content: 'deployment instructions',
|
|
14
|
+
disableModelInvocation: true,
|
|
15
|
+
filePath: '/skills/deploy/SKILL.md',
|
|
16
|
+
},
|
|
17
|
+
review: {
|
|
18
|
+
name: 'review',
|
|
19
|
+
description: 'Review code changes',
|
|
20
|
+
content: 'review instructions',
|
|
21
|
+
filePath: '/skills/review/SKILL.md',
|
|
22
|
+
},
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const xml = formatAvailableSkillsXml(skills)
|
|
26
|
+
|
|
27
|
+
expect(xml).toContain('<name>review</name>')
|
|
28
|
+
expect(xml).not.toContain('deploy')
|
|
29
|
+
})
|
|
30
|
+
|
|
31
|
+
test('returns an empty listing when every skill is user-only', () => {
|
|
32
|
+
const skills: SkillsMap = {
|
|
33
|
+
deploy: {
|
|
34
|
+
name: 'deploy',
|
|
35
|
+
description: 'Deploy the application',
|
|
36
|
+
content: 'deployment instructions',
|
|
37
|
+
disableModelInvocation: true,
|
|
38
|
+
filePath: '/skills/deploy/SKILL.md',
|
|
39
|
+
},
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
expect(formatAvailableSkillsXml(skills)).toBe('')
|
|
43
|
+
})
|
|
44
|
+
})
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { SkillDefinition, SkillsMap } from '../types/skill'
|
|
2
|
+
|
|
3
|
+
export function isSkillModelInvocable(skill: SkillDefinition): boolean {
|
|
4
|
+
return skill.disableModelInvocation !== true
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Escapes special XML characters in a string.
|
|
9
|
+
*/
|
|
10
|
+
function escapeXml(str: string): string {
|
|
11
|
+
return str
|
|
12
|
+
.replace(/&/g, '&')
|
|
13
|
+
.replace(/</g, '<')
|
|
14
|
+
.replace(/>/g, '>')
|
|
15
|
+
.replace(/"/g, '"')
|
|
16
|
+
.replace(/'/g, ''')
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Formats available skills as XML for inclusion in tool descriptions.
|
|
21
|
+
*/
|
|
22
|
+
export function formatAvailableSkillsXml(skills: SkillsMap): string {
|
|
23
|
+
const skillEntries = Object.values(skills).filter(isSkillModelInvocable)
|
|
24
|
+
if (skillEntries.length === 0) {
|
|
25
|
+
return ''
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const skillsXml = skillEntries
|
|
29
|
+
.map(
|
|
30
|
+
(skill) =>
|
|
31
|
+
` <skill>\n <name>${skill.name}</name>\n <description>${escapeXml(skill.description)}</description>\n </skill>`,
|
|
32
|
+
)
|
|
33
|
+
.join('\n')
|
|
34
|
+
|
|
35
|
+
return `<available_skills>\n${skillsXml}\n</available_skills>`
|
|
36
|
+
}
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
type PlainObject = Record<string, any>
|
|
2
|
+
|
|
3
|
+
interface Chunk<T> {
|
|
4
|
+
data: T
|
|
5
|
+
length: number
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
function isPlainObject(val: any): val is PlainObject {
|
|
9
|
+
return (
|
|
10
|
+
typeof val === 'object' &&
|
|
11
|
+
val !== null &&
|
|
12
|
+
Object.getPrototypeOf(val) === Object.prototype
|
|
13
|
+
)
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function getJsonSize(data: any): number {
|
|
17
|
+
if (data === undefined) {
|
|
18
|
+
return 'undefined'.length
|
|
19
|
+
}
|
|
20
|
+
const size = JSON.stringify(data).length
|
|
21
|
+
return size
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function splitString(params: {
|
|
25
|
+
data: string
|
|
26
|
+
maxSize: number
|
|
27
|
+
}): Chunk<string>[] {
|
|
28
|
+
const { data, maxSize } = params
|
|
29
|
+
if (data === '') {
|
|
30
|
+
return [{ data: '', length: 2 }]
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
const chunks: Chunk<string>[] = []
|
|
34
|
+
let currentChunk: Chunk<string> = { data: '', length: 2 }
|
|
35
|
+
|
|
36
|
+
if (maxSize < 2) {
|
|
37
|
+
for (let i = 0; i < data.length; i++) {
|
|
38
|
+
chunks.push({ data: data[i], length: getJsonSize(data[i]) })
|
|
39
|
+
}
|
|
40
|
+
return chunks
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
for (let i = 0; i < data.length; i++) {
|
|
44
|
+
const char = data[i]
|
|
45
|
+
const charSizeContribution = JSON.stringify(char).length - 2
|
|
46
|
+
let potentialNextSize: number
|
|
47
|
+
|
|
48
|
+
potentialNextSize = currentChunk.length + charSizeContribution
|
|
49
|
+
|
|
50
|
+
if (potentialNextSize <= maxSize) {
|
|
51
|
+
currentChunk.data += char
|
|
52
|
+
currentChunk.length = potentialNextSize
|
|
53
|
+
} else {
|
|
54
|
+
if (currentChunk.data !== '') {
|
|
55
|
+
chunks.push(currentChunk)
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
currentChunk = { data: char, length: 2 + charSizeContribution }
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
if (currentChunk.data !== '') {
|
|
63
|
+
chunks.push(currentChunk)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return chunks
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function splitObject(params: {
|
|
70
|
+
obj: PlainObject
|
|
71
|
+
maxSize: number
|
|
72
|
+
}): Chunk<PlainObject>[] {
|
|
73
|
+
const { obj, maxSize } = params
|
|
74
|
+
const chunks: Chunk<PlainObject>[] = []
|
|
75
|
+
|
|
76
|
+
let currentChunk: Chunk<PlainObject> = {
|
|
77
|
+
data: {},
|
|
78
|
+
length: 2,
|
|
79
|
+
}
|
|
80
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
81
|
+
const entryObject = { [key]: value }
|
|
82
|
+
const standaloneEntry: Chunk<PlainObject> = {
|
|
83
|
+
data: entryObject,
|
|
84
|
+
length: getJsonSize(entryObject),
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if (standaloneEntry.length > maxSize) {
|
|
88
|
+
const overhead = getJsonSize({ [key]: '' }) - 2
|
|
89
|
+
|
|
90
|
+
const items = splitDataWithLengths({
|
|
91
|
+
data: value,
|
|
92
|
+
maxChunkSize: maxSize - (getJsonSize({ [key]: '' }) - 2),
|
|
93
|
+
})
|
|
94
|
+
|
|
95
|
+
for (const [index, item] of items.entries()) {
|
|
96
|
+
const itemWithKey: Chunk<any> = {
|
|
97
|
+
data: { [key]: item.data },
|
|
98
|
+
length: item.length + overhead,
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
if (index < items.length - 1) {
|
|
102
|
+
if (key in currentChunk.data) {
|
|
103
|
+
chunks.push(currentChunk)
|
|
104
|
+
currentChunk = itemWithKey
|
|
105
|
+
continue
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
const candidateChunkLength =
|
|
109
|
+
currentChunk.length +
|
|
110
|
+
itemWithKey.length -
|
|
111
|
+
(currentChunk.length === 2 ? 2 : 3)
|
|
112
|
+
if (candidateChunkLength <= maxSize) {
|
|
113
|
+
currentChunk.data[key] = item.data
|
|
114
|
+
currentChunk.length = candidateChunkLength
|
|
115
|
+
continue
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
if (currentChunk.length > 2) {
|
|
119
|
+
chunks.push(currentChunk)
|
|
120
|
+
}
|
|
121
|
+
currentChunk = itemWithKey
|
|
122
|
+
continue
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if (currentChunk.length > 2) {
|
|
126
|
+
chunks.push(currentChunk)
|
|
127
|
+
}
|
|
128
|
+
currentChunk = itemWithKey
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
continue
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
const candidateChunkLength =
|
|
135
|
+
currentChunk.length +
|
|
136
|
+
standaloneEntry.length -
|
|
137
|
+
(currentChunk.length === 2 ? 2 : 3)
|
|
138
|
+
|
|
139
|
+
if (candidateChunkLength <= maxSize) {
|
|
140
|
+
currentChunk.data[key] = value
|
|
141
|
+
currentChunk.length = candidateChunkLength
|
|
142
|
+
continue
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
if (currentChunk.length > 2) {
|
|
146
|
+
chunks.push(currentChunk)
|
|
147
|
+
currentChunk = standaloneEntry
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
if (currentChunk.length > 2) {
|
|
152
|
+
chunks.push(currentChunk)
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
return chunks
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
function splitArray(params: { arr: any[]; maxSize: number }): Chunk<any[]>[] {
|
|
159
|
+
const { arr, maxSize } = params
|
|
160
|
+
const chunks: Chunk<any[]>[] = []
|
|
161
|
+
let currentChunk: Chunk<any[]> = { data: [], length: 2 }
|
|
162
|
+
|
|
163
|
+
for (const element of arr) {
|
|
164
|
+
const entryArr = [element]
|
|
165
|
+
const standaloneEntry: Chunk<any[]> = {
|
|
166
|
+
data: entryArr,
|
|
167
|
+
length: getJsonSize(entryArr),
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
if (standaloneEntry.length > maxSize) {
|
|
171
|
+
if (currentChunk.length > 2) {
|
|
172
|
+
chunks.push(currentChunk)
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
const items = splitDataWithLengths({
|
|
176
|
+
data: element,
|
|
177
|
+
maxChunkSize: maxSize - 2,
|
|
178
|
+
})
|
|
179
|
+
|
|
180
|
+
for (const [index, item] of items.entries()) {
|
|
181
|
+
if (index < items.length - 1) {
|
|
182
|
+
// Try to add to current chunk
|
|
183
|
+
const candidateChunkLength =
|
|
184
|
+
currentChunk.length +
|
|
185
|
+
item.length +
|
|
186
|
+
(currentChunk.length === 2 ? 1 : 0)
|
|
187
|
+
if (candidateChunkLength <= maxSize) {
|
|
188
|
+
currentChunk.data.push(item.data)
|
|
189
|
+
currentChunk.length = candidateChunkLength
|
|
190
|
+
continue
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
chunks.push({ data: [item.data], length: item.length + 2 })
|
|
194
|
+
continue
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
currentChunk = { data: [item.data], length: item.length + 2 }
|
|
198
|
+
}
|
|
199
|
+
continue
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
const candidateChunkLength =
|
|
203
|
+
currentChunk.length +
|
|
204
|
+
standaloneEntry.length -
|
|
205
|
+
(currentChunk.length === 2 ? 1 : 2)
|
|
206
|
+
|
|
207
|
+
if (candidateChunkLength <= maxSize) {
|
|
208
|
+
currentChunk.data.push(element)
|
|
209
|
+
currentChunk.length = candidateChunkLength
|
|
210
|
+
continue
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
if (currentChunk.length > 2) {
|
|
214
|
+
chunks.push(currentChunk)
|
|
215
|
+
currentChunk = standaloneEntry
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
if (currentChunk.length > 2) {
|
|
220
|
+
chunks.push(currentChunk)
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
return chunks
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
function splitDataWithLengths(params: {
|
|
227
|
+
data: any
|
|
228
|
+
maxChunkSize: number
|
|
229
|
+
}): Chunk<any>[] {
|
|
230
|
+
const { data, maxChunkSize } = params
|
|
231
|
+
// Handle primitives
|
|
232
|
+
if (typeof data !== 'object' || data === null) {
|
|
233
|
+
if (typeof data === 'string') {
|
|
234
|
+
const result = splitString({ data, maxSize: maxChunkSize })
|
|
235
|
+
return result
|
|
236
|
+
}
|
|
237
|
+
return [{ data, length: getJsonSize(data) }]
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
// Non-plain objects (Date, RegExp, etc.)
|
|
241
|
+
if (!Array.isArray(data) && !isPlainObject(data)) {
|
|
242
|
+
return [{ data, length: getJsonSize(data) }]
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
// Arrays
|
|
246
|
+
if (Array.isArray(data)) {
|
|
247
|
+
const result = splitArray({ arr: data, maxSize: maxChunkSize })
|
|
248
|
+
return result
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
// Plain objects
|
|
252
|
+
const result = splitObject({ obj: data, maxSize: maxChunkSize })
|
|
253
|
+
return result
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export function splitData(params: { data: any; maxChunkSize?: number }): any[] {
|
|
257
|
+
const { data, maxChunkSize = 99_000 } = params
|
|
258
|
+
return splitDataWithLengths({ data, maxChunkSize }).map((cwjl) => cwjl.data)
|
|
259
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { suffixPrefixOverlap } from './string'
|
|
2
|
+
|
|
3
|
+
export class StopSequenceHandler {
|
|
4
|
+
private buffer: string = ''
|
|
5
|
+
private finished: boolean = false
|
|
6
|
+
private stopSequences: string[]
|
|
7
|
+
|
|
8
|
+
constructor(stopSequences?: string[]) {
|
|
9
|
+
this.stopSequences = stopSequences ?? []
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
public process(
|
|
13
|
+
text: string,
|
|
14
|
+
):
|
|
15
|
+
| { text: string; endOfStream: boolean }
|
|
16
|
+
| { text: null; endOfStream: true } {
|
|
17
|
+
if (this.finished) {
|
|
18
|
+
return {
|
|
19
|
+
text: null,
|
|
20
|
+
endOfStream: true,
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
this.buffer += text
|
|
24
|
+
let longestOverlap = ''
|
|
25
|
+
|
|
26
|
+
for (const stopSequence of this.stopSequences) {
|
|
27
|
+
const index = this.buffer.indexOf(stopSequence)
|
|
28
|
+
if (index !== -1) {
|
|
29
|
+
this.finished = true
|
|
30
|
+
return {
|
|
31
|
+
text: this.buffer.slice(0, index),
|
|
32
|
+
endOfStream: true,
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
for (const stopSequence of this.stopSequences) {
|
|
38
|
+
const overlap = suffixPrefixOverlap(this.buffer, stopSequence)
|
|
39
|
+
longestOverlap =
|
|
40
|
+
overlap.length > longestOverlap.length ? overlap : longestOverlap
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
const index = this.buffer.length - longestOverlap.length
|
|
44
|
+
const processed = this.buffer.slice(0, index)
|
|
45
|
+
this.buffer = this.buffer.slice(index)
|
|
46
|
+
|
|
47
|
+
return {
|
|
48
|
+
text: processed,
|
|
49
|
+
endOfStream: false,
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
public flush(): string {
|
|
54
|
+
if (this.finished) {
|
|
55
|
+
return ''
|
|
56
|
+
}
|
|
57
|
+
const b = this.buffer
|
|
58
|
+
this.buffer = ''
|
|
59
|
+
return b
|
|
60
|
+
}
|
|
61
|
+
}
|