(
flowId: string,
options?: { rootDir?: string },
)
| 110 | } |
| 111 | |
| 112 | export async function getAutonomyFlowText( |
| 113 | flowId: string, |
| 114 | options?: { rootDir?: string }, |
| 115 | ): Promise<string> { |
| 116 | return formatAutonomyFlowDetail( |
| 117 | await getAutonomyFlowById(flowId, options?.rootDir), |
| 118 | ) |
| 119 | } |
| 120 | |
| 121 | export async function autonomyFlowHandler(flowId: string): Promise<void> { |
| 122 | process.stdout.write(`${await getAutonomyFlowText(flowId)}\n`) |
no test coverage detected