run-llama/llamaparse-agent-skills

llamacloud-index

Use this skill whenever a question should be answered from documents stored in a LlamaCloud Index v2 knowledge base — retrieving passages, locating indexed files, or searching indexed content through the LlamaParse Platform REST API with curl.

First seen Jul 2, 2026

Installation

$ npx skills add run-llama/llamaparse-agent-skills --skill llamacloud-index

Summary

  • Use this skill whenever a question should be answered from documents stored in a LlamaCloud Index v2 knowledge base — retrieving passages, locating indexed files, or searching indexed content through the LlamaParse Platform REST API with curl.
  • Teaches agentic retrieval — navigating an index like a file system instead of one-shot RAG.

Also in this package

Other skills from run-llama/llamaparse-agent-skills.

npx skills add run-llama/llamaparse-agent-skills

Browse all from run-llama/llamaparse-agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 78
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
LicenseMIT
CompatibilityNeeds a `LLAMA_CLOUD_API_KEY` defined within the environment, `curl`, and (recommended) `jq`. EU-region accounts use `api.cloud.eu.llamaindex.ai` instead of `api.cloud.llamaindex.ai`.
More metadata
author
LlamaIndex
version
1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 9,147 B
  • docs SUMMARY.md 363 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 116 installs

SKILL.md

LlamaCloud Index v2 — Agentic Retrieval Guide

Answer questions from documents stored in Index v2, the managed knowledge base of the LlamaParse Platform. Every operation is a single authenticated HTTP call, so from a shell the cheapest interface is curl + jq: you can compose calls, batch independent lookups into one command, and bound exactly how much output enters the conversation.

Index v2 is built for agentic retrieval: beyond semantic search, it gives you file-system-like access to the underlying documents (PDFs, Office documents, images, and other unstructured files). This skill is about using that access well — navigating the index the way you would a file system, instead of firing a single one-shot RAG query and hoping the top results contain the answer.

Setup

export LLAMA_BASE="https://api.cloud.llamaindex.ai/api/v1"   # EU accounts: https://api.cloud.eu.llamaindex.ai/api/v1
AUTH=(-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY" -H "Content-Type: application/json")

If a call returns 401/403, ask the user to check LLAMACLOUDAPI_KEY (and the region) — do not retry in a loop.

The API

Operation Call Key body fields
List indexes GET /indexes
Retrieve passages POST /retrieval/retrieve indexid, query, topk, rerank ({enabled, topn}, enabled by default), scorethreshold, staticfilters, customfilters
Find files POST /retrieval/files/find indexid, filenamecontains (substring, recommended) or filename (exact)
Grep a file POST /retrieval/files/grep indexid, fileid, pattern (regex), context_chars
Read a file POST /retrieval/files/read indexid, fileid, offset, max_length (chars; omit for full file)

fileid values come from the find and retrieve responses. Full parameter reference: retrieval · file operations.

Step 0 — Pick an Index

Discover once per conversation, not before every query:

curl -s "${AUTH[@]}" "$LLAMA_BASE/indexes" | jq '.items[] | {id, name, description}'

If more than one index plausibly matches the user's question, ask the user which one to use — do not silently query the wrong knowledge base. If the user already gave you an index ID, skip discovery entirely.

The Agentic Retrieval Loop

Treat the index like a file system you can explore, not a black box you query once:

  1. DiscoverGET /indexes to find the right index.
  2. Locatefind to identify the files relevant to the question.
  3. Searchgrep for exact patterns within a file.
  4. Retrieveretrieve for hybrid (sparse + dense) semantic search.
  5. Inspectread a bounded window of a file when you need surrounding context.

You rarely need all five steps for one question. The skill is choosing the right entry point (below) and iterating: a first retrieval that names a promising document is a reason to grep inside it, not a reason to stop.

Choosing the Right Call

Situation Start with
Open or conceptual question ("what does the report say about churn?") retrieve
Question spans multiple documents or you don't know the wording used retrieve
Looking for an exact term, identifier, figure, or section heading in a known file grep
The user names or implies a specific document ("in the Q3 report…") find, then grep/retrieve within it
You need continuous context around a passage you already located read with offset/max_length

Rules of thumb:

  • retrieve matches meaning; grep matches patterns. Use retrieval when you know what you mean but not how the document phrases it. Use grep when you know the literal string (a product name, an account code, "Section 4.2").
  • Verification flows are grep-shaped. "Does the contract mention X?" is a grep in the located file, not a retrieval.
  • Scope retrieval to one file with a filter instead of reading it whole: "staticfilters": {"parseddirectoryfileid": {"operator": "eq", "value": "<file-id>"}} runs semantic search inside just that document.
  • Bound every call. Set topk for retrieval (and rerank.topn to cap what the reranker returns), contextchars for grep, offset/maxlength for reads. Never let an unbounded response into the conversation.

Working Examples

# Retrieve passages (bounded, with file and page provenance)
curl -s "${AUTH[@]}" -X POST "$LLAMA_BASE/retrieval/retrieve" -d '{
  "index_id": "<index-id>", "query": "carbon intensity targets", "top_k": 5
}' | jq -r '.results[] | "== file \(.static_fields.parsed_directory_file_id) pp.\(.static_fields.page_range_start)-\(.static_fields.page_range_end) score \(.score)\n\(.content)"'

# Locate a document by name substring
curl -s "${AUTH[@]}" -X POST "$LLAMA_BASE/retrieval/files/find" \
  -d '{"index_id": "<index-id>", "file_name_contains": "quarterly"}' | jq '.items[] | {file_id, file_name}'

# Grep it — context comes back with the match, no follow-up read needed
curl -s "${AUTH[@]}" -X POST "$LLAMA_BASE/retrieval/files/grep" \
  -d '{"index_id": "<index-id>", "file_id": "<file-id>", "pattern": "revenue|profit", "context_chars": 200}' \
  | jq -r '.items[] | "[\(.start_char)-\(.end_char)] \(.content)"'

# Read a window around a grep hit (never the whole file by default)
curl -s "${AUTH[@]}" -X POST "$LLAMA_BASE/retrieval/files/read" \
  -d '{"index_id": "<index-id>", "file_id": "<file-id>", "offset": 12000, "max_length": 4000}' | jq -r '.content'

Batch independent lookups into one command instead of one call per turn — several greps or retrievals in a single for-loop with labeled output cost one round-trip, not five.

Grounding Answers

Every claim in your answer must be backed by content you actually retrieved:

  • Quote or paraphrase only from the returned passages and file contents, and cite the source — retrieval results carry the file ID and page range (staticfields.pagerangestart/end) for exactly this purpose.
  • Do not fill gaps with prior knowledge. If the results only partially answer the question, retrieve again with a refined query or grep the relevant file — don't improvise the rest.
  • If the index does not contain the answer, say so explicitly rather than answering from general knowledge. Offer to answer without the index if that is still useful.
  • When passages conflict, surface the conflict and the source files instead of picking one silently.

Common Pitfalls

  • Don't paste whole files into context. An unbounded read on a large document floods the conversation with content you'll pay for on every subsequent turn. If you need one fact, grep; if you need the relevant passages, retrieve (optionally filtered to the file); if you need a region, read a window. Read a file in full only when nothing narrower can answer the question.
  • Don't one-shot RAG. A single retrieve call is the floor, not the ceiling. If the top passages don't answer the question, refine the query, or pivot: use the file IDs surfaced by retrieval to grep or inspect the most promising document.
  • Don't grep for paraphrases. Grep matches patterns, not meaning. If your grep for the user's phrasing comes back empty, that does not mean the answer is absent — switch to retrieve.
  • Don't dump raw JSON. Always pipe through jq to project just the fields you need; a raw retrieval response is mostly metadata you don't want in context.
  • Don't repeat identical calls. Re-running the same retrieval or grep returns the same results. Change the query, the pattern, or the call.
  • Don't guess the index. Querying the wrong knowledge base produces confidently wrong, well-cited answers. When multiple indexes could match, ask.
  • Don't answer around missing content. Absence of results is information: report what you searched and what wasn't there.

No Shell Access?

If you are running in an environment without a shell, the same operations are exposed as tools by the LlamaParse MCP server (https://mcp.llamaindex.ai/mcp, or scoped to one index at /index/{indexId}/mcp) — the workflow and discipline above apply unchanged.