Install
openclaw skills install expense-snapCapture receipt details, categorize spending, and generate monthly reports from a local SQLite ledger.
openclaw skills install expense-snapUse 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.
The helper script stores state in {baseDir}/.runtime/expense-snap.db.
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"
python {baseDir}/scripts/expense_snap.py list --month 2026-03 --category meals
python {baseDir}/scripts/expense_snap.py monthly-report --month 2026-03
python {baseDir}/scripts/expense_snap.py export-csv --month 2026-03 --output {baseDir}/.runtime/march-expenses.csv