MCPcopy Create free account
hub / github.com/claude-code-best/claude-code / getAutonomyFlowText

Function getAutonomyFlowText

src/cli/handlers/autonomy.ts:112–119  ·  view source on GitHub ↗
(
  flowId: string,
  options?: { rootDir?: string },
)

Source from the content-addressed store, hash-verified

110}
111
112export 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
121export async function autonomyFlowHandler(flowId: string): Promise<void> {
122 process.stdout.write(`${await getAutonomyFlowText(flowId)}\n`)

Callers 3

autonomy.test.tsFile · 0.90
autonomyFlowHandlerFunction · 0.85
getAutonomyCommandTextFunction · 0.85

Calls 2

formatAutonomyFlowDetailFunction · 0.85
getAutonomyFlowByIdFunction · 0.85

Tested by

no test coverage detected