/** * `core/memory/l3` — cross-task world-model abstraction. * * This module is the callable surface for the rest of `core/`: * - `runL3` / `adjustConfidence`: imperative entry points. * - `attachL3Subscriber`: wire L3 into the event pipeline. * - `createL3EventBus`: the typed event channel L3 emits on. * - Types/DTOs used by the viewer + adapters. * * See `README.md` and `ALGORITHMS.md` for the why/how. */ export { abstractDraft, buildWorldModelRow } from "./abstract.js"; export { clusterPolicies, domainKeyOf } from "./cluster.js"; export { createL3EventBus } from "./events.js"; export { adjustConfidence, clearL3RetryState, runL3 } from "./l3.js"; export type { RunL3Deps } from "./l3.js"; export { chooseMergeTarget, gatherMergeCandidates, mergeForUpdate, } from "./merge.js"; export type { MergeDecision, MergedPatch, } from "./merge.js"; export { attachL3Subscriber } from "./subscriber.js"; export type { L3SubscriberDeps, L3SubscriberHandle } from "./subscriber.js"; export type { AbstractionResult, L3AbstractionDraft, L3AbstractionDraftEntry, L3AbstractionDraftResult, L3Config, L3Event, L3EventBus, L3EventKind, L3EventListener, L3ProcessInput, L3ProcessResult, PolicyCluster, PolicyClusterKey, } from "./types.js";