Install
openclaw skills install @jonathanjing/rag-evalEvaluate a specifically provided RAG question, answer, and retrieved contexts with Ragas metrics. Use when the user explicitly requests RAG evaluation or hallucination analysis and has chosen a local or cloud judge; do not persist raw content unless requested.
openclaw skills install @jonathanjing/rag-evalTest and monitor your RAG pipeline's output quality.
Tell OpenClaw: "Install @jonathanjing/rag-eval."
If you prefer the terminal, run:
openclaw skills install @jonathanjing/rag-eval
OPENAI_API_KEY (default, uses GPT-4o)ANTHROPIC_API_KEY (uses Claude Haiku)RAGAS_LLM=ollama/llama3 (for local/offline evaluation)For a cloud judge, also set RAGAS_ALLOW_CLOUD=1 after confirming the input may leave the machine.
bash "{baseDir}/scripts/setup.sh"
This script intentionally refuses global installation. Activate a virtual environment first, then run it.
When user asks to evaluate an answer, collect:
⚠️ SECURITY: Never interpolate user content directly into shell commands. Write the input to a temp JSON file first, then pipe it to the evaluator:
# Step 1: Write input to a temp file (agent should use the write/edit tool, NOT echo)
# Write this JSON to /tmp/rag-eval-input.json using the file write tool:
# {"question": "...", "answer": "...", "contexts": ["chunk1", "chunk2"]}
# Step 2: Run the evaluator. Raw content is not saved by default.
python3 "{baseDir}/scripts/run_eval.py" --input-file /tmp/rag-eval-input.json
# Step 3: Delete the temporary input with the available file tool.
Alternatively, use --input-file:
python3 "{baseDir}/scripts/run_eval.py" --input-file /tmp/rag-eval-input.json
Output JSON:
{
"faithfulness": 0.92,
"answer_relevancy": 0.87,
"context_precision": 0.79,
"overall_score": 0.86,
"verdict": "PASS",
"flags": []
}
Post results to user with human-readable summary:
🧪 Eval Results
• Faithfulness: 0.92 ✅ (no hallucination detected)
• Answer Relevancy: 0.87 ✅
• Context Precision: 0.79 ⚠️ (some irrelevant context retrieved)
• Overall: 0.86 — PASS
Persist only when the user explicitly requests it by adding --save. The saved record contains the raw question, answer, and contexts.
For a JSONL dataset file (each line: {"question":..., "answer":..., "contexts":[...]}):
python3 "{baseDir}/scripts/batch_eval.py" --input ./dataset.jsonl --output ./batch-eval.json
| Score | Verdict | Meaning |
|---|---|---|
| 0.85+ | ✅ PASS | Production-ready quality |
| 0.70-0.84 | ⚠️ REVIEW | Needs improvement |
| < 0.70 | ❌ FAIL | Significant quality issues |
If faithfulness < 0.80, run:
python3 "{baseDir}/scripts/run_eval.py" --explain --metric faithfulness
This outputs which sentences in the answer are NOT supported by context.
RAGAS_LLM.RAGAS_LLM=ollama/llama3 in environment