(rootDir: string)
| 50 | } |
| 51 | |
| 52 | export function handleHelpCommand(rootDir: string): CommandResult { |
| 53 | return { |
| 54 | success: true, |
| 55 | message: buildHelpMessage(rootDir), |
| 56 | }; |
| 57 | } |
| 58 | |
| 59 | function readInstalledSkills(configPath: string): SkillConfigEntry[] { |
| 60 | if (!fs.existsSync(configPath)) { |
no test coverage detected