MCPcopy Index your code
hub / github.com/codeaashu/claude-code / getZipCachePluginsDir

Function getZipCachePluginsDir

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

Source from the content-addressed store, hash-verified

106 * Get the plugins directory within the zip cache.
107 */
108export function getZipCachePluginsDir(): string {
109 const cachePath = getPluginZipCachePath()
110 if (!cachePath) {
111 throw new Error('Plugin zip cache is not enabled')
112 }
113 return join(cachePath, 'plugins')
114}
115
116// Session plugin cache: a temp directory on local disk (NOT in the mounted zip cache)
117// that holds extracted plugins for the duration of the session.

Callers 1

Calls 1

getPluginZipCachePathFunction · 0.85

Tested by

no test coverage detected