用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lihanghang/agent-daily-blog --skill insightdoc命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Parse PDF and images into structured Markdown / JSON using PPX. Supports OCR, table extraction, formulas, multi-column layouts, and LLM backends.
Take the Clawvard entrance exam to evaluate your capabilities across 8 dimensions (Understanding, Execution, Retrieval, Reasoning, Reflection, Tooling, EQ). 16 questions, graded by AI.
Convert Markdown to WeChat Official Account HTML, inspect supported providers/themes/prompts, generate article images, create drafts, write with creator styles, and remove AI writing traces.
基于 SOC 职业分类
正在显示 SKILL.md
| name | insightdoc |
| description | 调用 InsightDoc API 解析 PDF/图片文档,输出 md、json、html 等格式。支持财报解析(finance_ocr)和通用文档解析(docparse)。 |
基于 InsightDoc API (https://insightdoc.memect.cn/) 的文档解析技能,支持将 PDF 或图片转换为结构化数据。
本技能需要 API Key 认证,按以下优先级获取:
export INSIGHTDOC_API_KEY="sk-xxxxxxxxxxxx".env 文件:在项目根目录创建 .env 文件,写入 INSIGHTDOC_API_KEY=sk-xxxxxxxxxxxx--api-key sk-xxxxxxxxxxxx(临时使用)⚠️ 禁止将 API Key 硬编码到代码或 SKILL.md 中。
.env文件已在.gitignore中排除。
| 功能 | 说明 |
|---|---|
| 本地文件解析 | 上传本地 PDF/图片,等待解析完成,返回结果 |
| URL 文件解析 | 先下载远程 PDF,再上传解析 |
| 多格式输出 | md、html、block_md、docx(通用);matrix、normalization(财报) |
| 多版本支持 | 通用解析支持 v1/v2 版本切换 |
| 结果导出 | 导出为指定格式文件 |
python .cursor/skills/insightdoc/scripts/parse.py --file <文件路径> --type <任务类型> --format <输出格式> [--version <版本>]
python .cursor/skills/insightdoc/scripts/parse.py --url <PDF的URL> --type <任务类型> --format <输出格式>
python .cursor/skills/insightdoc/scripts/parse.py --task-id <任务ID> --format <输出格式>
| 参数 | 必填 | 说明 |
|---|---|---|
--file | 与 --url/--task-id 三选一 | 本地文件路径(PDF/JPG/PNG,≤50MB) |
--url | 与 --file/--task-id 三选一 | 远程 PDF 文件 URL |
--task-id | 与 --file/--url 三选一 | 已有任务 ID,直接查询结果 |
--type | 否 | docparse(默认)或 finance_ocr |
--format | 否 | 输出格式,见下表 |
--version | 否 | 解析版本(如 v1、v2),仅通用解析有效 |
--output | 否 | 结果保存路径(默认输出到 stdout) |
--api-key | 否 | 临时指定 API Key,覆盖环境变量 |
| 任务类型 | 可选格式 |
|---|---|
docparse | md(默认)、html、block_md、docx |
finance_ocr | matrix、normalization |
当用户说:
--file <路径> --type docparse --format md--file <路径> --type finance_ocr --format matrix--url <URL> --type docparse --format md--version v2--output result.json[2026-02-12 11:57] RuntimeError: API 请求失败 [400]: {"detail":"Unable to detect file type"}
[2026-02-12 18:44] RuntimeError: API 请求失败 [403]: {"detail":"Usage limit exceeded"}
[2026-02-12 18:50] RuntimeError: API 请求失败 [403]: {"detail":"Usage limit exceeded"}