(value: string)
| 4417 | // ant-only commands |
| 4418 | if ("external" === 'ant') { |
| 4419 | const validateLogId = (value: string) => { |
| 4420 | const maybeSessionId = validateUuid(value); |
| 4421 | if (maybeSessionId) return maybeSessionId; |
| 4422 | return Number(value); |
| 4423 | }; |
| 4424 | // claude log |
| 4425 | program.command('log').description('[ANT-ONLY] Manage conversation logs.').argument('[number|sessionId]', 'A number (0, 1, 2, etc.) to display a specific log, or the sesssion ID (uuid) of a log', validateLogId).action(async (logId: string | number | undefined) => { |
| 4426 | const { |
nothing calls this directly
no test coverage detected