⏮️ skillUsageTracking.ts

This commit is contained in:
nirholas
2026-03-31 10:24:30 +00:00
parent 217b7724f8
commit 0799786ce2

View File

@@ -53,3 +53,4 @@ export function getSkillUsageScore(skillName: string): number {
// Minimum recency factor of 0.1 to avoid completely dropping old but heavily used skills // Minimum recency factor of 0.1 to avoid completely dropping old but heavily used skills
return usage.usageCount * Math.max(recencyFactor, 0.1) return usage.usageCount * Math.max(recencyFactor, 0.1)
} }