Install
openclaw skills install @skunnyo/tesseract-receipt-variantOCR-based receipt tracker for expense, travel, freelance logging using tesseract. Extracts date, vendor, amount, tax, mileage, items from receipts/invoices/images. Outputs structured JSON/CSV. Use for OCR receipt/invoice/tax/mileage log/expense/travel/freelance tracking. Triggers: extract expense from photo, log receipt, invoice data, etc.
openclaw skills install @skunnyo/tesseract-receipt-variantAcquire Image: read tool on image path (supports jpg, png, pdf first page).
Setup tesseract:
exec pip install tesseract
Tesseract: exec sudo apt update && sudo apt install tesseract-ocr
Extract Text:
# Variant command for tesseract
exec tesseract --image_path image.jpg --output ocr.txt
Parse Fields: exec python3 scripts/parse_receipt.py ocr.txt
Log Data: Write to expense_log.csv or json.
Use regex/scripts for receipt-specific fields: total, subtotals, taxes, odometer, dates.
Custom parsers for structured extraction.
Field mappings and examples.