Install
openclaw skills install raglite-libraryLocal-first RAG cache: distill docs into structured Markdown, then index/query with Chroma + hybrid search (vector + keyword).
openclaw skills install raglite-libraryRAGLite is a local-first RAG cache.
It does not replace model memory or chat context. It gives your agent a durable place to store and retrieve information the model wasn’t trained on — especially useful for local/private knowledge (school work, personal notes, medical records, internal runbooks).
If you later outgrow local, you can swap in a hosted DB — but you often don’t need to.
Turns docs into structured Markdown outputs (low fluff, more “what matters”).
Embeds the distilled outputs into a Chroma collection (one DB, many collections).
Hybrid retrieval:
rg)This skill defaults to OpenClaw 🦞 for condensation unless you pass --engine explicitly.
http://127.0.0.1:8100)rg installed (brew install ripgrep)/v1/responses reachableOPENCLAW_GATEWAY_TOKEN set if your gateway requires authThis skill installs RAGLite into a skill-local venv:
./scripts/install.sh
It installs from GitHub:
git+https://github.com/VirajSanghvi1/raglite.git@main./scripts/raglite.sh run /path/to/docs \
--out ./raglite_out \
--collection my-docs \
--chroma-url http://127.0.0.1:8100 \
--skip-existing \
--skip-indexed \
--nodes
./scripts/raglite.sh query ./raglite_out \
--collection my-docs \
--top-k 5 \
--keyword-top-k 5 \
"rollback procedure"
In --out you’ll see:
*.tool-summary.md*.execution-notes.md*.outline.md*/nodes/*.md plus per-doc *.index.md and a root index.md.raglite/ (cache, run stats, errors)--chroma-url, and that Chroma is running.rg --version).RAGLite is a local RAG cache for repeated lookups.
When you (or your agent) keep re-searching for the same non-training data — local notes, school work, medical records, internal docs — RAGLite gives you a private, auditable library:
It doesn’t replace memory/context — it’s the place to store what you need again.