perf(cron): narrow execution and skill runtime imports

This commit is contained in:
Vincent Koc
2026-04-13 17:52:09 +01:00
parent 20248c475f
commit df4c086c52
2 changed files with 4 additions and 6 deletions

View File

@@ -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";

View File

@@ -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";