import type { RuntimeName } from '../types.js'; import { getInstallInstructions } from './detector.js'; export function formatInstallInstructions(name: RuntimeName): string { const hint = getInstallInstructions(name); const labels: Record = { claude: 'Claude Code', codex: 'Codex', opencode: 'OpenCode', }; return `To install ${labels[name]}:\n ${hint}`; }