diff --git a/src/runner/resource-bundle.ts b/src/runner/resource-bundle.ts index c82c29c..d7f0f82 100644 --- a/src/runner/resource-bundle.ts +++ b/src/runner/resource-bundle.ts @@ -7,11 +7,12 @@ import { redactText } from "../common/redaction.js"; import type { InitialPromptAssembly, JsonRecord, ResourceBundleRef } from "../common/types.js"; import { defaultGitDirectHosts, defaultGitHttpVersion, defaultGitLowSpeedLimitBytes, defaultGitLowSpeedTimeSeconds, defaultGitOperationTimeoutMs, gitTransportSummary } from "../common/git-transport.js"; import { stableHash } from "../common/validation.js"; +import { bundledWorkReadyTools } from "../common/work-ready.js"; const maxPromptRefBytes = 16 * 1024; const maxInitialPromptBytes = 64 * 1024; const skillSummaryChars = 600; -const runtimeBundledToolNames = Object.freeze(["agentrun-git"]); +const runtimeBundledToolNames = Object.freeze(bundledWorkReadyTools.map((tool) => tool.name)); export interface MaterializedResourceBundle { workspacePath: string;