Loading...
Loading...
Process large codebases (>100 files) using the Recursive Language Model pattern. Orchestrates parallel sub-agents to map-reduce across files without context rot. Use when: analyzing large repositories; auditing security or auth across many files; finding patterns across 50+ files; processing large log files or data dumps
npx skill4agent add guia-matthieu/clawfu-skills rlm# Find candidate files
grep -rl "pattern" src/ --include="*.ts"
find . -name "*.py" -newer last_checkAgent 1: "Read src/api/routes.ts. List all endpoints with their auth decorators."
Agent 2: "Read src/api/users.ts. List all endpoints with their auth decorators."
...grep -l "@Controller" src/**/*.ts