()
| 8 | const NAME_RE = /^[a-z][a-z0-9-]*$/; |
| 9 | |
| 10 | export function userSkillsDir(): string { |
| 11 | return path.join(os.homedir(), '.qodex', 'skills'); |
| 12 | } |
| 13 | |
| 14 | export function projectSkillsDir(cwd: string): string { |
| 15 | return path.join(cwd, '.qodex', 'skills'); |
no outgoing calls
no test coverage detected