mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-10 02:24:35 +08:00
feat: Add guideline to avoid complex bash pipe chains in test-fix-agent
Prefer dedicated tools (Read, Grep, Glob) over multi-pipe bash commands for file operations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -332,6 +332,7 @@ When generating test results for orchestrator (saved to `.process/test-results.j
|
|||||||
- Skip final verification
|
- Skip final verification
|
||||||
- Leave tests failing - must achieve 100% pass rate
|
- Leave tests failing - must achieve 100% pass rate
|
||||||
- Use `run_in_background` for Bash() commands - always set `run_in_background=false` to ensure tests run in foreground for proper output capture
|
- Use `run_in_background` for Bash() commands - always set `run_in_background=false` to ensure tests run in foreground for proper output capture
|
||||||
|
- Use complex bash pipe chains (`cmd | grep | awk | sed`) - prefer dedicated tools (Read, Grep, Glob) for file operations and content extraction; simple single-pipe commands are acceptable when necessary
|
||||||
|
|
||||||
## Quality Certification
|
## Quality Certification
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user