Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Local-first RAG cache: distill docs into structured Markdown, then index/query with Chroma + hybrid search (vector + keyword).
Local-first RAG cache: distill docs into structured Markdown, then index/query with Chroma + hybrid search (vector + keyword).
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
RAGLite 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).
Local-first privacy: keep sensitive data on your machine/network. Open-source building blocks: Chroma π§ + ripgrep β‘ β no managed vector DB required. Compression-before-embeddings: distill first β less fluff/duplication β cheaper prompts + more reliable retrieval. Auditable artifacts: the distilled Markdown is human-readable and version-controllable. 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: vector similarity via Chroma keyword matches via ripgrep (rg)
This skill defaults to OpenClaw π¦ for condensation unless you pass --engine explicitly.
Python 3.11+ For indexing/query: Chroma server reachable (default http://127.0.0.1:8100) For hybrid keyword search: rg installed (brew install ripgrep) For OpenClaw engine: OpenClaw Gateway /v1/responses reachable OPENCLAW_GATEWAY_TOKEN set if your gateway requires auth
This 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 optional: *.outline.md optional: */nodes/*.md plus per-doc *.index.md and a root index.md metadata in .raglite/ (cache, run stats, errors)
Chroma not reachable β check --chroma-url, and that Chroma is running. No keyword results β install ripgrep (rg --version). OpenClaw engine errors β ensure gateway is up and token env var is set.
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: Distill to structured Markdown (compression-before-embeddings) Index locally into Chroma Query with hybrid retrieval (vector + keyword) It doesnβt replace memory/context β itβs the place to store what you need again.
Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.
Largest current source with strong distribution and engagement signals.