By jbaham2
Makes Claude an expert at LlamaCloud (Parse, Extract, Classify, Split, Sheets, Cloud Index), LiteParse, and the LlamaIndex framework + agentic Workflows. Skills hold durable judgment; the wired LlamaIndex docs MCP fetches current API facts live.
Use this agent when the user wants to find existing LlamaIndex/LlamaParse examples or cookbooks that match a scenario. Typical triggers include "is there an example for building RAG over X", "find a cookbook for this extraction use case", "what notebooks cover agentic workflows", and "show me a sample close to what I'm building". See "When to invoke" in the agent body for worked scenarios. This agent is read-only — it finds and summarizes recipes, it does not write application code.
Use this agent when the user wants to design, draft, or validate a LlamaExtract extraction schema from real documents. Typical triggers include "design an extraction schema for these invoices", "what schema should I use to pull fields from this PDF", "review/validate my LlamaExtract Pydantic schema", and "turn this sample document into an extraction schema". See "When to invoke" in the agent body for worked scenarios. Do not use for raw text parsing (that is Parse) or for running production extraction jobs.
Use this agent when the user wants a designed RAG or retrieval pipeline and needs the architecture decided. Typical triggers include "design a RAG pipeline for my docs", "should I use Cloud Index or build retrieval myself", "choose chunking/embedding/retrieval settings for my corpus", and "architect retrieval for this app". See "When to invoke" in the agent body for worked scenarios. Do not use to run ingestion jobs or to write production app code end to end.
Use this agent when a self-hosted / BYOC LlamaCloud deployment is misbehaving and needs diagnosis. Typical triggers include "my self-hosted LlamaParse pods are crashing", "diagnose my BYOC LlamaCloud Helm deployment", "why is my self-hosted LlamaCloud failing to start", and "check my LlamaCloud Kubernetes setup". See "When to invoke" in the agent body for worked scenarios. This agent is strictly read-only — it diagnoses and recommends, never mutates the cluster.
Use this agent when the user wants to scaffold a LlamaIndex Workflow or an agent deployment from a description. Typical triggers include "scaffold a LlamaIndex Workflow that does X", "build me an event-driven agent workflow", "turn this process into a Workflow", and "set up a workflow I can deploy". See "When to invoke" in the agent body for worked scenarios. Use for authoring/scaffolding workflow code; defer pure architecture decisions to rag-architect and deployment operations to the llamaindex-deploy skill.
This skill should be used when the user wants to "use LiteParse", "parse locally without an API key", do "offline/OSS document parsing", or work with the "LiteParse library/CLI/server/WASM". Owns local/OSS no-key document parsing and the LiteParse-vs-cloud-LlamaParse decision; defers cloud/agentic/scaled parsing, typed extraction, and managed RAG to sibling skills.
This skill should be used when the user wants to "classify documents", "route documents by type", define "document classification rules", or "categorize incoming files" with LlamaCloud Classify. Owns natural-language classification and intake routing; defers segmenting one file into sub-docs to llamacloud-split, typed field extraction to llamacloud-extract, and raw text to llamacloud-parse.
This skill should be used when the user wants to "extract structured data from a document", "design/validate an extraction schema", write a "Pydantic/JSON/Zod extract schema", configure "LlamaExtract options/citations", or "pull typed fields from PDFs". Owns LlamaExtract v2 schema design and configuration judgment; defers raw text/markdown parsing, RAG/retrieval, and account/key/region setup to sibling skills.
This skill should be used when the user wants to "build a Cloud Index", set up a "managed RAG pipeline on LlamaCloud", configure "hybrid search / rerank / metadata filter on LlamaCloud", "ingest documents into a LlamaCloud index", or expose a "managed retrieval endpoint". Owns the end-to-end managed Cloud Index (source → parse/transform → chunk → embed → sink) and retrieval tuning; defers OSS/self-managed RAG to `llamaindex-framework`, raw parsing to `llamacloud-parse`, typed extraction to `llamacloud-extract`, and account/key setup to `llamacloud`.
This skill should be used when the user wants to "parse a PDF/document", "use LlamaParse", choose between "LlamaParse tiers / agentic vs fast vs cost", "configure parse output (markdown/JSON)", or "retrieve/parse results". Owns LlamaParse v2 (GA) parsing decisions and config; defers typed-field extraction, managed retrieval, and local no-key parsing to sibling skills.
External network access
Connects to servers outside your machine
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Makes Claude an expert at LlamaCloud (LlamaIndex's document-AI platform) and the LlamaIndex OSS framework + agentic Workflows. The plugin holds durable judgment — which product to use when, schema/RAG/deployment decision tables, failure taxonomies, prod-readiness checklists — and fetches stale-prone facts (API signatures, package names, pricing) live from the official LlamaIndex docs MCP instead of hardcoding them.
Covers Parse, Extract, Classify, Split, Sheets, and Cloud Index; LiteParse (local/OSS); the
LlamaIndex framework; Workflows; agent deployment (llamactl); and BYOC self-hosting. Examples are
provided in both Python (llama-cloud-services) and TypeScript.
Version posture: Parse v2 and Extract v2 are the GA default.
/v1/is legacy / migration reference only. Cloud Index v2 and Classify/Split/Sheets are beta. LiteParse is local/OSS with no API key.
This repo is both the plugin and a single-plugin marketplace.
/plugin marketplace add /home/jbaham2/plugins/llamaindex-plugin
/plugin install llamacloud@llamacloud-marketplace
Or test locally without installing:
claude --plugin-dir /home/jbaham2/plugins/llamaindex-plugin
export LLAMA_CLOUD_API_KEY="llx-..."
Run /llamacloud-setup for guided onboarding (account, key, region, SDK install, smoke test).https://developers.llamaindex.ai/mcp, HTTP, no auth). Nothing to configure; verify with
/mcp after install. Tools: search_docs, grep_docs, read_doc.| Skill | Use it for |
|---|---|
llamacloud | Router + onboarding: which product, API key, regions, pricing model |
llamacloud-parse | Parse v2: tiers, configuration, retrieving results |
llamacloud-extract | Extract v2: schema design, options, citations |
llamacloud-index | Cloud Index: managed RAG ingestion + retrieval tuning |
llamacloud-classify | Document classification / intake routing |
llamacloud-split | Segment one concatenated file into sub-documents |
llamacloud-sheets | Extract/reason over messy spreadsheets (beta) |
liteparse | Local/OSS parsing, no API key |
llamacloud-self-hosting | BYOC / Helm / Kubernetes deployment, tuning, monitoring |
llamaindex-framework | OSS RAG: load → index → store → query, component map |
llamaindex-workflows | Event-driven agentic Workflows |
llamaindex-deploy | llamactl + serving workflows/agents as APIs |
llamaindex-cookbooks | Find an existing example/recipe for a scenario |
| Agent | Role | Mode |
|---|---|---|
extraction-schema-designer | Reads sample docs → proposes/validates a LlamaExtract schema | read/write |
rag-architect | Designs a Cloud Index or framework RAG pipeline | read-only analysis |
self-hosting-doctor | Diagnoses a BYOC deployment | read-only (never mutates cluster) |
cookbook-scout | Finds matching examples/cookbooks for a scenario | read-only |
workflow-builder | Scaffolds a LlamaIndex Workflow / agent deployment | read/write |
/llamacloud [goal] — router; points you to the right product, skill, and next step./llamacloud-setup [product] — guided onboarding (account, key, region, install, smoke test).llamacloud routes to llamacloud-parse.extraction-schema-designer.rag-architect.self-hosting-doctor (read-only diagnosis).workflow-builder.cookbook-scout.references/ hold durable decisions; signatures/versions/pricing
are fetched live via the docs MCP or by appending index.md to any docs page URL.VENDORED.md); each skill owns a
distinct product with non-overlapping trigger phrases.MIT — see LICENSE.
npx claudepluginhub jbaham2/llamacloud-plugin --plugin llamacloudTurn any service's documentation into a Claude Code expert plugin: map the docs, fill the builder prompt, then build the plugin — as guided slash commands.
Makes Claude an expert at herdr, the agent-aware terminal multiplexer: herding fleets of agents, designing and restoring workspace/tab/pane layouts, monitoring agent state, managing sessions, and authoring configuration. Vendors the official herdr agent skill and complements it with workflow judgment.
Expert system for Langfuse setup, observability, prompt management, evaluation, and monitoring. Bundles distilled knowledge, skills, agents, commands, and hooks.
Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Comprehensive C4 architecture documentation workflow with bottom-up code analysis, component synthesis, container mapping, and context diagram generation
Superpowers Plus core skills library for Claude Code: planning, execution routing, TDD, debugging, and collaboration workflows
v9.44.1 — Patch release for Gemini environment/version detection and qwen auth gating. Run /octo:setup.
Unity Development Toolkit - Expert agents for scripting/refactoring/optimization, script templates, and Agent Skills for Unity C# development