/install finance-skill
Finance Skill
Personal finance memory layer. Parse statements, store transactions, query spending.
Data Location
- Transactions:
~/.openclaw/workspace/finance/transactions.json - Raw statements:
~/.openclaw/workspace/finance/statements/
Storage convention: OpenClaw workspace (~/.openclaw/workspace/) is the standard location for persistent user data. This matches where session-memory and other hooks store agent data. Credentials/config would go in ~/.config/finance/ if needed.
Tools
1. Parse Statement
When user shares a statement (image or PDF):
⚠️ IMPORTANT: Telegram/channel previews truncate PDFs! Always extract with pypdf first to get ALL pages:
python3 -c "
import pypdf
reader = pypdf.PdfReader('/path/to/statement.pdf')
for i, page in enumerate(reader.pages):
print(f'=== PAGE {i+1} ===')
print(page.extract_text())
"
Then parse the full text output:
- Extract transactions from ALL pages
- Return JSON array:
[{date, merchant, amount, category}, ...] - Run
scripts/add-transactions.shto append to store - Verify total matches statement (sum of expenses should equal "Total purchases")
Extraction format:
Each transaction: {"date": "YYYY-MM-DD", "merchant": "name", "amount": -XX.XX, "category": "food|transport|shopping|bills|entertainment|health|travel|other"}
Negative = expense, positive = income/refund.
Categories:
- food: restaurants, groceries, coffee, fast food
- transport: Waymo, Uber, gas, public transit
- shopping: retail, online purchases
- bills: utilities, subscriptions
- entertainment: movies, concerts, theme parks
- health: pharmacy, doctors
- travel: hotels, flights
2. Query Transactions
User asks about spending → read transactions.json → filter/aggregate → answer
Example queries:
- "How much did I spend last month?" → sum all negative amounts in date range
- "What did I spend on food?" → filter by category
- "Show my biggest expenses" → sort by amount
3. Add Manual Transaction
User says "I spent $X at Y" → append to transactions.json
File Format
{
"transactions": [
{
"id": "uuid",
"date": "2026-02-01",
"merchant": "Whole Foods",
"amount": -87.32,
"category": "food",
"source": "statement-2026-01.pdf",
"added": "2026-02-09T19:48:00Z"
}
],
"accounts": [
{
"id": "uuid",
"name": "Coinbase Card",
"type": "credit",
"lastUpdated": "2026-02-09T19:48:00Z"
}
]
}
Usage Flow
- User: shares statement image
- Agent: extracts transactions via vision, confirms count
- Agent: runs add script to store
- User: "how much did I spend on food?"
- Agent: reads store, filters, answers
Dependencies
jq— for JSON transaction storage and querying (apt install jq/brew install jq)pypdf— for full PDF text extraction (pip3 install pypdf)
Lessons Learned
- Telegram truncates PDF previews — always use pypdf to get all pages
- Verify totals — sum extracted expenses and compare to statement total before importing
- Coinbase Card — no Plaid support, statement upload only
Future: Plaid Integration
- Add
finance_connecttool for Plaid OAuth flow - Auto-sync transactions from connected banks
- Same query interface, different data source
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install finance-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/finance-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Finance Skill 是什么?
Parse and store transactions from bank statements, enable querying and adding personal finance data in JSON format within a local workspace. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2293 次。
如何安装 Finance Skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install finance-skill」即可一键安装,无需额外配置。
Finance Skill 是免费的吗?
是的,Finance Skill 完全免费(开源免费),可自由下载、安装和使用。
Finance Skill 支持哪些平台?
Finance Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Finance Skill?
由 safaiyeh(@safaiyeh)开发并维护,当前版本 v0.1.2。