一键导入
tesseract
Optical character recognition (OCR) via the Tesseract CLI. Use for extracting text from images, scanned documents, PDFs, screenshots, and photos of text.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Optical character recognition (OCR) via the Tesseract CLI. Use for extracting text from images, scanned documents, PDFs, screenshots, and photos of text.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Load before writing any code, script, or automation in the workspace. Defines the hybrid agent-script execution model (programs are invoked by agents, not humans), project layout under programs/, README discipline, operation logging, and rediscovery patterns. Load this skill the moment a task involves writing or editing code.
Access an AWS account via the AWS CLI. Use when the user asks to create, manage, troubleshoot, or inspect AWS resources like DynamoDB, S3, Lambda, EC2, CloudWatch, etc.
Browser automation CLI for AI agents. Use when interacting with websites: navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task.
Analytical SQL queries on local files via DuckDB. Use for querying CSV, Parquet, JSON, and Excel files with SQL, aggregating data, joining datasets, and exporting results — all without a database server.
Audio and video processing via the ffmpeg CLI. Use for transcoding, trimming, merging, extracting audio, generating thumbnails, converting formats, adjusting resolution/bitrate, and any media manipulation task.
Graph and network visualization via Graphviz. Use for rendering directed/undirected graphs, dependency trees, network topologies, org charts, and any node-edge diagram from DOT language.
| name | tesseract |
| description | Optical character recognition (OCR) via the Tesseract CLI. Use for extracting text from images, scanned documents, PDFs, screenshots, and photos of text. |
| metadata | {"version":"1.0.0","displayName":"Tesseract OCR","author":"gremlin","category":"data","icon":"scan","tags":["ocr","text-extraction","image","document","scan"],"install":"which tesseract || (apt-get update && apt-get install -y tesseract-ocr)\n","allowedCommands":["tesseract"]} |
You have access to tesseract for extracting text from images.
tesseract input.png output produces output.txt.tesseract input.png stdouttesseract input.png stdout -l eng (or deu, fra, spa, chi_sim, etc.)tesseract input.png stdout -l eng+fratesseract --list-langsapt-get install tesseract-ocr-<lang> (e.g., tesseract-ocr-deu)tesseract input.png output pdf for searchable PDF, tesseract input.png output hocr for HTML with coordinates.--psm):
3 = fully automatic (default)6 = assume uniform block of text7 = single line8 = single word13 = raw line, no OSDmagick input.jpg -colorspace gray -threshold 50% clean.png && tesseract clean.png stdoutpdftoppm, then OCR each page.