expense-tracker
Track 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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/codeblackhole1024/expense-tracker-v2Expense Tracker Skill
Quick Start
Initial Setup (First Time)
expense-tracker setup
This will:
- Ask you to set a master password (for encrypting credentials)
- Select storage backend and configure API keys
Storage backends:
- Local file - No config needed
- Notion - Requires API Key + Database ID
- Google Sheet - Requires credentials path + Spreadsheet ID
- Supabase - Requires URL + Anon Key
Set Password (For Subsequent Uses)
expense-tracker pass <your-password>
Or enter interactively when prompted.
Record Expense
expense-tracker add -50 "lunch" food
# Format: expense-tracker add <amount> <note> <category>
# Negative amount = expense
Record Income
expense-tracker add 5000 "salary" salary
# Positive amount = income
View Records
expense-tracker list # Recent 10 records
expense-tracker list --month # This month
expense-tracker list --category # By category
Statistics
expense-tracker stats # This month
expense-tracker stats -m 2 # 2 months ago
Security
Credentials are encrypted using AES-256-GCM with PBKDF2 key derivation.
- Config file:
~/.openclaw/expense-tracker/config.enc - Never stores plain text passwords or API keys
Categories
food- Food & Diningtransport- Transportationshopping- Shoppingentertainment- Entertainmentsalary- Salarybonus- Bonusinvestment- Investmentother- Other
Commands Reference
| 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 |
Data Format
Each record:
{
"id": "uuid",
"type": "expense|income",
"amount": -50,
"category": "food",
"note": "lunch",
"date": "2026-03-03",
"created_at": "2026-03-03T20:23:00Z"
}
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-codeblackhole1024-expense-tracker-v2": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Email Assistant
Skill by codeblackhole1024
crypto-investment-strategist
Professional cryptocurrency investment and strategy analysis for spot, swing, and leverage decisions. Combines technical analysis, market regime assessment, position sizing, staged entry and exit planning, portfolio allocation, and risk control. Use when the user asks whether to buy, sell, hold, reduce, rotate, or allocate capital across crypto assets, compare coins, assess BTC, ETH, or altcoins, build a crypto portfolio, review an existing position, or design a practical trading or investment plan.
Memory Transfer Enhanced
Skill by codeblackhole1024
openclaw-remote-install
One-click remote OpenClaw deployment via SSH. Auto-detects OS and selects best method (Docker/Podman/npm). Use when: (1) Installing on VPS/cloud servers, (2) Automating multi-machine deployment, (3) Configuring models/channels/gateway post-install.
Asset Allocation
Skill by codeblackhole1024