一键导入
finance-tracker
Track expenses, analyze spending patterns, categorize transactions. Works with bank CSV exports or manual input.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Track expenses, analyze spending patterns, categorize transactions. Works with bank CSV exports or manual input.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create and edit PowerPoint (.pptx) presentations programmatically. Requires python-pptx.
Create and edit Excel (.xlsx) workbooks with openpyxl. Supports formulas, charts, formatting, and data analysis.
Generate images via DALL-E, Stable Diffusion, or free alternatives. Supports multi-channel delivery.
Generate meme images with text overlays using Pillow. Pick templates or create custom image macros.
Execute Python code snippets in a sandboxed environment. Supports data analysis, visualization, and quick scripts.
GitHub CLI for issues, PRs, code search, CI logs, releases, and API queries. Requires gh CLI and auth.
| name | finance-tracker |
| description | Track expenses, analyze spending patterns, categorize transactions. Works with bank CSV exports or manual input. |
| version | 1.0.0 |
| metadata | {"echo":{"tags":["Finance","Expense","Budget","Tracking","Analysis"]}} |
Personal finance tracking with SQLite backend. Supports Chinese bank CSV imports.
SQLite database at ~/.echo-agent/finance.db.
# Add expense
python3 scripts/finance_manager.py add 35.5 餐饮 --note "午餐"
# Import bank CSV
python3 scripts/finance_manager.py import ~/Downloads/alipay_record.csv
# Monthly summary
python3 scripts/finance_manager.py summary --month 2026-06
# Trend (month-over-month)
python3 scripts/finance_manager.py trend --months 6
# Budget check
python3 scripts/finance_manager.py budget 餐饮 3000
餐饮, 交通, 购物, 住房, 娱乐, 医疗, 教育, 通讯, 投资, 其他
Auto-detects format from common Chinese sources:
alipay_record_*.csv微信支付账单*.csvCREATE TABLE expenses (
id INTEGER PRIMARY KEY,
amount REAL NOT NULL,
category TEXT NOT NULL,
note TEXT,
date TEXT DEFAULT (date('now')),
source TEXT DEFAULT 'manual',
created_at TEXT DEFAULT CURRENT_TIMESTAMP
);
Monthly summary shows total spending by category with percentage breakdown. Trend analysis compares month-over-month changes per category.