(path string)
| 47 | candidate := apppaths.ProjectSystemPrompt(current) |
| 48 | if fileExists(candidate) { |
| 49 | return candidate |
| 50 | } |
| 51 | parent := filepath.Dir(current) |
| 52 | if parent == current { |
| 53 | break |
| 54 | } |
| 55 | current = parent |
| 56 | } |
| 57 | } |
| 58 |
no outgoing calls
no test coverage detected