/** * Skill service interfaces. * * These are the "rich" interfaces used by CLI skill scripts, * with full capabilities like dedupe, curate, external linking, etc. * * Contrast with domain/interfaces which has simpler infrastructure interfaces. */ export type { IFact, MemoryMode, IMemoryLoadResult, IMemoryAddResult, IMemoryAddOptions, IMemoryLoadOptions, IMemoryExpireResult, IMemoryCleanupResult, IConflictGroup, IMemoryConflictsResult, IDuplicateGroup, IMemoryDedupeResult, IMemoryCurateResult, IMemoryConsolidateResult, ISkillMemoryService, } from './ISkillMemoryService'; export type { TaskMode, ExternalLinkSource, ITaskExternalLink, ISkillTask, ITaskListResult, ITaskWriteResult, ITaskWriteOptions, ITaskLoadOptions, ITaskLinkResult, ISkillTaskService, } from './ISkillTaskService'; export type { IPromptArgs, IPromptResult, ISkillPromptService, } from './ISkillPromptService'; export type { ISkillMemoryService as IMemoryService } from './ISkillMemoryService'; export type { ISkillTaskService as ITaskService } from './ISkillTaskService'; export type { ISkillTask as ITask } from './ISkillTaskService'; export type { ISkillPromptService as IPromptService } from './ISkillPromptService'; //# sourceMappingURL=index.d.ts.map