* Translate the base command (from `WEB_TERMINAL_COMMAND` / template) + * resume intent into the final argv. For claude: * base + 'last' → [...base, '--continue'] * base + { id } → [...base, '--resume', id] * For codex (M2): * base + 'last' → [...base, 'resume', '--last
(base: readonly string[], ctx: SpawnContext)
| 164 | * ignores it always. |
| 165 | */ |
| 166 | composeCommand(base: readonly string[], ctx: SpawnContext): readonly string[]; |
| 167 | |
| 168 | /** |
| 169 | * One-shot HEADLESS argv for an automation task — like `composeCommand`, but |
no outgoing calls
no test coverage detected