/install openclaw-skill-personal-finance
Personal Finance
Scope & Safety
- Operate on exported bank or credit-card CSVs in a read-only manner by default; no automatic uploads, API calls, or write-backs occur unless an explicit
--outputpath is provided. - Mask account numbers in all CLI outputs by replacing digits except the final four to keep PII safe for every command.
- Work offline; all logic lives inside
personal-finance.sh,config/category-rules.json, and the included sample CSV.
Primary Operations
All commands live in personal-finance.sh at the skill root. Invoke with:
./personal-finance.sh \x3Ccommand> [--csv \x3Cpath>] [--config \x3Cpath>] [--output \x3Cpath>] [--period \x3Cperiod>]
1. validate
Checks that the CSV contains the required fields (date, description, amount, account_number) and that every amount is numeric. Use this before processing new exports to avoid schema drift.
./personal-finance.sh validate --csv sample-data/sample-transactions.csv
2. summarize
Aggregates income (positive amount) and expenses (negative amount) by period. Supports month, quarter, or year (default month). Outputs totals and net flows.
./personal-finance.sh summarize --period month --csv sample-data/sample-transactions.csv
3. categorize
Uses the local rules file (config/category-rules.json) to map descriptions to categories through keyword matching. Prints each transaction with masked accounts and assigned categories. Pass --output to emit a new CSV; otherwise, it stays read-only.
./personal-finance.sh categorize --csv sample-data/sample-transactions.csv --output /tmp/categorized.csv
4. report
Builds insight summaries: top merchants and categories by spend, plus transaction counts. It reuses the same rules file so it can work offline and stay consistent with categorize.
./personal-finance.sh report --csv sample-data/sample-transactions.csv
Configuration & Samples
config/category-rules.json: keyword-to-category rules thatcategorizeandreportshare.sample-data/sample-transactions.csv: minimal CSV (date, description, merchant, category, amount, account_number) for smoke tests and onboarding.
Keep both files in the skill folder. Adjust the JSON rules for your own merchant vocabulary; the script reloads them each run and never calls external services.
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install openclaw-skill-personal-finance - After installation, invoke the skill by name or use
/openclaw-skill-personal-finance - Provide required inputs per the skill's parameter spec and get structured output
What is Personal Finance?
Parse personal finance CSV exports, validate schema, categorize transactions via local rules, and summarize/report income, expenses, merchants, and categories. It is an AI Agent Skill for Claude Code / OpenClaw, with 868 downloads so far.
How do I install Personal Finance?
Run "/install openclaw-skill-personal-finance" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Personal Finance free?
Yes, Personal Finance is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Personal Finance support?
Personal Finance is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Personal Finance?
It is built and maintained by pp (@ppopen); the current version is v1.0.0.