import { c as isSessionArchiveArtifactName, l as isUsageCountedSessionTranscriptFileName, u as parseUsageCountedSessionIdFromFileName } from "./sessions-CO5rEtes.js"; import { T as MemorySessionSyncTarget } from "./memory-state-1EG1Ro8c.js"; import { n as ResolvedQmdConfig } from "./backend-config-B7NjDUg8.js"; import { n as isQueryStopWordToken, t as extractKeywords } from "./query-expansion-usOGWJhU.js"; //#region packages/memory-host-sdk/src/host/session-transcript-corpus.d.ts type SessionTranscriptCorpusArtifactKind = "active-session" | "archive-artifact" | "orphan-file-artifact"; type SessionTranscriptCorpusEntry = { agentId: string; sessionFile: string; sessionId: string; artifactKind: SessionTranscriptCorpusArtifactKind; sessionKey?: string; /** True when this transcript belongs to an internal dreaming narrative run. */ generatedByDreamingNarrative?: boolean; /** True when this transcript belongs to an isolated cron run session. */ generatedByCronRun?: boolean; }; /** * Lists transcript corpus entries for QMD/memory indexing. * * Active sessions come from the session accessor seam; retained reset/delete * transcript artifacts remain explicit file artifacts until core owns archive * artifact enumeration. */ declare function listSessionTranscriptCorpusEntriesForAgent(agentId: string): Promise; //#endregion //#region packages/memory-host-sdk/src/host/session-files.d.ts type SessionFileEntry = { path: string; absPath: string; mtimeMs: number; size: number; hash: string; content: string; /** Maps each content line (0-indexed) to its 1-indexed JSONL source line. */ lineMap: number[]; /** Maps each content line (0-indexed) to epoch ms; 0 means unknown timestamp. */ messageTimestampsMs: number[]; /** True when this transcript belongs to an internal dreaming narrative run. */ generatedByDreamingNarrative?: boolean; /** True when this transcript belongs to an isolated cron run session. */ generatedByCronRun?: boolean; }; type BuildSessionEntryOptions = { /** Optional preclassification from a caller-managed dreaming transcript lookup. */generatedByDreamingNarrative?: boolean; /** Optional preclassification from a caller-managed cron transcript lookup. */ generatedByCronRun?: boolean; /** Override for tests or specialized callers that need a tighter parse yield cadence. */ parseYieldEveryLines?: number; }; type SessionTranscriptClassification = { dreamingNarrativeTranscriptPaths: ReadonlySet; cronRunTranscriptPaths: ReadonlySet; }; type ResolvedMemorySessionSyncTarget = { agentId: string; sessionFile: string; sessionId: string; }; type ResolvedSessionTranscriptIdentity = { agentId: string; sessionId: string; sessionKey?: string; }; declare function normalizeSessionTranscriptPathForComparison(pathname: string): string; declare function loadDreamingNarrativeTranscriptPathSetForAgent(agentId: string): ReadonlySet; declare function loadSessionTranscriptClassificationForAgent(agentId: string): SessionTranscriptClassification; declare function listSessionFilesForAgent(agentId: string): Promise; declare function sessionPathForFile(absPath: string): string; /** * Parses a deprecated path-shaped memory sync hint only when it points at an * OpenClaw-owned usage-counted transcript in the canonical agent sessions dir. */ declare function parseCanonicalSessionSyncTargetFromPath(sessionFile: string): MemorySessionSyncTarget | null; /** * Resolves a current transcript path back to the canonical session-store * identity when available, falling back to the usage-counted file identity. */ declare function resolveSessionIdentityForTranscriptFile(sessionFile: string): ResolvedSessionTranscriptIdentity | null; /** * Resolves a storage-neutral memory sync target to the current file-backed * transcript. The SQLite adapter implements this identity contract without * deriving a path. */ declare function resolveSessionFileForSyncTarget(target: MemorySessionSyncTarget, defaultAgentId?: string): ResolvedMemorySessionSyncTarget | null; declare function buildSessionEntry(absPath: string, opts?: BuildSessionEntryOptions): Promise; //#endregion //#region packages/memory-host-sdk/src/host/qmd-query-parser.d.ts /** Normalized qmd query result consumed by memory search. */ type QmdQueryResult = { docid?: string; score?: number; collection?: string; file?: string; snippet?: string; body?: string; startLine?: number; endLine?: number; }; /** Parse qmd stdout/stderr into normalized results, accepting known no-result markers. */ declare function parseQmdQueryJson(stdout: string, stderr: string): QmdQueryResult[]; //#endregion //#region packages/memory-host-sdk/src/host/qmd-scope.d.ts declare function isQmdScopeAllowed(scope: ResolvedQmdConfig["scope"], sessionKey?: string): boolean; declare function deriveQmdScopeChannel(key?: string): string | undefined; declare function deriveQmdScopeChatType(key?: string): "channel" | "group" | "direct" | undefined; //#endregion //#region packages/memory-host-sdk/src/host/qmd-process.d.ts type CliSpawnInvocation = { command: string; argv: string[]; shell?: boolean; windowsHide?: boolean; }; type QmdBinaryUnavailableReason = "binary" | "workspace-cwd"; type QmdBinaryUnavailable = { available: false; /** * Optional for source compatibility with older plugin SDK callers that * returned only `{ available: false, error }`. */ reason?: QmdBinaryUnavailableReason; error: string; }; type QmdBinaryAvailability = { available: true; } | QmdBinaryUnavailable; declare function resolveQmdBinaryUnavailableReason(result: QmdBinaryUnavailable): QmdBinaryUnavailableReason; declare function resolveCliSpawnInvocation(params: { command: string; args: string[]; env: NodeJS.ProcessEnv; packageName: string; }): CliSpawnInvocation; declare function checkQmdBinaryAvailability(params: { command: string; env: NodeJS.ProcessEnv; cwd?: string; timeoutMs?: number; }): Promise; declare function runCliCommand(params: { commandSummary: string; spawnInvocation: CliSpawnInvocation; env: NodeJS.ProcessEnv; cwd: string; timeoutMs?: number; maxOutputChars: number; discardStdout?: boolean; /** * Caller-owned cancellation. When the signal aborts, the spawned child is * killed immediately and the call rejects, so a caller that already stopped * waiting (for example after its own deadline) does not leave an orphaned * process running for the full command timeout. */ signal?: AbortSignal; }): Promise<{ stdout: string; stderr: string; }>; //#endregion export { type BuildSessionEntryOptions, type QmdBinaryAvailability, type QmdBinaryUnavailable, type QmdBinaryUnavailableReason, type QmdQueryResult, type ResolvedMemorySessionSyncTarget, type ResolvedSessionTranscriptIdentity, type SessionFileEntry, type SessionTranscriptClassification, type SessionTranscriptCorpusEntry, buildSessionEntry, checkQmdBinaryAvailability, deriveQmdScopeChannel, deriveQmdScopeChatType, extractKeywords, isQmdScopeAllowed, isQueryStopWordToken, isSessionArchiveArtifactName, isUsageCountedSessionTranscriptFileName, listSessionFilesForAgent, listSessionTranscriptCorpusEntriesForAgent, loadDreamingNarrativeTranscriptPathSetForAgent, loadSessionTranscriptClassificationForAgent, normalizeSessionTranscriptPathForComparison, parseCanonicalSessionSyncTargetFromPath, parseQmdQueryJson, parseUsageCountedSessionIdFromFileName, resolveCliSpawnInvocation, resolveQmdBinaryUnavailableReason, resolveSessionFileForSyncTarget, resolveSessionIdentityForTranscriptFile, runCliCommand, sessionPathForFile };