*/
export function getShellLanguage(toolName: string): string {
case CopilotToolName.PowerShell:
case CopilotToolName.WritePowerShell:
case CopilotToolName.ReadPowerShell: return 'powershell';
default: return 'shellscript';
}
}
// =============================================================================