MCPcopy Create free account
hub / github.com/codeaashu/claude-code / getAutoUpdatedPluginNames

Function getAutoUpdatedPluginNames

src/utils/plugins/pluginAutoupdate.ts:71–78  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

69 * Returns the list of plugin names that have pending updates.
70 */
71export function getAutoUpdatedPluginNames(): string[] {
72 if (!hasPendingUpdates()) {
73 return []
74 }
75 return getPendingUpdatesDetails().map(
76 d => parsePluginIdentifier(d.pluginId).name,
77 )
78}
79
80/**
81 * Get the set of marketplaces that have autoUpdate enabled.

Callers

nothing calls this directly

Calls 3

hasPendingUpdatesFunction · 0.85
getPendingUpdatesDetailsFunction · 0.85
parsePluginIdentifierFunction · 0.85

Tested by

no test coverage detected