diff --git a/src/cron/isolated-agent/run-execution.runtime.ts b/src/cron/isolated-agent/run-execution.runtime.ts index 9ac32bcf393..2d406bca53b 100644 --- a/src/cron/isolated-agent/run-execution.runtime.ts +++ b/src/cron/isolated-agent/run-execution.runtime.ts @@ -2,7 +2,7 @@ export { resolveEffectiveModelFallbacks } from "../../agents/agent-scope.js"; export { resolveBootstrapWarningSignaturesSeen } from "../../agents/bootstrap-budget.js"; export { LiveSessionModelSwitchError } from "../../agents/live-model-switch-error.js"; export { runWithModelFallback } from "../../agents/model-fallback.js"; -export { isCliProvider } from "../../agents/model-selection.js"; +export { isCliProvider } from "../../agents/model-selection-cli.js"; export { normalizeVerboseLevel } from "../../auto-reply/thinking.js"; export { resolveSessionTranscriptPath } from "../../config/sessions/paths.js"; export { registerAgentRunContext } from "../../infra/agent-events.js"; diff --git a/src/cron/isolated-agent/skills-snapshot.runtime.ts b/src/cron/isolated-agent/skills-snapshot.runtime.ts index 6f9439c103c..59ac59d73ec 100644 --- a/src/cron/isolated-agent/skills-snapshot.runtime.ts +++ b/src/cron/isolated-agent/skills-snapshot.runtime.ts @@ -1,6 +1,4 @@ export { canExecRequestNode } from "../../agents/exec-defaults.js"; -export { - buildWorkspaceSkillSnapshot, - getRemoteSkillEligibility, - getSkillsSnapshotVersion, -} from "./run.runtime.js"; +export { buildWorkspaceSkillSnapshot } from "../../agents/skills.js"; +export { getSkillsSnapshotVersion } from "../../agents/skills/refresh.js"; +export { getRemoteSkillEligibility } from "../../infra/skills-remote.js";