Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
run-llama avatar

Pdf Processing

  • 4 installs
  • 177 repo stars
  • Updated November 3, 2025
  • run-llama/vibe-llama

Helps with ai & agent building tasks during AI-assisted development.

About

pdf processing is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • pdf processing
  • AI & Agent Building
  • AI-coding skill

Pdf Processing by the numbers

  • 4 all-time installs (skills.sh)
  • +1 installs in the week ending Jul 26, 2026 (Skillselion tracking)
  • Ranked #13,348 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Jul 26, 2026 (Skillselion catalog sync)
npx skills add https://github.com/run-llama/vibe-llama --skill pdf-processing

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4
repo stars177
Last updatedNovember 3, 2025
Repositoryrun-llama/vibe-llama

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

PDF Processing

Quick start

Extract text:

from llama_cloud_services import LlamaParse

parser = LlamaParse(
    parse_mode="parse_page_with_agent",
    model="openai-gpt-4-1-mini",
    high_res_ocr=True,
    adaptive_long_table=True,
    outlined_table_extraction=True,
    output_tables_as_HTML=True,
    result_type="markdown",
    project_id=project_id,
    organization_id=organization_id,
)

result = parser.parse("./my_file.pdf")
documents = result.get_markdown_documents(split_by_page=True)

full_text = ""

for document in documents:
    full_text += document.text + "\n\n---\n\n"

For more detailed code implementations, see REFERENCE.md.

Requirements

The llama_cloud_services package must be installed in your environment:

pip install llama_cloud_services

And the LLAMA_CLOUD_API_KEY must be available as an environment variable:

export LLAMA_CLOUD_API_KEY="..."

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.