Openclaw Receipt Manager

v0.1.7

Manage personal receipts by extracting data from images, storing records, and providing expense searches and monthly financial summaries.

0· 332·0 current·0 all-time
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (receipt extraction, storage, queries) matches the provided scripts and CLI. The handler accepts JSON from the agent and invokes the local CLI to add receipts; the CLI implements DB, deduplication, OCR, parsing, and summaries. No unrelated credentials, binaries, or remote services are requested.
Instruction Scope
SKILL.md instructs initialization, adding, and querying of receipts via the included scripts; handler behavior (read JSON, sanitize fields, call receipt_db.py) matches the doc. The instructions operate on local files under the skill workspace/data/receipts and do not instruct reading unrelated system state or sending data to external endpoints.
Install Mechanism
No install spec is present (instruction-only), and the shipped files contain the implementation. The README suggests cloning a GitHub repo, but no runtime download or remote install step is embedded in the skill files. No high-risk URL downloads or archive extraction are present.
Credentials
The skill requests no environment variables or credentials. It reads and writes files only in its data directory and accepts image paths provided by the agent/user. This file access is proportional to the purpose, though users should be aware that any file under the user's home can be supplied as an image path and will be read/copied.
Persistence & Privilege
always is false and the skill uses normal agent invocation. It writes its own DB and images under its data directory and does not modify other skills or system-wide configurations. Autonomous invocation is allowed (platform default) but not combined with any broad secret access.
Assessment
This skill appears to do what it says: it stores receipts locally in data/receipts and uses a local SQLite DB. Before installing, consider: (1) Verify the skill source (README suggests a GitHub repo — confirm you trust it). (2) The skill will read any image file path you provide that lives under your home directory and copy it into the skill's images folder — avoid passing paths to sensitive files. (3) If tesseract is installed, the skill will call it locally for OCR; tesseract is invoked via subprocess but no network calls are made by the skill code. (4) Inspect the full receipt_db.py CLI portion (the file was partially shown) if you want to be extra cautious; based on the reviewed code there are reasonable sanitization and path checks. (5) Run the tool in a limited environment or with test data first if you have concerns about accidental leakage of sensitive files.

Like a lobster shell, security has layers — review code before you run it.

latestvk970jpzpf5btgdyxjeycqzr62d822wa2

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

Receipt Manager

Store and query receipt data locally.

Trigger

  • receipt, expense, invoice, spending, claim

How to Use

1. Initialize (first time)

python3 scripts/receipt_db.py init

2. Add Receipt

After OpenClaw recognizes the receipt image, the data is saved automatically via handler.

3. Query

# List all
python3 scripts/receipt_db.py list

# Search
python3 scripts/receipt_db.py search --q "walmart"

# Monthly summary
python3 scripts/receipt_db.py summary --month 2026-02

Files

  • scripts/receipt_db.py - Main CLI tool
  • scripts/handler.py - Receives JSON from OpenClaw, saves to DB
  • data/receipts/ - Local SQLite DB and images

Privacy

All data stored locally on your machine. No cloud upload.

Files

5 total
Select a file
Select a file to preview.

Comments

Loading comments…