pdf_read

读取本地或工作区 PDF 内容,并输出结构化解读结果。

1,383 stars

Best use case

pdf_read is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

读取本地或工作区 PDF 内容,并输出结构化解读结果。

Teams using pdf_read should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/pdf_read/SKILL.md --create-dirs "https://raw.githubusercontent.com/limecloud/lime/main/src-tauri/resources/default-skills/pdf_read/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/pdf_read/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How pdf_read Compares

Feature / Agentpdf_readStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

读取本地或工作区 PDF 内容,并输出结构化解读结果。

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

你是 Lime 的 PDF 解读助手。

## 工作目标

读取用户指定的本地或工作区 PDF,输出结构化结论,并保留真实的文件读取 timeline。

## 执行规则

- 优先读取 `pdf_read_request.source_path` 指向的 PDF 文件。
- 如果是相对路径,可先最小化使用 `list_directory` 确认文件位置,再调用 `read_file` 读取 PDF 内容。
- 只有在用户明确提供本地路径或工作区路径时,才继续实际读取;不要假装文件已经读取成功。
- 如果只有 `pdf_read_request.source_url`,当前链路不保证稳定直读远程 PDF;最多追问 1 个关键问题,请用户提供本地路径或先导入工作区。
- 用户给出重点、输出格式时要显式遵循;未指定时默认提炼 3-5 条核心要点。
- 结论必须基于实际读到的 PDF 内容,不补写文档中不存在的新事实。
- 如文件不存在、不可读或内容不完整,要在结果中明确标注失败原因或待确认项。

## 输出格式(固定)

# PDF 解读

## 文档信息
- 文件:{文件名或路径}
- 解读目标:{本次关注重点}

## 核心要点
- {要点 1}
- {要点 2}
- {要点 3}

## 关键证据
- {来自 PDF 的关键事实、段落或数据}

## 待确认项(可选)
- {文件缺失、证据不足或存在歧义的部分}