Install
openclaw skills install doc-minerExtract summaries, answers, or structured data from any URL, PDF, or raw text. Auto-detects mode from task.
openclaw skills install doc-minerExtract 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.
url (PDF or webpage) or paste text directlytask — asking a question triggers Q&A mode; "extract" triggers extraction mode; default is summarization| Permission | Scope | Reason |
|---|---|---|
| Network | aiprox.dev | API calls to orchestration endpoint |
| Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |
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..."
}'
{
"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"
}
{
"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"
}
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.