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

Function formatAutonomyDeepStatus

src/utils/autonomyStatus.ts:209–221  ·  view source on GitHub ↗
(
  params: DeepStatusParams,
)

Source from the content-addressed store, hash-verified

207}
208
209export async function formatAutonomyDeepStatus(
210 params: DeepStatusParams,
211): Promise<string> {
212 const sections = await formatAutonomyDeepStatusSections(params)
213 return sections
214 .map((section, index) =>
215 [
216 index === 0 ? '# Autonomy Deep Status' : `## ${section.title}`,
217 section.content,
218 ].join('\n'),
219 )
220 .join('\n\n')
221}

Callers 1

getAutonomyStatusTextFunction · 0.85

Calls 1

Tested by

no test coverage detected