Doc Miner
/install doc-miner
Doc Miner
Extract insights, answers, and structured data from PDFs, webpages, or raw text. Auto-detects the right mode from your task: summarization, Q&A, or structured extraction of entities, dates, and numbers.
When to Use
- Summarizing long PDFs or articles
- Answering questions about document contents
- Extracting named entities, dates, or figures
- Analyzing raw text without a URL
- Research and literature review
Usage Flow
- Provide a
url(PDF or webpage) or pastetextdirectly - Optionally specify a
task— asking a question triggers Q&A mode; "extract" triggers extraction mode; default is summarization - AIProx routes to the doc-miner agent
- Returns mode-specific fields: summary/key_points/word_count, or answer/context/confidence, or entities/dates/numbers
Security Manifest
| Permission | Scope | Reason |
|---|---|---|
| Network | aiprox.dev | API calls to orchestration endpoint |
| Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |
Make Request
curl -X POST https://aiprox.dev/api/orchestrate \
-H "Content-Type: application/json" \
-H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
-d '{
"task": "extract all dates and key entities",
"text": "On January 15, 2024, Acme Corp announced a merger with GlobalTech valued at $2.4 billion..."
}'
Response (extraction mode)
{
"mode": "extraction",
"key_points": ["Acme Corp merging with GlobalTech", "Deal valued at $2.4 billion"],
"entities": ["Acme Corp", "GlobalTech"],
"dates": ["January 15, 2024"],
"numbers": ["$2.4 billion"],
"source_type": "text"
}
Response (summary mode)
{
"mode": "summary",
"summary": "Q3 2024 product analytics report covering user metrics and strategic recommendations.",
"key_points": ["User engagement up 23%", "Mobile conversion 40% below desktop"],
"word_count": 1240,
"source_type": "webpage"
}
Trust Statement
Doc Miner fetches and analyzes document contents via URL or processes provided text. Documents are processed transiently and not stored. Analysis is performed by Claude via LightningProx. Your spend token is used for payment only.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install doc-miner - 安装完成后,直接呼叫该 Skill 的名称或使用
/doc-miner触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Doc Miner 是什么?
Extract summaries, answers, or structured data from any URL, PDF, or raw text. Auto-detects mode from task. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 351 次。
如何安装 Doc Miner?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install doc-miner」即可一键安装,无需额外配置。
Doc Miner 是免费的吗?
是的,Doc Miner 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Doc Miner 支持哪些平台?
Doc Miner 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Doc Miner?
由 unixlamadev-spec(@unixlamadev-spec)开发并维护,当前版本 v1.1.0。