From 0e7cebc5c65f0e70eb522bd1b0f22f813ac2254a Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 2 May 2026 08:17:52 +0100 Subject: [PATCH] refactor: trim subagent followup facade --- src/cron/isolated-agent/subagent-followup.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cron/isolated-agent/subagent-followup.ts b/src/cron/isolated-agent/subagent-followup.ts index ca981bc7511..7e7c0320959 100644 --- a/src/cron/isolated-agent/subagent-followup.ts +++ b/src/cron/isolated-agent/subagent-followup.ts @@ -1,8 +1,7 @@ import { readLatestAssistantReply, waitForAgentRunsToDrain } from "../../agents/run-wait.js"; import { listDescendantRunsForRequester } from "../../agents/subagent-registry-read.js"; import { SILENT_REPLY_TOKEN } from "../../auto-reply/tokens.js"; -import { expectsSubagentFollowup, isLikelyInterimCronMessage } from "./subagent-followup-hints.js"; -export { expectsSubagentFollowup, isLikelyInterimCronMessage } from "./subagent-followup-hints.js"; +import { isLikelyInterimCronMessage } from "./subagent-followup-hints.js"; function resolveCronSubagentTimings() { const fastTestMode = process.env.OPENCLAW_TEST_FAST === "1";