()
| 56 | } |
| 57 | |
| 58 | function findProjectSkill() { |
| 59 | const skills = getInvokedSkillsForAgent(null) |
| 60 | for (const [, info] of skills) { |
| 61 | if (info.skillPath.startsWith('projectSettings:')) { |
| 62 | return info |
| 63 | } |
| 64 | } |
| 65 | return undefined |
| 66 | } |
| 67 | |
| 68 | function createSkillImprovementHook() { |
| 69 | let lastAnalyzedCount = 0 |
no test coverage detected