gemini-rlm-min
1
总安装量
1
周安装量
#49948
全站排名
安装命令
npx skills add https://github.com/starwreckntx/irp__methodologies- --skill gemini-rlm-min
Agent 安装分布
mcpjam
1
claude-code
1
windsurf
1
crush
1
cline
1
Skill 文档
Gemini RLM (Minimal)
Purpose: Provide a lightweight, CLI-based implementation of the Recursive Language Model architecture using Google’s Gemini models. This skill allows for processing extremely large documents by orchestrating chunking, sub-LLM processing, and synthesis entirely via a Python script and the Gemini API.
Architecture
Based on arXiv:2512.24601 – Recursive Language Models.
| Component | Implementation | Model |
|---|---|---|
| Root LLM | gem_rlm.py (Orchestrator) |
Gemini 2.0 Flash |
| Sub-LLM | gem_rlm.py (Chunk Processor) |
Gemini 2.0 Flash |
| External Environment | scripts/rlm_repl.py |
Python 3 |
Prerequisites
- Environment Variable:
GEMINI_API_KEYmust be set in your shell environment.export GEMINI_API_KEY="your_api_key_here"
Usage
The primary entry point is the gem_rlm.py script.
Syntax
${SKILLS_ROOT}/gemini-rlm-min/gem_rlm.py --context <path_to_large_file> --query <"your query"> [options]
Options
--chunk-size: Size of chunks in characters (default: 50000)--overlap: Overlap between chunks in characters (default: 0)
Examples
Analyze a large log file:
export GEMINI_API_KEY="AIza..."
${SKILLS_ROOT}/gemini-rlm-min/gem_rlm.py --context ./large_logs.txt --query "Identify all security exceptions and their timestamps"
Summarize a book:
${SKILLS_ROOT}/gemini-rlm-min/gem_rlm.py --context ./mobydick.txt --query "Summarize the relationship between Ahab and Starbuck" --chunk-size 100000
How It Works
- Initialization: The script initializes a persistent Python REPL (
rlm_repl.py) and loads the large context file into memory. - Chunking: The context is split into manageable chunks (e.g., 50k chars) using the REPL.
- Sub-LLM Processing: The script iterates through each chunk, sending it to
gemini-2.0-flash-expwith a prompt to extract relevant information. - Synthesis: The extracted findings from all chunks are aggregated and sent to the Root LLM (also Gemini 2.0 Flash) to generate the final answer.
File Structure
gemini-rlm-min/
âââ SKILL.md # This definition file
âââ gem_rlm.py # Main CLI Orchestrator
âââ scripts/
â âââ rlm_repl.py # Persistent REPL environment
âââ state/ # Runtime state storage (chunks, pickle files)
Integration with IRP
This skill serves as a high-speed, low-overhead alternative to the full rlm-context-manager when:
- Quick analysis is needed via CLI.
- The context needs to be processed entirely by Gemini models.
- Minimal dependencies are preferred (no complex agent setup required).