Agent skill · AI & Agents

rag-assistente-conhecimento

Criar assistente RAG com conhecimento da empresa.

Hermes-brasilgithub.com/Hermes-brasilGitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/rag-assistente-conhecimento/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 61

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

From the SKILL.md

# 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) -

What's inside
Steps it walks through
  1. Conceitos-chave
  2. Técnicas avançadas (aplicar conforme necessidade)
  3. Embeddings
  4. Chunking — lição importante
  5. Busca semântica (retrieval)
  6. Fluxo de trabalho (para cliente real)
  7. Venda como serviço (preços de referência)
  8. Pitfalls
  9. Quando usar
More from hermes-brasil
All skills →
About this skill
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.

Keep going