/** * Proficiency Module * * ACT-R 기반 스킬 숙련도 추적 시스템. */ export { ACTREngine } from './actr-engine.js'; export { ProficiencyTracker, computePracticalLevel } from './tracker.js'; export { jaccardSimilarity, keywordMatchRatio, cosineSimilarity, detectSkillPractice, } from './detection.js'; export type { DetectionResult, SkillInfo, SessionMemory, } from './detection.js'; export type { ACTRConfig, ActivationResult, ExperienceEvent, ProficiencyRecord, LevelUpdateResult, SimulationScenario, } from './types.js'; //# sourceMappingURL=index.d.ts.map