MCPcopy Index your code
hub / github.com/liuup/claude-code-analysis / getZipCacheInstalledPluginsPath

Function getZipCacheInstalledPluginsPath

src/utils/plugins/zipCache.ts:86–92  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

84 * Get the path to installed_plugins.json in the zip cache.
85 */
86export function getZipCacheInstalledPluginsPath(): string {
87 const cachePath = getPluginZipCachePath()
88 if (!cachePath) {
89 throw new Error('Plugin zip cache is not enabled')
90 }
91 return join(cachePath, 'installed_plugins.json')
92}
93
94/**
95 * Get the marketplaces directory within the zip cache.

Callers

nothing calls this directly

Calls 1

getPluginZipCachePathFunction · 0.85

Tested by

no test coverage detected