()
| 30 | } |
| 31 | |
| 32 | hasPluginEntry(): boolean { |
| 33 | const settings = readPiSettings(); |
| 34 | if (!settings) return false; |
| 35 | const packages = (settings.packages ?? []) as unknown[]; |
| 36 | return packages.some((entry) => matchesPiPackage(entry)); |
| 37 | } |
| 38 | |
| 39 | getConfigPaths(): HarnessConfigPaths { |
| 40 | const dir = getPiAgentConfigDir(); |
nothing calls this directly
no test coverage detected