Agent skill · AI & Agents

rag-skills

RAG-specific best practices for LlamaIndex, ChromaDB, and Celery workers. Covers ingestion, retrieval, embeddings, and performance.

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
npx skills add majiayu000/claude-skill-registry --skill rag-skills-llama-farm-llamafarm-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: ReadGrepGlob
Path: skills/ai-ml/rag-skills-llama-farm-llamafarm-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# RAG Skills for LlamaFarm Framework-specific patterns and code review checklists for the RAG component. **Extends**: [python-skills](../python-skills/SKILL.md) - All Python best practices apply here. ## Component Overview | Aspect | Technology | Version | |--------|------------|---------| | Python | Python | 3.11+ | | Document Processing | LlamaIndex | 0.13+ | | Vector Storage | ChromaDB | 1.0+ | | Task Queue | Celery | 5.5+ | | Embeddings | Universal/Ollama/OpenAI | Multiple | ## Directory Structure ``` rag/ ├── api.py # Search and database APIs ├── celery_app.py # Celery configuration ├── main.py # Entry point ├── core/ │ ├── base.py # Document, Component, Pipeline ABCs │ ├── factories.py # Component factories │ ├── ingest_handler.py # File ingestion with safety checks │ ├── blob_processor.py # Binary file processing │ ├── settings.py # Pydantic settings │ └── logging.py # RAGStructLogger ├── components/ │ ├── embedders/ # Embedding providers │ ├── extractors/ # Metadata extractors │ ├── parsers/ # Document parsers (LlamaIndex) │ ├── retrievers/ # Retrieval strategies │ └── stores/ # Vector stores (ChromaDB, FAISS) ├── tasks/ # Celery tasks │ ├── ingest_tasks.py # File ingestion

What's inside
Steps it walks through
  1. Component Overview
  2. Directory Structure
  3. Quick Reference
  4. Core Patterns
  5. Document Dataclass
  6. Component Abstract Base Class
  7. Retrieval Strategy Pattern
  8. Embedder with Circuit Breaker
  9. Review Checklist Summary
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the rag-skills skill do?

RAG-specific best practices for LlamaIndex, ChromaDB, and Celery workers. Covers ingestion, retrieval, embeddings, and performance.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill rag-skills-llama-farm-llamafarm-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going