← 返回 Skills 市场
newageinvestments25-byte

Local Budget

作者 New Age Investments · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
112
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install local-budget
功能描述
Analyze exported bank/credit card CSV files locally to track spending, categorize transactions with LLM reasoning, compare against user-defined budgets, and...
使用说明 (SKILL.md)

Local Budget

Analyze bank/credit card CSV exports, categorize transactions, compare against budgets, and generate clean markdown reports for Obsidian.

Workflow Overview

  1. Parse — run parse_csv.py to normalize raw CSVs into a unified JSON format
  2. Categorize — run categorize.py to get LLM-ready JSON with suggested categories; review/adjust
  3. Report — run report.py to generate a markdown spending report

All scripts live in scripts/. Budget config and sample data in assets/. See references/csv-formats.md for supported formats and references/categories.md for category customization.

Step 1: Parse CSV

python3 scripts/parse_csv.py \x3Cinput.csv> [--format chase|boa|generic] [--output transactions.json]
  • Auto-detects format if --format is omitted (checks header columns)
  • Outputs a unified JSON array of transaction objects
  • Each transaction: { "date": "YYYY-MM-DD", "description": str, "amount": float, "type": "debit"|"credit", "original_category": str|null }
  • Debits are positive amounts; credits (refunds/income) are negative
  • Handles multiple date formats: MM/DD/YYYY, YYYY-MM-DD, MM/DD/YY
  • Skips rows with missing date or amount; logs warnings to stderr

If the user's bank isn't auto-detected, check references/csv-formats.md for column mappings and use --format generic with the appropriate flag, or add a new format.

Step 2: Categorize Transactions

python3 scripts/categorize.py transactions.json [--budget assets/sample-budget.json] [--output categorized.json]
  • Outputs a JSON file with each transaction tagged with a suggested category based on description keyword matching
  • The LLM (you) should review the output and adjust categories before generating the report
  • Default categories: Housing, Food & Dining, Transportation, Utilities, Entertainment, Shopping, Health, Subscriptions, Income, Other
  • To adjust: edit the JSON directly, or tell the user which transactions look miscategorized and confirm corrections
  • See references/categories.md for the keyword-matching logic and how to customize

LLM review step: After running categorize.py, scan the output for anything in "Other" or with low-confidence keywords. Ask the user to confirm or correct those entries before proceeding.

Step 3: Generate Report

python3 scripts/report.py categorized.json [--budget assets/sample-budget.json] [--output report.md]
  • Generates a markdown report with:
    • Monthly summary (total in/out)
    • Spending by category with budget vs. actual comparison
    • Top 10 merchants by spend
    • Month-over-month trend if multiple months present in the data
    • Overage alerts for categories that exceed budget
  • If --budget is omitted, report shows actuals only (no budget comparison)
  • Output is Obsidian-compatible markdown with frontmatter

Budget Config

Budget is defined in a JSON file. See assets/sample-budget.json for a realistic example.

{
  "monthly_budgets": {
    "Housing": 1800,
    "Food & Dining": 600
  }
}

Common Tasks

"Analyze my Chase export"parse_csv.py chase_export.csv --format chase --output tx.jsoncategorize.py tx.json --output cat.json → Review categories, then report.py cat.json --budget assets/sample-budget.json

"Show me my spending for March" → Parse and categorize the CSV, then filter by month in report.py (it auto-groups by month)

"I went over budget on dining" → Run the full pipeline; report.py flags overage categories with ⚠️

"Add a new bank format" → See references/csv-formats.md for the column mapping spec

"Customize categories" → See references/categories.md to edit keyword lists or add new categories

File Locations

Store CSVs and JSON outputs wherever the user prefers. Default working directory is wherever the command is run. Suggest keeping exports in a dedicated folder like ~/finances/exports/.

Reports can be saved directly to the Obsidian vault:

python3 scripts/report.py categorized.json --output ~/path/to/vault/finance/2024-03-budget.md
安全使用建议
This skill appears to do what it says: parse CSVs, suggest categories, and produce markdown reports locally. Before installing/use: (1) review the included scripts locally if you can (they are plain Python) to confirm file I/O targets and any small typos in regexes you might want to fix; (2) keep your bank CSVs on your machine — the tool operates on local files and will write report files to whatever output path you provide; (3) run the scripts in a safe directory and verify outputs before saving into your Obsidian vault; (4) no credentials are required, but be mindful to not paste CSV contents into third-party services when following the LLM review step if you want to keep data fully local.
功能分析
Type: OpenClaw Skill Name: local-budget Version: 1.0.0 The local-budget skill bundle is a well-structured set of Python scripts designed for local financial data analysis. The scripts (parse_csv.py, categorize.py, and report.py) use only Python standard libraries to process CSV files, apply regex-based categorization, and generate Markdown reports without any network access or data exfiltration logic. The SKILL.md instructions provide a clear, safe workflow for the AI agent that emphasizes user privacy and manual review of financial data.
能力评估
Purpose & Capability
Name/description (local CSV parsing, categorization, budget reports) match the included scripts and assets. No unrelated binaries, env vars, or credentials are requested.
Instruction Scope
SKILL.md only instructs running the included scripts on user-provided CSVs and budget JSON, and to review LLM-suggested categories before reporting. It does not instruct reading unrelated system files or sending data to external endpoints.
Install Mechanism
There is no install spec (instruction-only skill) and all code is bundled in the skill. Nothing is downloaded or extracted from external URLs.
Credentials
No environment variables, credentials, or config paths are requested. The scripts read user-supplied CSV/JSON files only, which aligns with the stated purpose.
Persistence & Privilege
Skill is not always-enabled and does not attempt to modify other skills or system-wide settings. It writes outputs only to files/paths the user supplies or specifies.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install local-budget
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /local-budget 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: Fully local bank/credit card CSV analysis. LLM-powered categorization, budget comparison, markdown reports. No third-party APIs, complete privacy.
元数据
Slug local-budget
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Local Budget 是什么?

Analyze exported bank/credit card CSV files locally to track spending, categorize transactions with LLM reasoning, compare against user-defined budgets, and... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 112 次。

如何安装 Local Budget?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install local-budget」即可一键安装,无需额外配置。

Local Budget 是免费的吗?

是的,Local Budget 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Local Budget 支持哪些平台?

Local Budget 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Local Budget?

由 New Age Investments(@newageinvestments25-byte)开发并维护,当前版本 v1.0.0。

💬 留言讨论