(root: string)
| 154 | } |
| 155 | |
| 156 | export async function loadLoopConfig(root: string): Promise<string | null> { |
| 157 | return readFileIfExists(path.join(root, 'LOOP.md')); |
| 158 | } |
| 159 | |
| 160 | export async function loadBudget(root: string): Promise<string | null> { |
| 161 | return readFileIfExists(path.join(root, 'loop-budget.md')); |
no test coverage detected