Install
openclaw skills install expense-tracker-v2Track expenses and income with multi-backend storage (local/Notion/Google Sheet/Supabase). Credentials are encrypted with AES-256-GCM. Use when user wants to record expenses, view transaction history, or check monthly spending statistics.
openclaw skills install expense-tracker-v2expense-tracker setup
This will:
Storage backends:
expense-tracker pass <your-password>
Or enter interactively when prompted.
expense-tracker add -50 "lunch" food
# Format: expense-tracker add <amount> <note> <category>
# Negative amount = expense
expense-tracker add 5000 "salary" salary
# Positive amount = income
expense-tracker list # Recent 10 records
expense-tracker list --month # This month
expense-tracker list --category # By category
expense-tracker stats # This month
expense-tracker stats -m 2 # 2 months ago
Credentials are encrypted using AES-256-GCM with PBKDF2 key derivation.
~/.openclaw/expense-tracker/config.encfood - Food & Diningtransport - Transportationshopping - Shoppingentertainment - Entertainmentsalary - Salarybonus - Bonusinvestment - Investmentother - Other| Command | Description |
|---|---|
setup | Set password & configure backend (first time) |
pass <password> | Set password for decryption |
add <amount> <note> <category> | Add new record |
list | View recent records |
list --month | This month's records |
list --category | Group by category |
stats | Monthly summary |
stats -m <n> | N months ago |
Each record:
{
"id": "uuid",
"type": "expense|income",
"amount": -50,
"category": "food",
"note": "lunch",
"date": "2026-03-03",
"created_at": "2026-03-03T20:23:00Z"
}