fix(hook-message-injector): isolate shared imports

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-29 19:08:21 +09:00
parent d985157d02
commit 5d8d09a52e
2 changed files with 3 additions and 2 deletions
@@ -1 +1 @@
export { OPENCODE_STORAGE, MESSAGE_STORAGE, PART_STORAGE } from "../../shared"
export { OPENCODE_STORAGE, MESSAGE_STORAGE, PART_STORAGE } from "../../shared/opencode-storage-paths"
@@ -6,7 +6,8 @@ import { MESSAGE_STORAGE, PART_STORAGE } from "./constants"
import type { MessageMeta, OriginalMessageContext, TextPart, ToolPermission } from "./types"
import { log } from "../../shared/logger"
import { isSqliteBackend } from "../../shared/opencode-storage-detection"
import { createInternalAgentTextPart, normalizeSDKResponse } from "../../shared"
import { createInternalAgentTextPart } from "../../shared/internal-initiator-marker"
import { normalizeSDKResponse } from "../../shared/normalize-sdk-response"
import { hasCompactionPartInStorage, isCompactionMessage } from "../../shared/compaction-marker"
export interface StoredMessage {