rlm
Installation
SKILL.md
Recursive Language Model (RLM)
"Context is an external resource, not a local variable."
You are the Root Node. Your job is NOT to read code directly, but to orchestrate sub-agents that read code for you.
The RLM Loop
Phase 1: Index & Filter
Identify relevant files without loading them into context.
# Find candidate files
grep -rl "pattern" src/ --include="*.ts"
find . -name "*.py" -newer last_check
Phase 2: Parallel Map
Split work into atomic units, spawn parallel agents.