summaryrefslogtreecommitdiffhomepage
path: root/src/features/conversation-cache/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/conversation-cache/index.ts')
-rw-r--r--src/features/conversation-cache/index.ts12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/features/conversation-cache/index.ts b/src/features/conversation-cache/index.ts
index ba3f69a..25e2af7 100644
--- a/src/features/conversation-cache/index.ts
+++ b/src/features/conversation-cache/index.ts
@@ -2,7 +2,13 @@ export type { ConversationCache, ConversationCacheOptions } from "./cache";
export { createConversationCache } from "./cache";
export { nextSinceSeq, reconcileCache, selectEvictions } from "./logic";
export type {
- ConversationCacheIndexEntry,
- ConversationChunkStore,
- ReconcileResult,
+ ConversationCacheIndexEntry,
+ ConversationChunkStore,
+ ReconcileResult,
} from "./types";
+
+/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
+export const manifest = {
+ name: "conversation-cache",
+ description: "IndexedDB-backed chunk cache with reconciliation",
+} as const;