AI Expense Tracker

Trợ lý tài chính cá nhân đa năng. Dùng khi user muốn GHI NHẬN CHI TIÊU (nay ăn hết 50k, đổ xăng 50k...), XEM BÁO CÁO (vẽ biểu đồ chi tiêu), ĐẶT NGÂN SÁCH (bu...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 39 · 0 current installs · 0 all-time installs
byDo Van Hoang@hoanghust2003
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the included Python scripts and SKILL.md: logging expenses, generating reports/charts, simple 'roast' messages, and simulated budget setting. The scripts read/write a local expenses.csv and produce a PNG chart — all consistent with an expense tracker.
Instruction Scope
Instructions tell the agent to run the included Python scripts via exec and to send returned chart_path. That scope is appropriate, but SKILL.md uses a hardcoded absolute path (/home/hoang/.openclaw/...), which may not exist for other users and ties execution to a specific workspace layout.
Install Mechanism
No install spec (instruction-only), so nothing is downloaded or installed by default. However, the report() function imports matplotlib and pandas (heavy dependencies) yet the skill does not declare or install them — report actions may fail if those packages are absent.
Credentials
The skill requests no environment variables or external credentials. It only reads/writes a local CSV file inside the agent workspace (expenses.csv) which is appropriate for logging expense data.
Persistence & Privilege
Skill is not forced-always, does not modify other skills, and has no elevated privileges. It writes a local file (expenses.csv) and generates images in the workspace — expected for its purpose.
Assessment
This skill appears to do what it says: store expenses in a local CSV and produce simple charts. Before installing: 1) Note SKILL.md uses a hardcoded path (/home/hoang/.openclaw/...) — verify the path matches your environment or edit the instructions to a correct path. 2) The report feature requires matplotlib and pandas but the skill doesn't install them; install those packages if you want charting to work. 3) The agent will execute bundled Python scripts on your machine — review the scripts (they are included) and ensure you trust the author, since executed code can read/write any files the agent process can access. 4) If you prefer containment, run the skill in a restricted/sandboxed environment or limit its ability to run autonomously. If you want, I can suggest a modified SKILL.md that avoids hardcoded paths or produce a checklist to sandbox execution.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk97eyba0sbrf0535m3t13j5tzh8322z3

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

AI Personal CFO

Skill này là một trợ lý tài chính xịn xò. Hãy xác định nhu cầu của user và dùng tool exec gọi script tương ứng.

1. Ghi nhận chi tiêu (Log Expense)

  • Trích xuất số tiền (amount), danh mục (category - tiếng Anh: Food, Drink, Transport, Shopping, Other), và mô tả (desc).
  • Gọi: python3 /home/hoang/.openclaw/workspace/expense-tracker/scripts/finance_manager.py log --amount <tiền> --category <nhóm> --desc "<mô tả>"
  • Phản hồi user xác nhận.

2. Báo cáo (Report & Chart)

  • Khi user bảo "Báo cáo chi tiêu", "Vẽ biểu đồ", "Tổng kết".
  • Gọi: python3 /home/hoang/.openclaw/workspace/expense-tracker/scripts/finance_manager.py report
  • Script sẽ trả về đường dẫn chart_path tới ảnh PNG.
  • Phản hồi: Dùng tool message để gửi ảnh đó lại cho user (kèm theo lời giải thích ngắn gọn).

3. Khẩu nghiệp / Tư vấn (Roast & Advise)

  • Khi user bảo "Chửi tao đi", "Nhận xét cách tiêu tiền", "Roast me".
  • Gọi: python3 /home/hoang/.openclaw/workspace/expense-tracker/scripts/finance_manager.py roast
  • Phản hồi: Chế giễu cách tiêu tiền một cách vui vẻ hoặc khuyên răn dựa trên output của script.

4. Đặt ngân sách (Budget)

  • Khi user bảo "Đặt ngân sách Food 2 triệu".
  • Gọi: python3 /home/hoang/.openclaw/workspace/expense-tracker/scripts/finance_manager.py budget --amount 2000000 --category "Food"
  • Phản hồi xác nhận.

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…