一键导入
liteparse
Use this skill when the user asks to parse or extract text from PDF files locally without cloud dependencies.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill when the user asks to parse or extract text from PDF files locally without cloud dependencies.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Extremely strict maintainability review focused on structural simplification, abstraction quality, and spaghetti-condition growth. Not a general correctness review -- this is a deep code quality audit that pushes for "code judo" moves that delete complexity. Use when asked to "code review", "maintainability review", "code quality audit", "/code-review", or "/review-quality".
Spawns a verifier subagent to audit your work: traces what was done, reviews the diff, runs builds/tests, and delivers a PASS/FAIL verdict. Auto-retries fixes up to 3 rounds. Use when asked to "check work", "verify changes", "self-verify", "/self-verify", "/check", or "/verify".
轻量需求头脑风暴 — 先扫代码库确认前置条件,再用 2-3 轮聚焦讨论锁定范围和方案。Use when user says "brainstorm this feature", "需求讨论", "sdd brainstorm", or wants to explore a feature idea before writing specs. Replaces heavyweight brainstorming workflows that burn tokens.
按规格文档的 Ticket 逐个实现代码,每个 Ticket 独立上下文避免幻觉。内置 todo 进度追踪,支持 LSP 诊断、worktree 隔离、子智能体委派等按需升级。Use when user says "implement ticket", "实现这个任务", "sdd implement", "开始实现", or wants to execute tasks from a spec. Reads .plan/spec.md for task breakdown.
将头脑风暴结论转化为结构化规格文档,包含需求、技术设计、任务拆解和决策记录。Use when user says "write spec", "写规格", "sdd spec", or wants to formalize a brainstormed idea into an implementable specification. Reads .plan/brainstorm.md if available.
Comprehensive quality analysis tool for Claude Skills. Evaluates skills from GitHub URLs, marketplace links, ZIP files, or local directories across five dimensions (structure, security, UX, code quality, integration) using balanced scoring and three output modes (comprehensive report, interactive review, pass/fail certification). Triggers on "analyze skill quality", "review this skill", "evaluate skill", or "skill quality check".
| name | liteparse |
| description | Use this skill when the user asks to parse or extract text from PDF files locally without cloud dependencies. |
本地解析 PDF 文档,无需云端依赖或 LLM。
不要使用系统 PATH 中的 lit,必须使用本 skill 目录下的 lit.exe(即 SKILL.md 同级目录)。
调用时,将 SKILL.md 所在目录的绝对路径拼上 lit.exe 作为可执行文件路径。例如:
~/.qwen/skills/liteparse/,则命令为 ~/.qwen/skills/liteparse/lit.exe parse ...<LIT> 代表此完整路径<LIT> parse path_to_you_want_pdf.pdf --no-ocr -o path_to_you_want_txt.txt
输出示例:
[liteparse] extract: 116.4ms (49 pages)
[liteparse] ocr: 0.0ms
[liteparse] project: 5.7ms
[liteparse] total: 122.4ms
[liteparse] wrote output to path_to_you_want_txt.txt
# 解析目录下所有文件,输出到指定目录
<LIT> batch-parse ./input-directory ./output-directory --no-ocr
# 仅解析 PDF,递归子目录
<LIT> batch-parse ./input ./output --extension .pdf --recursive --no-ocr
输出会显示提取的页数。当页数超过 2 页时,不要全量读取文件,应使用 grep_search 搜索关键词定位相关段落,再用 read_file 的 offset + limit 读取目标部分。
| 选项 | 说明 |
|---|---|
--no-ocr | 禁用 OCR(纯文本 PDF 推荐,更快) |
-o <file> | 输出到文件 |
--format json | JSON 格式输出(含 bounding box) |
--dpi <n> | 渲染 DPI(默认 150,高质量用 300) |
--target-pages "1-5,10" | 指定页码范围 |
PDF。