claudepluginhub 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -172,7 +172,7 @@ export async function runGithubRemove(ownerRepo, scopeOverride) {
172
172
  anyFailed = true;
173
173
  }
174
174
  // Best-effort: remove marketplace
175
- const removeResult = claudeMarketplaceRemove(meta.marketplaceName);
175
+ const removeResult = claudeMarketplaceRemove(meta.marketplaceName, scope);
176
176
  if (removeResult.ok) {
177
177
  printSuccess(`Removed marketplace ${meta.marketplaceName}`);
178
178
  }
package/dist/native.d.ts CHANGED
@@ -12,7 +12,7 @@ export declare function claudePluginUninstall(plugin: string, scope: Scope): {
12
12
  ok: boolean;
13
13
  output: string;
14
14
  };
15
- export declare function claudeMarketplaceRemove(name: string): {
15
+ export declare function claudeMarketplaceRemove(name: string, scope: Scope): {
16
16
  ok: boolean;
17
17
  output: string;
18
18
  };
package/dist/native.js CHANGED
@@ -37,6 +37,6 @@ export function claudePluginInstall(plugin, marketplace, scope) {
37
37
  export function claudePluginUninstall(plugin, scope) {
38
38
  return runClaude(['plugin', 'uninstall', plugin, '--scope', scope]);
39
39
  }
40
- export function claudeMarketplaceRemove(name) {
41
- return runClaude(['plugin', 'marketplace', 'remove', name]);
40
+ export function claudeMarketplaceRemove(name, scope) {
41
+ return runClaude(['plugin', 'marketplace', 'remove', name, '--scope', scope]);
42
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudepluginhub",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Install Claude Code components from ClaudePluginHub",
5
5
  "bin": {
6
6
  "claudepluginhub": "dist/index.js"