resume method
Implementation
String resume(String conversationId) {
switch (this) {
case TCliTool.claude:
return '--conversation $conversationId';
case TCliTool.codex:
return 'resume $conversationId';
case TCliTool.cursor:
return '--resume=$conversationId';
}
}