(cwd: string, projectPath: string)
| 50 | } |
| 51 | |
| 52 | function pathMatches(cwd: string, projectPath: string): boolean { |
| 53 | const a = path.resolve(cwd); |
| 54 | const b = path.resolve(projectPath); |
| 55 | return a === b || a.startsWith(b + path.sep); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Installed Claude Code plugins relevant to `cwd`: user-scope plugins always apply; |
no test coverage detected