Explore $ARGUMENTS using progressive disclosure to minimize token cost.
Progressive Disclosure (3 Layers)
Layer 1: File Index (cheapest — start here)
Get the file list WITHOUT reading contents:
# List all files in the target area
find [target] -type f -not -path '*/node_modules/*' -not -path '*/.git/*' | head -50
Or use Glob to find relevant files. From this list alone, identify:
- Entry points (index., main., app.*)
- Test files (.test., .spec.)
- Config files
[Description truncada. Veja o README completo no GitHub.]