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")) }, }) 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) }, }) 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