( params: DeepStatusParams, )
| 207 | } |
| 208 | |
| 209 | export 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 | } |
no test coverage detected