From db8f90428e7fd8b5fb42099776077d74a7a7dd31 Mon Sep 17 00:00:00 2001 From: catlog22 Date: Thu, 23 Oct 2025 21:22:01 +0800 Subject: [PATCH] fix: correct bug fixing workflow in GETTING_STARTED MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /cli:mode:bug-index generates analysis documents, not task JSON. Claude should directly execute fixes based on analysis results, not call /workflow:execute which requires task JSON files. Updated both English and Chinese versions to reflect correct workflow: - Removed incorrect /workflow:execute step - Added clarification that Claude implements fix directly after analysis 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- GETTING_STARTED.md | 3 +-- GETTING_STARTED_CN.md | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index 9d36af39..3f1a7d85 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -146,8 +146,7 @@ Quick bug analysis and fix workflow: # Analyze the bug /cli:mode:bug-index "Incorrect success message with wrong password" -# Generate and execute fix plan -/workflow:execute +# Claude will analyze and then directly implement the fix based on the analysis ``` --- diff --git a/GETTING_STARTED_CN.md b/GETTING_STARTED_CN.md index 0f21174c..9c7d5b06 100644 --- a/GETTING_STARTED_CN.md +++ b/GETTING_STARTED_CN.md @@ -146,8 +146,7 @@ # 分析 Bug /cli:mode:bug-index "密码错误时仍显示成功消息" -# 生成并执行修复计划 -/workflow:execute +# Claude 会分析后直接根据分析结果实现修复 ``` ---