This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bash -c ' | |
| print_directory_content() { | |
| local dir="$1" | |
| local prefix="$2" | |
| echo "${prefix}${dir##*/}/" | |
| for item in "$dir"/*; do | |
| base_name=$(basename "$item") | |
| if [[ "$base_name" == ".next" || | |
| "$base_name" == "node_modules" || | |
| "$base_name" == "data" || |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Simplify: Code Review and Cleanup | |
| Review all changed files for reuse, quality, and efficiency. Fix any issues found. | |
| Phase 1: Identify Changes | |
| Run git diff (or git diff HEAD if there are staged changes) to see what changed. If there are no git changes, review the most recently modified files that the user mentioned or that you edited earlier in this | |
| conversation. | |
| Phase 2: Launch Three Review Agents in Parallel |
OlderNewer