Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计未展示

finance-ocr-pro财务 OCR 专业版

Agent Skill

finance-ocr-pro 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,809

周安装

247

GitHub Stars

公开资料未说明

下载量

2,035
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:finance-ocr-pro(财务 OCR 专业版)
来源仓库:https://github.com/rizmoon/finance-ocr-pro
安装命令:
openclaw skills install finance-ocr-pro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install finance-ocr-pro

简介

当用户要求对扫描的 PDF、图像或 Office 文档的内容进行 OCR、转录、提取或转换为 Markdown、HTML、DOCX 等时,请使用此技能。

SKILL.md

name
finance-ocr-pro
version
1.0.6
description
Use this skill when the user asks to OCR, transcribe, extract, or convert the contents of a scanned PDF, image, or office document into Markdown, HTML, DOCX, or Excel. This workflow sends page images and OCR prompts to a configured OpenAI-compatible VLM endpoint, requires API_KEY, BASE_URL, and VLM_MODEL, and bundles HTML report assets locally so no runtime CDN downloads are needed. It is especially valuable for financial documents and other visually complex materials with dense tables, charts, graphs, and multi-part layouts. Prefer durable background jobs for long-running OCR work.
metadata
openclaw
requires
env
anyBins
primaryEnv
API_KEY

Finance OCR Pro

Run this skill only after OCR intent from the user.

This skill is especially helpful for financial reports, annual reports, prospectuses, investor presentations, regulatory filings, research reports, and other documents with complicated structure, charts, graphs, tables, and mixed layout elements.

Security And Privacy

Before running OCR, make the operating model clear:

  • This skill requires three environment variables, all of which must be configured before OCR can run:

- API_KEY (sensitive) -- the API key for authenticating with the VLM endpoint. - BASE_URL -- the base URL of the OpenAI-compatible VLM endpoint. All page images and OCR prompts are transmitted to this URL. - VLM_MODEL -- the vision-capable model identifier. Must support image inputs; text-only models will not work.

  • OCR sends rendered page images and structured prompts to BASE_URL. This is the primary data-transmission path. Users must verify that the endpoint is trusted before processing sensitive documents.
  • If the user wants offline or local-only OCR, BASE_URL must point to a local VLM service. Do not run this skill against an external endpoint with sensitive documents unless the provider is trusted.
  • scripts/ocr_setup.py checks dependencies and creates .env templates, but it never installs Python packages automatically. Users must review and run dependency installation themselves.
  • HTML report generation uses vendored Mermaid and MathJax files from scripts/vendor/ and does not download frontend assets from a CDN at runtime.
  • Local subprocess usage is limited to starting the local OCR worker and invoking document-conversion tools such as LibreOffice or osascript. Commands are executed with explicit argument lists rather than shell strings.
  • Never commit a populated .env file. Use .env.example as a template and keep real credentials local.

Pre-Run Notice

After the user asks for OCR or extraction, give a short notice that includes:

  • whether BASE_URL is local or remote
  • which VLM_MODEL will be used
  • which execution mode will be used
  • where results will be written
  • that the skill supports multi-thread OCR and the thread count can be increased when the user's API endpoint, rate limits, and plan support parallel OCR requests
  • that page images and prompts will be transmitted to the configured endpoint

Proceed automatically unless the user asks to change those defaults.

Defaults To Announce

  • Running mode: background job by default
  • Model: VLM_MODEL
  • Threads: 1

If the user's API endpoint or plan supports safe parallel OCR requests, tell them they can choose a higher thread count.

  • Result path:

- background: ~/.semantic-ocr/jobs/<job_id>/results/ - synchronous: ocr_output/OCR_<filename>/results/

Setup

Use the skill-local virtual environment if present.

  • macOS/Linux: .venv/bin/python
  • Windows: .venv/Scripts/python.exe
  • Fallback: python3 on macOS/Linux, python on Windows

Before running any command, resolve the interpreter and reuse it for the rest of the session:

  • macOS/Linux: PYTHON="${PYTHON:-$( [ -x .venv/bin/python ] && printf .venv/bin/python || printf python3 )}"
  • Windows: use .venv\Scripts\python.exe when present, otherwise python

Run:

$PYTHON scripts/ocr_setup.py --check

If setup is incomplete, run:

$PYTHON scripts/ocr_setup.py

Preferred Execution

By default, start a background worker:

$PYTHON scripts/ocrctl.py --json start /path/to/document.pdf

If the provider supports concurrency and the user wants faster OCR, offer a higher thread count such as:

$PYTHON scripts/ocrctl.py --json start -t 4 /path/to/document.pdf

Then inspect progress and outputs:

$PYTHON scripts/ocrctl.py --json status <job_id>
$PYTHON scripts/ocrctl.py --json artifacts <job_id>
$PYTHON scripts/ocrctl.py --json tail <job_id>

Use synchronous mode only when the user explicitly wants inline execution:

$PYTHON scripts/ocr_main.py /path/to/document.pdf

Notes

  • Inputs: PDF, common office documents, Apple office formats, and images.
  • Outputs: merged Markdown, HTML review report, DOCX, and Excel.
  • OCR requires API_KEY, BASE_URL, and VLM_MODEL to be configured before running.
  • The default page-rendering resolution is 200 DPI.
  • The skill supports multi-thread OCR. Keep the default at 1 unless the user's API endpoint, rate limits, and plan support concurrent OCR requests.
  • Sensitive document pages are transmitted to the configured endpoint during OCR unless the endpoint is a local service.
  • Best suited for financial documents and other visually dense materials with tables, charts, graphs, and complex page structure.
  • Office-document conversion may require LibreOffice.
  • OCR extraction by the VLM model may be time-consuming; check the status regularly.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.73%
按下载量换算1,785

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills