(filePath)
| 133 | * @returns {boolean} |
| 134 | */ |
| 135 | export const isAutoGeneratedFile = (filePath) => { |
| 136 | return AUTO_GENERATED_PATTERNS.some((pattern) => matchGlob(filePath, pattern)); |
| 137 | }; |
| 138 | |
| 139 | /** |
| 140 | * Infer a contribution type string (e.g. 'skills', 'agents', 'doc') for a file path. |
no test coverage detected