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.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install doc-miner - After installation, invoke the skill by name or use
/doc-miner - Provide required inputs per the skill's parameter spec and get structured output
What is Doc Miner?
Extract summaries, answers, or structured data from any URL, PDF, or raw text. Auto-detects mode from task. It is an AI Agent Skill for Claude Code / OpenClaw, with 351 downloads so far.
How do I install Doc Miner?
Run "/install doc-miner" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Doc Miner free?
Yes, Doc Miner is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Doc Miner support?
Doc Miner is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Doc Miner?
It is built and maintained by unixlamadev-spec (@unixlamadev-spec); the current version is v1.1.0.