requestFlag property

String? get requestFlag

Flag that precedes the per-spawn request-file path in the headless argv.

When populated (dev-13), the resulting argv is [...headlessCommand, systemPromptFlag, <systemPromptPath>, requestFlag, <requestFilePath>]. null means this tool has not yet been wired for headless operation.

Implementation

String? get requestFlag {
  switch (this) {
    case TCliTool.claude:
      return null;
    case TCliTool.codex:
      return null;
    case TCliTool.cursor:
      return null;
  }
}