()
| 37 | } |
| 38 | |
| 39 | getConfigPaths(): HarnessConfigPaths { |
| 40 | const dir = getPiAgentConfigDir(); |
| 41 | return { |
| 42 | configDir: dir, |
| 43 | pluginConfigPath: getPiUserExtensionsPath(), |
| 44 | magicContextConfigPath: getPiUserConfigPath(), |
| 45 | secondaryConfigPath: null, |
| 46 | }; |
| 47 | } |
| 48 | |
| 49 | async ensurePluginEntry(): Promise<PluginEntryResult> { |
| 50 | const settingsPath = getPiUserExtensionsPath(); |
nothing calls this directly
no test coverage detected