Agent skill
knowledge-retrieval
Semantic search over ingested documents using RAG (LlamaIndex/ChromaDB or Foundational RAG)
Install this agent skill to your Project
npx add-skill https://github.com/open-gitagent/gitagent/tree/main/examples/nvidia-deep-researcher/skills/knowledge-retrieval
SKILL.md
Knowledge Retrieval
Perform semantic search over a pre-ingested document collection using Retrieval-Augmented Generation (RAG). Backed by LlamaIndex with ChromaDB or NVIDIA Foundational RAG.
When to Use
- Searching internal or pre-ingested documents and reports
- Finding information in PDFs, whitepapers, or technical documentation
- Retrieving domain-specific knowledge not available on the open web
- This is the highest priority source — check the knowledge base first before web or paper searches
How to Use
- Formulate a semantic search query describing the information needed
- Call
knowledge_retrievalwith the query - Review returned chunks for relevance
- Note the citation metadata (filename, page number) for sourcing
Result Format
Results are returned as text chunks with citation metadata:
Relevant text passage from the ingested document...
Citation: filename.pdf, p.12
Constraints
- Searches only over documents that have been ingested into the knowledge index
- Returns ranked chunks based on semantic similarity
- Citation format:
Citation: filename.ext, p.X - Each call counts toward the researcher's 8-call limit per task
Backend Options
- LlamaIndex + ChromaDB — Local vector store with LlamaIndex orchestration
- NVIDIA Foundational RAG — NVIDIA-hosted RAG service with NeMo Retriever
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
paper-search
Academic paper search via Google Scholar using Serper API
web-search
Advanced web search using Tavily API for current information retrieval
wiki-ingest
Ingest a raw source document into the wiki. Reads the source, extracts key information, creates or updates wiki pages, maintains cross-references, and logs the operation. Use when the user adds a new source or says 'ingest this'.
wiki-lint
Health-check the wiki for contradictions, stale claims, orphan pages, missing cross-references, and knowledge gaps. Use periodically or when the user says 'lint the wiki' or 'check wiki health'.
wiki-query
Query the wiki to answer questions. Searches wiki pages, synthesizes answers with citations, and optionally files valuable answers back as new wiki pages. Use when the user asks a question about the knowledge base.
get-started
Guides installation of gitagent and creation of first agent with scaffolding, configuration, and validation. Use when the user is new to gitagent, asks how to get started, wants to install gitagent, set up their first agent, or says 'how do I start?'
Didn't find tool you were looking for?