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

Function getAutonomyRunsText

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

Source from the content-addressed store, hash-verified

78}
79
80export async function getAutonomyRunsText(
81 limit?: string | number,
82 options?: { rootDir?: string },
83): Promise<string> {
84 return formatAutonomyRunsList(
85 await listAutonomyRuns(options?.rootDir),
86 parseAutonomyLimit(limit),
87 )
88}
89
90export async function autonomyRunsHandler(
91 limit?: string | number,

Callers 2

autonomyRunsHandlerFunction · 0.85
getAutonomyCommandTextFunction · 0.85

Calls 3

formatAutonomyRunsListFunction · 0.85
listAutonomyRunsFunction · 0.85
parseAutonomyLimitFunction · 0.85

Tested by

no test coverage detected