(planPath, resolvedPath string)
| 47 | } |
| 48 | |
| 49 | func symlinkedPlanPathMessage(planPath, resolvedPath string) string { |
| 50 | return fmt.Sprintf( |
| 51 | "the chat-specific plan path %s resolves to %s; symlinked plan paths are not allowed during plan turns", |
| 52 | planPath, |
| 53 | resolvedPath, |
| 54 | ) |
| 55 | } |
| 56 | |
| 57 | func planPathVerificationMessage(requestedPath string) string { |
| 58 | return fmt.Sprintf( |
no outgoing calls
no test coverage detected