rlm-distill-ollama

Installation
SKILL.md

Dependencies

This skill requires Python 3.8+ and standard library only. No external packages needed.

To install this skill's dependencies:

pip-compile ./requirements.in
pip install -r ./requirements.txt

See ./requirements.txt for the dependency lockfile (currently empty — standard library only).


/rlm-factory:distill

Summarize files into the RLM Summary Ledger. Two paths depending on context:

For detailed execution protocol, see agent: rlm-distill-agent

Path 1 -- Agent Distillation (default, fast, no Ollama)

The agent reads each file and writes a high-quality summary via inject_summary.py. Use for 1-50 files. The agent is faster and produces better summaries than local Ollama.

python3 .agents/skills/rlm-distill-ollama/scripts/inject_summary.py \
  --profile project \
  --file path/to/file.md \
  --summary "Your agent-generated summary here."

Path 2 -- Ollama Batch (offline, bulk, 50+ files)

Requires Ollama running locally (ollama serve, model: granite3.2:8b).

# All files in profile scope
python3 .agents/skills/rlm-distill-ollama/scripts/distiller.py --profile project

# Single file
python3 .agents/skills/rlm-distill-ollama/scripts/distiller.py --profile project --file path/to/file.md

# Changed in last 2 hours
python3 .agents/skills/rlm-distill-ollama/scripts/distiller.py --profile project --since 2
Profile Flag Cache file
Docs / protocols --profile project rlm_summary_cache.json
Plugins / scripts --profile tools rlm_tool_cache.json
Related skills
Installs
1
GitHub Stars
2
First Seen
Apr 3, 2026