Bug 修复操作指南
SuperCoder 提供了完整的 AI 辅助 bug 修复流程:
1. 定位问题阶段
- utilization
Show me the project structure
命令了解项目结构 - pass (a bill or inspection etc)
Search for usage of error
等搜索命令定位问题代码
2. 问题修复阶段
- 直接编辑:
Edit file main.py to fix error
+ 详细说明 - 自动修复:运行
Fix bugs in main.py
让AI分析建议 - 交互确认:系统会显示问题位置和建议修改,需用户输入
y/n
recognize
3. 验证阶段
- utilization
Read file main.py
查看修改结果 - 可配合手动测试验证修复效果
Practice Recommendations
- 复杂问题可分步骤处理
- 建议保持commit记录以便回退
- 对于关键代码应进行人工复核
- combining
Cursor Rules
可实现更精准修改
This answer comes from the articleSuperCoder: Intelligent Code Assistant for Command Line Terminal RunningThe