Agent skill
image-tools
Image processing tools including OCR text extraction. Use when you need to extract text from images.
Install this agent skill to your Project
npx add-skill https://github.com/binome-dev/humcp/tree/main/src/tools/image
SKILL.md
Image Tools
Tools for processing and extracting data from images.
Text Extraction (OCR)
Extract text from images using Tesseract OCR and output as markdown.
Basic usage
# Extract text from base64 encoded image
result = await image_extract_text(image_data="iVBORw0KGgo...")
With data URL
# Also accepts data URL format
result = await image_extract_text(
image_data="data:image/png;base64,iVBORw0KGgo..."
)
With language
# Extract Chinese text
result = await image_extract_text(
image_data="...",
language="chi_sim"
)
# Extract Japanese text
result = await image_extract_text(
image_data="...",
language="jpn"
)
Response format
{
"success": true,
"data": {
"markdown": "Extracted text content\n\nFormatted as markdown"
}
}
Supported Languages
Common language codes:
eng- English (default)chi_sim- Chinese Simplifiedchi_tra- Chinese Traditionaljpn- Japanesekor- Koreanfra- Frenchdeu- Germanspa- Spanish
Requirements
- Tesseract OCR must be installed on the system
- Additional language packs may need to be installed for non-English text
When to use
- Extract text from screenshots
- Digitize scanned documents
- Process images containing text for analysis
- Convert image-based content to searchable text
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
llm
Generate text, call tools, and get structured JSON output using LLM providers (Claude, OpenAI, Gemini, Ollama). Use when the user needs to call an LLM API for text generation, function calling, or structured data extraction.
calendar-tools
Manages calendar bookings and video conferencing. Use when the user needs to check availability, create bookings on Cal.com, or schedule and manage Zoom meetings.
http-api-client
Make HTTP requests to any URL or API endpoint. Use when the user needs to call a REST API, fetch data from a URL, send webhooks, or test HTTP endpoints. Supports GET, POST, PUT, PATCH, DELETE methods with custom headers and JSON body.
processing-data
Processes CSV files and pandas DataFrames. Use when working with CSV files, tabular data, spreadsheets, or when the user asks to query, analyze, or manipulate structured data.
persistent-memory
Store, search, and retrieve persistent memories and conversation history using Mem0 or Zep. Use when the user needs to remember facts, maintain context across sessions, or manage conversational memory.
storage
Use these tools for S3-compatible object storage operations with MinIO
Didn't find tool you were looking for?