(path: string, cwd: string)
| 38 | } |
| 39 | |
| 40 | function resolveSkillPath(path: string, cwd: string): string { |
| 41 | return resolve(cwd, expandHomePath(path)); |
| 42 | } |
| 43 | |
| 44 | export function loadWorkspaceSkills(config: ServerConfig, cwd: string): LoadedSkills { |
| 45 | if (!config.skillsEnabled) return { skills: [], diagnostics: [] }; |
no test coverage detected