From a62d30acb9d51fe2bcadf79ade93d34b703626a8 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Thu, 27 Nov 2025 17:07:42 +0800 Subject: [PATCH] refactor: Remove redundant reference to Claude in complexity assessment description --- .claude/commands/workflow/lite-plan.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.claude/commands/workflow/lite-plan.md b/.claude/commands/workflow/lite-plan.md index aa6f5c39..800b533b 100644 --- a/.claude/commands/workflow/lite-plan.md +++ b/.claude/commands/workflow/lite-plan.md @@ -36,7 +36,7 @@ Intelligent lightweight planning command with dynamic workflow adaptation based ``` Phase 1: Task Analysis & Exploration ├─ Parse input (description or .md file) - ├─ Claude intelligent complexity assessment (Low/Medium/High) + ├─ intelligent complexity assessment (Low/Medium/High) ├─ Exploration decision (auto-detect or --explore flag) └─ Decision: ├─ needsExploration=true → Launch parallel cli-explore-agents (1-4 based on complexity) @@ -98,9 +98,9 @@ if (!needsExploration) { } ``` -**Complexity Assessment** (Claude Intelligent Analysis): +**Complexity Assessment** (Intelligent Analysis): ```javascript -// Claude analyzes task complexity based on: +// analyzes task complexity based on: // - Scope: How many systems/modules are affected? // - Depth: Surface change vs architectural impact? // - Risk: Potential for breaking existing functionality?