Analyse de reçus par TaxHacker

VérifiéPrudence

Extrait des données financières structurées à partir d'images de reçus ou factures.

Spar Skills Guide Bot
Data & IAIntermédiaire
1025/07/2026
#receipt-analysis#invoice-processing#ocr#expense-tracking

Recommandé pour

Notre avis

Extrait les données financières structurées d'images de reçus et factures via OCR ou vision IA.

Points forts

  • Extraction automatisée de nom de commerçant, date, total, taxe et articles
  • Support de l'OCR local pour réduire les coûts d'API
  • Évaluation des risques intégrée
  • Configuration flexible via variables d'environnement ou paramètres CLI

Limites

  • Nécessite une clé API pour le mode vision (sauf OCR local)
  • La qualité des résultats dépend de la netteté de l'image
  • Ne gère pas les formats de fichiers autres que JPG, PNG, WebP
Quand l'utiliser

Pour numériser et structurer rapidement les dépenses à partir de photos de reçus.

Quand l'éviter

Si les images sont de très mauvaise qualité ou si vous avez besoin d'une solution sans dépendance à un modèle IA externe.

Analyse de sécurité

Prudence
Score qualité90/100

The skill runs a Python script to analyze receipt images, which involves file access and potential external API calls. This poses a moderate risk of sensitive data exposure, but no destructive actions are instructed.

Points d'attention
  • Executes Python script with user-provided file path
  • May upload receipt images to external AI service using API keys
  • Environment variables could expose API credentials

Exemples

Analyze a receipt
Analyze the receipt at C:/Users/Docs/receipt_123.jpg and tell me the total amount.
Extract item list
Extract all item names and prices from the invoice image /home/user/invoice.png.
Risk assessment
Assess the risk of the receipt at receipts/dinner_2025.jpg and explain any anomalies.

TaxHacker Receipt Analysis Skill

Extract structured financial data from receipt/invoice images using AI.

Description

This skill analyzes images of receipts, invoices, or bills to extract key accounting information including vendor name, date, total amount, currency, tax, and itemized lists. It also provides an AI-based risk assessment and categorization.

Configuration (OpenClaw)

This skill is optimized for OpenClaw. If you have configured a model in OpenClaw, the skill can automatically use its settings.

  • If OPENCLAW_LLM_API_KEY is set in the environment, the skill will use it.
  • If OPENCLAW_LLM_BASE_URL is set, the skill will use it.
  • If OPENCLAW_LLM_MODEL is set, the skill will use it (e.g., gpt-4o, gpt-4o-mini).

Otherwise, you can provide parameters directly via CLI:

# Vision Mode (Default)
python -m tax_hacker_skill.skill "<file_path>" --api-key "YOUR_KEY" --model "gpt-4o-mini"

# Local OCR Mode (Saves tokens, no image upload)
python -m tax_hacker_skill.skill "<file_path>" --local-ocr

# Local OCR Mode with CnOCR
python -m tax_hacker_skill.skill "<file_path>" --local-ocr --ocr-engine cnocr

Parameters

  • file_path: (Required) Absolute path to the receipt image file (jpg, png, webp).
  • --api-key: (Optional) Override API Key.
  • --base-url: (Optional) Override API Base URL.
  • --model: (Optional) Override LLM Model.
  • --local-ocr: (Optional) Use local OCR instead of vision.
  • --ocr-engine: (Optional) OCR engine: auto, easyocr, cnocr.

Instructions

  1. Ensure the user has provided an image file path.
  2. Execute the following command to process the receipt:
    python -m tax_hacker_skill.skill "<file_path>"
    
  3. The command will output a JSON object containing the extracted data.
  4. Use the output to update accounting records, generate reports, or answer user queries about their expenses.

Example Usage

"Analyze the receipt at C:/Users/Docs/receipt_123.jpg and tell me the total amount." -> Run: python -m tax_hacker_skill.skill "C:/Users/Docs/receipt_123.jpg"

Skills similaires