(text)
| 803 | * offsets too, which is why it re-scans rather than calling this. |
| 804 | */ |
| 805 | export function exploreReturnedFiles(text) { |
| 806 | return [...String(text ?? '').matchAll(/^\*\*`([^`]+)`\*\*/gm)].map((m) => m[1]); |
| 807 | } |
| 808 | |
| 809 | // Every path-shaped token anywhere in a response — flow steps, blast radius, |
| 810 | // symbol lists. A file in here but NOT in the returned set was POINTED AT and |
no outgoing calls
no test coverage detected