Expense Snap

v0.1.0

Capture receipt details, categorize spending, and generate monthly reports from a local SQLite ledger.

0· 132·0 current·0 all-time
byMehul Bhojraj Upase@mehulupase01

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for mehulupase01/expense-snap.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Expense Snap" (mehulupase01/expense-snap) from ClawHub.
Skill page: https://clawhub.ai/mehulupase01/expense-snap
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: python
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install expense-snap

ClawHub CLI

Package manager switcher

npx clawhub@latest install expense-snap
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included Python script and CLI: recording receipts, categorizing, monthly reports, and CSV export. Required binary is only python and no unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md instructs running the included Python CLI against {baseDir}; the CLI only reads/writes a local SQLite DB under {baseDir}/.runtime and CSV export files. There are no instructions to read unrelated system files, access environment secrets, or transmit data externally.
Install Mechanism
There is no install spec or remote download; the skill ships code files and expects a local python to run them. No external packages or network retrievals are performed at install time.
Credentials
The skill declares no required environment variables or credentials. The code does not access environment secrets or external auth tokens.
Persistence & Privilege
always is false and the skill does not request persistent platform privileges. It creates and updates files only within the provided base_dir (.runtime DB and any explicit export paths), which is appropriate for its purpose.
Assessment
This skill appears to do what it says: run the included Python script to store receipts in a local SQLite DB at {baseDir}/.runtime/expense-snap.db and export CSVs. It does not request credentials or perform network access. Before installing, consider: run it in a safe/isolated base_dir if you have sensitive receipts (it will write files there), review the small Python source yourself if you want assurance, and ensure your agent substitutes {baseDir} to a directory you control. Note: SKILL.md mentions images/OCR, but the script only stores an image_path string and does not perform OCR or read image files. If you need encryption/backups or stricter access controls for financial data, add those protections outside this skill.

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

Runtime requirements

Binspython
latestvk977j79pq3xzcpj9kpjncq6nvd83eazk
132downloads
0stars
1versions
Updated 1mo ago
v0.1.0
MIT-0

Expense Snap

Use this skill when the user wants to turn a receipt or spending note into structured expense data, review spending by month, or export records to CSV.

When to Use

  • Logging a new receipt from text or an image transcription.
  • Categorizing spending into consistent buckets.
  • Producing monthly summaries with budget comparisons.
  • Exporting receipts for spreadsheets or reimbursement.

Commands

The helper script stores state in {baseDir}/.runtime/expense-snap.db.

Record a receipt

python {baseDir}/scripts/expense_snap.py record --merchant "Cafe Luna" --date 2026-03-22 --total 18.40 --currency EUR --category meals --line-item "Latte|4.50|1|beverages" --line-item "Sandwich|13.90|1|meals"

List receipts

python {baseDir}/scripts/expense_snap.py list --month 2026-03 --category meals

Monthly report

python {baseDir}/scripts/expense_snap.py monthly-report --month 2026-03

Export to CSV

python {baseDir}/scripts/expense_snap.py export-csv --month 2026-03 --output {baseDir}/.runtime/march-expenses.csv

Safety Boundaries

  • Never claim receipt OCR is perfect. Mark ambiguous fields as inferred.
  • Do not fabricate line items that are not visible or provided.
  • Keep currency and totals consistent with the source receipt.
  • If an image is unreadable, explain the uncertainty instead of inventing data.

Comments

Loading comments...