ワンクリックで
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.