From 47e05f2142e0aa19f00445ac3f38d974182eaa37 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Sun, 9 Nov 2025 13:30:06 +0800 Subject: [PATCH] fix: change explore-auto default to non-interactive mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update default interactive_mode from true to false - Add --interactive parameter documentation - Non-interactive batch generation is now the default behavior 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude/commands/workflow/ui-design/explore-auto.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.claude/commands/workflow/ui-design/explore-auto.md b/.claude/commands/workflow/ui-design/explore-auto.md index 7817e5f9..365b264f 100644 --- a/.claude/commands/workflow/ui-design/explore-auto.md +++ b/.claude/commands/workflow/ui-design/explore-auto.md @@ -60,6 +60,7 @@ allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*), Glob(*), Write(* - `--prompt ""`: Design style and target description - `--style-variants `: Style variants (default: inferred from prompt or 3, range: 1-5) - `--layout-variants `: Layout variants per style (default: inferred or 3, range: 1-5) +- `--interactive`: Enable interactive multi-selection mode for variants (default: false - non-interactive batch generation) - `--batch-plan`: Auto-generate implementation tasks after design-update **Legacy Parameters** (maintained for backward compatibility): @@ -155,8 +156,8 @@ ELSE: VALIDATE: 1 <= style_variants <= 5, 1 <= layout_variants <= 5 -# Interactive mode (default: enabled for multi-selection) -interactive_mode = --interactive !== undefined ? --interactive : true # Default to true +# Interactive mode (default: disabled - non-interactive batch generation) +interactive_mode = --interactive !== undefined ? --interactive : false # Default to false REPORT: "🎯 Interactive mode: {interactive_mode ? 'enabled' : 'disabled'}" ```