← Back to list

agentic-rag
by abhishekmmgn
agent skills
⭐ 0🍴 0📅 Jan 20, 2026
SKILL.md
name: agentic-rag description: strategies for building Agentic RAG systems. Use this to move beyond static retrieval by using autonomous agents for adaptive source selection, query expansion, and multi-step reasoning.
Agentic RAG Strategies
Goal
Transform traditional, static Retrieval-Augmented Generation (RAG) into a dynamic, agentic process that actively reasons about how and where to find information.
Core Capabilities
1. Adaptive Retrieval
- Concept: Instead of a single pass against a vector database, the agent dynamically selects the best knowledge source based on the context.
- Mechanism: The agent evaluates the query ambiguity and chooses between multiple data stores (e.g., "PDFs" vs. "Web Search" vs. "Structured DB").
2. Multi-Step Reasoning
- Concept: For complex queries, the agent breaks the problem down into logical steps and retrieves information sequentially.
- Workflow:
- Decompose: Break "Compare the revenue of Company A and Company B" into two sub-queries.
- Retrieve: Fetch revenue for Company A.
- Retrieve: Fetch revenue for Company B.
- Synthesize: Combine both facts into a final answer.
3. Context-Aware Query Expansion
- Concept: The agent doesn't just search for the user's raw query. It generates multiple refined search terms to increase recall.
- Benefit: Captures synonyms, related concepts, and specific terminology that the user might have missed.
Optimization Techniques
- Self-Correction: Implement an Evaluator Agent that reviews retrieved chunks for relevance before generating an answer. If the data is poor, it triggers a new search with better terms.
- Better Search: Enhance the underlying engine with semantic chunking (keeping topics together) and re-ranking (using a second model to order results by quality).
Score
Total Score
40/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