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

Function getAutonomyFlowsText

src/cli/handlers/autonomy.ts:96–104  ·  view source on GitHub ↗
(
  limit?: string | number,
  options?: { rootDir?: string },
)

Source from the content-addressed store, hash-verified

94}
95
96export async function getAutonomyFlowsText(
97 limit?: string | number,
98 options?: { rootDir?: string },
99): Promise<string> {
100 return formatAutonomyFlowsList(
101 await listAutonomyFlows(options?.rootDir),
102 parseAutonomyLimit(limit),
103 )
104}
105
106export async function autonomyFlowsHandler(
107 limit?: string | number,

Callers 3

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

Calls 3

formatAutonomyFlowsListFunction · 0.85
listAutonomyFlowsFunction · 0.85
parseAutonomyLimitFunction · 0.85

Tested by

no test coverage detected