b0532f9ace
- Add ContextCollector class for managing and merging context entries across sessions - Add types and interfaces for context management (ContextEntry, ContextPriority, PendingContext) - Create context-injector hook for injection coordination - Refactor keyword-detector to use context-injector instead of hook-message-injector - Update src/index.ts to initialize context-injector infrastructure 🤖 Generated with assistance of OhMyOpenCode (https://github.com/code-yeongyu/oh-my-opencode)
13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
export { ContextCollector, contextCollector } from "./collector"
|
|
export { injectPendingContext, createContextInjectorHook } from "./injector"
|
|
export type {
|
|
ContextSourceType,
|
|
ContextPriority,
|
|
ContextEntry,
|
|
RegisterContextOptions,
|
|
PendingContext,
|
|
MessageContext,
|
|
OutputParts,
|
|
InjectionStrategy,
|
|
} from "./types"
|