systemPrompt method
Implementation
String systemPrompt(String value) {
switch (this) {
case TCliTool.claude:
return '--system-prompt '
'''$value''';
case TCliTool.codex:
case TCliTool.cursor:
return '<System>$value</System>';
}
}