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

Function buildPluginAction

src/commands/plugin/PluginSettings.tsx:184–194  ·  view source on GitHub ↗
(pluginName: string)

Source from the content-addressed store, hash-verified

182 };
183}
184function buildPluginAction(pluginName: string): ErrorRowAction {
185 return {
186 kind: 'navigate',
187 tab: 'installed',
188 viewState: {
189 type: 'manage-plugins',
190 targetPlugin: pluginName,
191 action: 'uninstall'
192 }
193 };
194}
195const TRANSIENT_ERROR_TYPES = new Set(['git-auth-failed', 'git-timeout', 'network-error']);
196function isTransientError(error: PluginError): boolean {
197 return TRANSIENT_ERROR_TYPES.has(error.type);

Callers 1

buildErrorRowsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected