Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

financial-reconciler财务调节员

Agent Skill

financial-reconciler 用于处理数据库查询、表结构、迁移和数据维护任务,适合在 OpenClaw 中需要分析 schema、编写 SQL 或排查数据问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

33,097

周安装

1,352

GitHub Stars

公开资料未说明

下载量

10,807
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:financial-reconciler(财务调节员)
来源仓库:https://github.com/gowtham1984/financial-reconciler
安装命令:
openclaw skills install financial-reconciler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install financial-reconciler

简介

具备本地 SQLite 存储功能的隐私优先个人财务追踪工具。

  • 适用于注重数据安全且需离线记账的个人或小型团队。
  • 支持交易记录管理与账目核对,自动生成简明财务报表。
  • 安装命令:openclaw skills install financial-reconciler
  • 使用前请确认权限范围、维护状态及是否允许本地文件写入

SKILL.md

name
finance-reconciler
description
Privacy-first personal finance tracker with local SQLite storage
requires
python3
install
pip3 install pandas ofxparse tabulate python-dateutil

Finance Reconciler

A privacy-first personal finance skill that imports bank transactions, auto-categorizes them, tracks budgets, answers natural language spending queries, and generates reports. All data stays local in SQLite — nothing is sent to external servers.

First-Time Setup

On first use, run these two commands before anything else:

pip3 install pandas ofxparse tabulate python-dateutil
python3 scripts/db.py

If either command fails, stop and show the user the error. Do not proceed until setup succeeds.

First-Time User Onboarding

If the user has no transactions in the database yet (or says something general like "help me track my finances", "get started", or "what can you do"), walk them through this:

  1. Explain that this tool tracks spending from bank statement files — all data stays on their machine.
  2. Tell them to download a statement from their bank:

- Chase: chase.com → Statements & Documents → Download account activity → CSV - Bank of America: bankofamerica.com → Statements & Documents → Download Transactions → CSV - Wells Fargo: wellsfargo.com → Account Activity → Download → Comma Delimited - Any bank: Look for "Export to Quicken" or "Download OFX/QFX" for OFX format, or any CSV download option

  1. Ask them to share the file path or drop the file into the conversation.
  2. Suggest they try these after importing:

- "How much did I spend on groceries last month?" - "Set a $400 monthly budget for dining" - "Show me my monthly report"

Handling File Input

When the user wants to import a bank statement:

  • If they provide a file path (e.g., ~/Downloads/chase_jan.csv): use that path directly with the import script.
  • If they attach/upload a file: the file will be available at a local temp path. Use that path with the import script.
  • If they mention a bank but don't provide a file: tell them exactly how to download it. For example: "To get your Chase statement, log in to chase.com, go to Statements & Documents, select your account, choose a date range, and download as CSV. Then share the file path with me."
  • If the file format is unclear: the import script auto-detects Chase, Bank of America, and Wells Fargo formats. For other banks, it falls back to generic CSV parsing that matches common column names (Date, Description, Amount). If that also fails, ask the user what columns their CSV has.

Supported file types: .csv (Chase, BofA, Wells Fargo, generic) and .ofx/.qfx (universal).

Operations

1. Import Transactions

For CSV files:

python3 scripts/import_csv.py <file_path> [--format chase|bofa|wells_fargo|generic] [--account <name>]

For OFX/QFX files:

python3 scripts/import_ofx.py <file_path> [--account <name>]

Choose the import script based on file extension (.ofx/.qfximport_ofx.py, everything else → import_csv.py). The bank format is auto-detected if --format is omitted. Both scripts output JSON.

After a successful import, always run categorization automatically (step 2) without the user asking. Then present a summary like: "Imported 47 transactions from Jan 1–31. Here's the breakdown: Groceries $342, Dining $189, ..."

If the import returns duplicates > 0, mention it: "Skipped 12 duplicate transactions that were already imported."

2. Categorize Transactions

Run on uncategorized transactions:

python3 scripts/categorize.py run

Re-categorize everything (after adding rules):

python3 scripts/categorize.py run --recategorize

Add a custom rule:

python3 scripts/categorize.py add-rule <category> <pattern> [--type keyword|exact|regex|custom]

Categories: groceries, dining, transport, utilities, subscriptions, shopping, healthcare, entertainment, income, uncategorized.

If more than 20% of transactions land in "uncategorized", proactively tell the user: "I couldn't categorize X transactions. Here are some common ones: [list top uncategorized merchants]. Want me to add rules for any of these?" Then use add-rule for each one they confirm, and re-run with --recategorize.

3. Query Spending

python3 scripts/query.py "<natural language query>"

The query parser understands:

  • Time: "this month", "last month", "January", "last 30 days", "this year", "2024-01-01 to 2024-03-31"
  • Categories: "groceries", "dining", "transport", "utilities", "subscriptions", "shopping", "healthcare", "entertainment", "income"
  • Merchants: "at Starbucks", "from Amazon"
  • Aggregations: total/sum, count, average, largest/max, smallest/min, list/show

Translate the user's question into the closest query string. Present results conversationally — for totals state the amount, for lists format as a readable table with dates and amounts.

4. Manage Budgets

python3 scripts/budget.py set <category> <amount> [--period monthly|yearly]
python3 scripts/budget.py status [--category <name>] [--period monthly|yearly]
python3 scripts/budget.py list
python3 scripts/budget.py delete <category> [--period monthly|yearly]

Budget statuses: ok (under 80%), warning (80-100%), exceeded (over 100%).

When reporting status, use clear language: "Your dining budget is at 87% ($261 of $300) — you have $39 left this month." Highlight exceeded budgets prominently.

5. Generate Reports

python3 scripts/report.py [--month <1-12>] [--year <year>] [--period monthly|yearly] [--format json|text|html]

Use --format text for conversational summaries. Use --format html when the user wants a file they can open in a browser — save the output to a file and give them the path.

Present report highlights conversationally: biggest spending categories, changes from last month, budget concerns, and top merchants.

Data Location

All data is stored locally at ~/.openclaw/skills/finance-reconciler/data/transactions.db (SQLite). Set the FINANCE_DATA_DIR environment variable to override.

Responding to Common User Intents

User saysWhat to do
"Import my statement" / shares a fileRun import → categorize → show summary
"How much did I spend on X?"Run query.py with their question
"Set a budget for groceries"Ask for the amount if not given, then run budget.py set
"Am I over budget?"Run budget.py status for all categories
"Show me my report" / "monthly summary"Run report.py for current or specified month
"What can you do?" / "help"Explain the 5 operations with examples
"Why is X categorized as Y?"Explain the rule-based system, offer to add a custom rule
"I don't have a file yet"Give them bank-specific download instructions

All scripts output JSON to stdout. Parse the JSON and present results in clear, conversational language — never dump raw JSON to the user.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

93.94%
按下载量换算10,152

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills