← Back to list

rag-retrieval
by RooseveltAdvisors
⭐ 0🍴 0📅 Oct 25, 2025
SKILL.md
name: rag-retrieval description: Hybrid search (embedding + BM25) for retrieving relevant clinical note passages. Use for finding source evidence to support claims in summaries and recommendations.
RAG Retrieval Skill
Overview
Retrieves relevant text passages from clinical notes using hybrid search combining dense embeddings (semantic similarity) and BM25 (keyword matching).
When to Use
- Find source passages for clinical claims
- Retrieve evidence for treatment recommendations
- Support citation generation with relevant context
Installation
IMPORTANT: This skill has its own isolated virtual environment (.venv) managed by uv. Do NOT use system Python.
Initialize the skill's environment:
# From the skill directory
cd .agent/skills/rag-retrieval
uv sync # Creates .venv and installs dependencies from pyproject.toml
Usage
CRITICAL: Always use uv run to execute code with this skill's .venv, NOT system Python.
# From .agent/skills/rag-retrieval/ directory
# Run with: uv run python -c "..."
from rag_retrieval import RAGRetriever
retriever = RAGRetriever(chroma_client, collection_name="session_123")
# Query for relevant passages
results = retriever.retrieve(
query="cardiovascular symptoms",
n_results=5
)
for result in results:
print(f"Text: {result['text']}")
print(f"Score: {result['score']}")
print(f"Offset: {result['start_offset']}-{result['end_offset']}")
Implementation
See rag_retrieval.py.
Score
Total Score
45/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon