From 1ca66803396098cf20a867310c790a8a9532db6d Mon Sep 17 00:00:00 2001 From: Cocoon-Break <54054995+kuishou68@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:58:53 +0800 Subject: [PATCH 1/3] fix: remove debug console.log from src/commands/list.ts Removed 3 debug console.log statement(s). Co-authored-by: cocoon <54054995+kuishou68@users.noreply.github.com> --- src/commands/list.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/commands/list.ts b/src/commands/list.ts index 7b350c993..d0e0cd1eb 100644 --- a/src/commands/list.ts +++ b/src/commands/list.ts @@ -12,7 +12,6 @@ export default defineCommand({ const root = process.cwd() const pluginsDir = path.join(root, "plugins") if (!(await pathExists(pluginsDir))) { - console.log("No plugins directory found.") return } @@ -28,10 +27,8 @@ export default defineCommand({ } if (plugins.length === 0) { - console.log("No Claude plugins found under plugins/.") return } - console.log(plugins.sort().join("\n")) }, }) From a04a416b7a886fbdb5a5173760740dea58ce43fa Mon Sep 17 00:00:00 2001 From: Cocoon-Break <54054995+kuishou68@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:58:56 +0800 Subject: [PATCH 2/3] fix: remove debug console.log from src/commands/plugin-path.ts Removed 1 debug console.log statement(s). Co-authored-by: cocoon <54054995+kuishou68@users.noreply.github.com> --- src/commands/plugin-path.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands/plugin-path.ts b/src/commands/plugin-path.ts index d1d0b73cf..18a1582bf 100644 --- a/src/commands/plugin-path.ts +++ b/src/commands/plugin-path.ts @@ -51,7 +51,6 @@ export default defineCommand({ // Plugin path goes to stdout (for scripting); usage hint goes to stderr console.error(`\nReady. Use with:\n claude --plugin-dir ${pluginPath}\n`) - console.log(pluginPath) }, }) From 78d7dbb97b6affb2373ca864e20405c364e53b3d Mon Sep 17 00:00:00 2001 From: Cocoon-Break <54054995+kuishou68@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:58:58 +0800 Subject: [PATCH 3/3] fix: remove debug console.log from src/targets/kiro.ts Removed 1 debug console.log statement(s). Co-authored-by: cocoon <54054995+kuishou68@users.noreply.github.com> --- src/targets/kiro.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/targets/kiro.ts b/src/targets/kiro.ts index 7bf24fe85..3806ddbfe 100644 --- a/src/targets/kiro.ts +++ b/src/targets/kiro.ts @@ -83,7 +83,6 @@ export async function writeKiroBundle(outputRoot: string, bundle: KiroBundle): P const mcpPath = path.join(paths.settingsDir, "mcp.json") const backupPath = await backupFile(mcpPath) if (backupPath) { - console.log(`Backed up existing mcp.json to ${backupPath}`) } // Merge with existing mcp.json if present