/** * Skill Sync Module * * Provides utilities for synchronizing local skills with external vector databases. * Supports two modes: * - Read-only: Pull skills from external source (no local persistence) * - Persistent: SHA-based change detection, sync local skills to external store * * @module skill/sync */ export { computeSkillHash, computeSkillHashComponents, areSkillsEqual } from './skill-hash'; export type { SkillHashComponents } from './skill-hash'; export { createEmptySyncState, serializeSyncState, deserializeSyncState } from './sync-state.interface'; export type { SkillSyncStatus, SkillSyncEntry, SkillSyncState, SerializedSkillSyncState, SkillSyncStateStore, SyncResult, } from './sync-state.interface'; export { MemorySyncStateStore } from './memory-sync-state.store'; //# sourceMappingURL=index.d.ts.map