export function getClaudeToolInputString(toolName: string, input: unknown): string | undefined {
if (input === undefined) {
}
if (toolName === 'Bash' || toolName === 'BashOutput' || toolName === 'KillBash') {
const command = readStringField(input, 'command');