rag-assistente-conhecimento
Criar assistente RAG com conhecimento da empresa.
npx skills add Hermes-brasil/hermes-brasil --skill rag-assistente-conhecimento --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# RAG — Assistente de Conhecimento (Retrieval-Augmented Generation) > **O que é:** técnica que permite IA acessar conhecimento EXTERNO (documentos, > FAQ, banco de dados da empresa) para dar respostas precisas e baseadas nos > dados do cliente — em vez de respostas genéricas do modelo. ## Conceitos-chave ``` 📋 PIPELINE DE RAG: ├── 1. INGESTÃO: carregar documentos ├── 2. INDEXAÇÃO: dividir em chunks + gerar embeddings ├── 3. RETRIEVAL: buscar chunks relevantes à pergunta └── 4. GERAÇÃO: modelo responde usando o contexto recuperado ``` ### Técnicas avançadas (aplicar conforme necessidade) ``` ├── Query Translation: melhorar a pergunta antes de buscar │ ├── Multi-Query (várias versões da pergunta) │ ├── RAG Fusion (combina resultados) │ ├── Decomposition (quebra pergunta complexa) │ ├── Step Back (pergunta mais geral) │ └── HyDE (gera resposta hipotética para buscar) ├── Routing: direcionar pergunta ao modelo/fluxo certo ├── Indexing avançado: RAPTOR, ColBERT ├── CRAG (Conditional RAG): corrigir retrieval com base no grau de confiança └── Adaptive RAG: decide quando buscar mais dados ou responder direto ``` ## Embeddings - Convertem texto em vetores numéricos (capturam significado) -
- Conceitos-chave
- Técnicas avançadas (aplicar conforme necessidade)
- Embeddings
- Chunking — lição importante
- Busca semântica (retrieval)
- Fluxo de trabalho (para cliente real)
- Venda como serviço (preços de referência)
- Pitfalls
- Quando usar
What does the rag-assistente-conhecimento skill do?
Criar assistente RAG com conhecimento da empresa.
How do I install it?
Run `npx skills add Hermes-brasil/hermes-brasil --skill rag-assistente-conhecimento --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 Hermes-brasil/hermes-brasil, a repository with 61 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.
