(file)
| 402 | } |
| 403 | |
| 404 | function isPromptSafetyFile(file) { |
| 405 | if (isCanonicalMdcRule(file)) return true; |
| 406 | if (/^\.cursor\/rules\/.+\.mdc$/i.test(file)) return true; |
| 407 | return isAgentInstructionFile(file); |
| 408 | } |
| 409 | |
| 410 | function isAgentInstructionFile(file) { |
| 411 | const lowerFile = file.toLowerCase(); |
no test coverage detected