(value: string)
| 4404 | // ant-only commands |
| 4405 | if ("external" === 'ant') { |
| 4406 | const validateLogId = (value: string) => { |
| 4407 | const maybeSessionId = validateUuid(value); |
| 4408 | if (maybeSessionId) return maybeSessionId; |
| 4409 | return Number(value); |
| 4410 | }; |
| 4411 | // claude log |
| 4412 | 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) => { |
| 4413 | const { |
nothing calls this directly
no test coverage detected