🦀 ClawHub
Maybe Finance - 个人财务助手
by @antonia-sz
Personal finance management skill using Maybe Finance OS. Use when users need to track expenses, analyze budgets, monitor net worth, or manage personal finan...
TERMINAL
clawhub install maybe-finance📖 About This Skill
name: maybe-finance description: Personal finance management skill using Maybe Finance OS. Use when users need to track expenses, analyze budgets, monitor net worth, or manage personal finances through the Maybe Finance self-hosted platform. Supports transaction tracking, account management, budget analysis, and financial reporting.
Maybe Finance Skill
Personal finance management powered by Maybe Finance - an open-source personal finance OS.
Overview
Maybe Finance is a self-hosted personal finance platform for tracking:
Prerequisites
1. Self-hosted Maybe instance - Deploy via Docker:
docker run -d -p 3000:3000 ghcr.io/maybe-finance/maybe:latest
2. API Token - Generate in Maybe UI: Settings → API KeysConfiguration
Set environment variables:
export MAYBE_API_URL="http://localhost:3000"
export MAYBE_API_TOKEN="your-api-token"
Usage
Account Management
# List all accounts
maybe-finance accounts listAdd a new account
maybe-finance accounts add --name "Alipay" --type checking --balance 5000Update account balance
maybe-finance accounts update --balance 6000Delete account
maybe-finance accounts delete
Transaction Tracking
# List recent transactions
maybe-finance transactions list --limit 20Add income
maybe-finance transactions add --amount 10000 --type income --category "工资" --description "三月工资"Add expense
maybe-finance transactions add --amount -150 --type expense --category "餐饮" --description "午餐"Search transactions
maybe-finance transactions search --category "餐饮" --from 2024-01-01 --to 2024-03-31
Budget Analysis
# View current month budget
maybe-finance budget currentAnalyze spending by category
maybe-finance budget analyze --month 2024-03Compare months
maybe-finance budget compare --from 2024-01 --to 2024-03
Net Worth & Reports
# Current net worth snapshot
maybe-finance networthCash flow report
maybe-finance cashflow --period monthlyGenerate financial summary
maybe-finance summary --year 2024
Scripts
All functionality is available through scripts/maybe-cli.py:
Integration Ideas
💡 Examples
Account Management
# List all accounts
maybe-finance accounts listAdd a new account
maybe-finance accounts add --name "Alipay" --type checking --balance 5000Update account balance
maybe-finance accounts update --balance 6000Delete account
maybe-finance accounts delete
Transaction Tracking
# List recent transactions
maybe-finance transactions list --limit 20Add income
maybe-finance transactions add --amount 10000 --type income --category "工资" --description "三月工资"Add expense
maybe-finance transactions add --amount -150 --type expense --category "餐饮" --description "午餐"Search transactions
maybe-finance transactions search --category "餐饮" --from 2024-01-01 --to 2024-03-31
Budget Analysis
# View current month budget
maybe-finance budget currentAnalyze spending by category
maybe-finance budget analyze --month 2024-03Compare months
maybe-finance budget compare --from 2024-01 --to 2024-03
Net Worth & Reports
# Current net worth snapshot
maybe-finance networthCash flow report
maybe-finance cashflow --period monthlyGenerate financial summary
maybe-finance summary --year 2024
⚙️ Configuration
Set environment variables:
export MAYBE_API_URL="http://localhost:3000"
export MAYBE_API_TOKEN="your-api-token"