| 4 | import type { CommandResult } from "../adapters/types.js"; |
| 5 | |
| 6 | interface SkillConfigEntry { |
| 7 | name: string; |
| 8 | description?: string; |
| 9 | } |
| 10 | |
| 11 | export function buildHelpMessage(rootDir: string): string { |
| 12 | const sections: string[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected