rename: fallback-handoff.ts → terminal-detection.ts

The file no longer contains any fallback/handoff logic after the Athena
NLP removal — only generic terminal-event helpers (isTerminalFinishValue,
isTerminalStepFinishPart). Name now matches content.
This commit is contained in:
ismeth 2026-02-20 19:26:04 +01:00 committed by YeonGyu-Kim
parent 77034fec7e
commit 2eb8f5741a
2 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { applyPendingSwitch, clearPendingSwitchRuntime } from "../../features/ag
import {
isTerminalFinishValue,
isTerminalStepFinishPart,
} from "./fallback-handoff"
} from "./terminal-detection"
function getSessionIDFromStatusEvent(input: { event: { properties?: Record<string, unknown> } }): string | undefined {
const props = input.event.properties as Record<string, unknown> | undefined