llama-index-skill

Ingest and index domain-specific data, then query it with LlamaIndex for retrieval-augmented generation.

Updated Feb 11, 2026
One-click install
npx skills add https://github.com/chicagopeabodydev-sudo/library_bot_poc --skill llama-index-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: llama-index-skill
Source: https://github.com/chicagopeabodydev-sudo/library_bot_poc/tree/main/.cursor/skills/llama-index-skill
Command: npx skills add https://github.com/chicagopeabodydev-sudo/library_bot_poc --skill llama-index-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill helps augment LLM answers by providing a workflow to ingest domain-specific data, convert it into LlamaIndex documents, and expose it for retrieval-augmented generation.

Core Features & Use Cases

  • Ingest diverse data formats (markdown, PDFs, text) and convert them into LlamaIndex documents for indexing.
  • Build embeddings and store them in a vector-store to enable fast, relevant retrieval during question answering.
  • Use cases include augmenting research summaries, knowledge bases, and domain-specific chat with precise, contextual data.

Quick Start

Load your own data into LlamaIndex, build an index, and query it to augment LLM answers with custom data.

Frequently Asked Questions about llama-index-skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I augment LLM answers with custom domain data?

To augment LLM answers with custom data, you can use a retrieval-augmented generation workflow to ingest domain-specific documents, build embeddings, and store them in a vector-store index for fast contextual retrieval. This supplies precise information to the LLM during question answering.

Can I load markdown files into a vector-store index for retrieval?

Yes, you can load markdown files into a vector-store index. The data ingestion workflow converts diverse data formats like markdown, PDFs, and text into documents, generates embeddings, and stores them for retrieval-augmented responses.

What is the best way to build a knowledge base for retrieval-augmented generation?

Building a knowledge base for retrieval-augmented generation involves loading your documents, creating embeddings, and storing them in a vector-store index. This enables fast, relevant retrieval to augment research summaries or domain-specific chat with contextual data.

Do I need a vector-store to query custom documents with LlamaIndex?

Yes, a vector-store is needed to query custom documents with LlamaIndex. The workflow builds embeddings from your ingested data and stores them in a vector-store index, which enables fast, relevant retrieval during question answering.

Does this data ingestion workflow support PDFs and text files?

Yes, the data ingestion workflow supports PDFs and text files. It ingests diverse data formats including markdown, PDFs, and text, converting them into documents for indexing and retrieval-augmented generation.

Why use embeddings for domain-specific chat and research summaries?

Embeddings are used for domain-specific chat and research summaries to convert documents into searchable vectors stored in an index. This enables fast, relevant retrieval of precise contextual data to augment LLM answers.