DeepRead is a production-grade OCR API that extracts structured JSON data from PDFs with AI-powered confidence scoring to minimize human review.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install deepread
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install deepread using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
DeepRead is an advanced document processing skill designed to handle complex OCR tasks where accuracy is paramount. Unlike traditional OCR tools that fail silently, DeepRead utilizes a multi-pass pipeline and multi-model consensus to evaluate extraction quality. It effectively reduces manual data entry and human review by approximately 90% by highlighting only the specific fields that require verification.
By integrating this tool with other Openclaw Skills, developers can build robust automation pipelines for invoices, contracts, and forms. The system handles document rotation, orientation correction, and field-level confidence scoring, ensuring that your AI agents work with the most reliable data possible.
Sign up at the DeepRead Dashboard and export your key to your environment:
export DEEPREAD_API_KEY="sk_live_your_key_here"
Add the skill to your Openclaw Skills configuration in clawdbot.config.json5:
{
skills: {
entries: {
"deepread": {
enabled: true,
apiKey: "sk_live_your_key_here"
}
}
}
}
Use cURL to upload a file and define your extraction schema:
curl -X POST https://api.deepread.tech/v1/process \
-H "X-API-Key: $DEEPREAD_API_KEY" \
-F "[email protected]" \
-F 'schema={"type":"object","properties":{"total":{"type":"number"}}}'
DeepRead organizes data into a structured JSON response containing text, extracted fields, and quality metadata. This structure is ideal for developers using Openclaw Skills to automate data entry.
| Component | Type | Description |
|---|---|---|
text |
String | The full document content extracted as clean Markdown format. |
data |
Object | Key-value pairs extracted based on your custom JSON schema. |
hil_flag |
Boolean | True if the AI suggests human review for that specific field or page. |
pages |
Array | Page-by-page breakdown including individual text blocks and quality flags. |
metadata |
Object | Processing statistics including confidence scores and review percentages. |
Loading
DeepRead is an AI-native OCR platform that turns documents into high-accuracy structured data using multi-model consensus and automated human-review flagging.

An advanced Openclaw Skills integration that translates natural language into UCTOO backend API requests with automated token management.

A comprehensive API marketplace that empowers AI agents to perform external tasks like web searching, image generation, and code execution through a single unified interface.

A deterministic pre-action authorization engine that verifies AI agent tool calls against a security policy before execution.

A sophisticated workflow that transforms scripts into high-quality audiobooks, podcasts, or educational content using AI narration and ElevenLabs synthesis.

A robust synchronization utility for maintaining consistent memory, user profiles, and skills across multiple distributed AI agent instances.








































