1a744424ab
- session-utils: log SDK errors instead of silent swallow - opencode-message-dir: fix indentation, improve error log format - storage: use session.list for sessionExists (handles empty sessions) - storage.test: use resetStorageClient for proper SDK client cleanup - todo-sync: add content-based fallback for id-less todo removal
25 lines
993 B
TypeScript
25 lines
993 B
TypeScript
import { findNearestMessageWithFields, findNearestMessageWithFieldsFromSDK } from "../features/hook-message-injector"
|
|
import { getMessageDir } from "./opencode-message-dir"
|
|
import { isSqliteBackend } from "./opencode-storage-detection"
|
|
import { log } from "./logger"
|
|
import type { PluginInput } from "@opencode-ai/plugin"
|
|
|
|
export async function isCallerOrchestrator(sessionID?: string, client?: PluginInput["client"]): Promise<boolean> {
|
|
if (!sessionID) return false
|
|
|
|
if (isSqliteBackend() && client) {
|
|
try {
|
|
const nearest = await findNearestMessageWithFieldsFromSDK(client, sessionID)
|
|
return nearest?.agent?.toLowerCase() === "atlas"
|
|
} catch (error) {
|
|
log("[session-utils] SDK orchestrator check failed", { sessionID, error: String(error) })
|
|
return false
|
|
}
|
|
}
|
|
|
|
const messageDir = getMessageDir(sessionID)
|
|
if (!messageDir) return false
|
|
const nearest = findNearestMessageWithFields(messageDir)
|
|
return nearest?.agent?.toLowerCase() === "atlas"
|
|
}
|