个人记账助手

v1.1.0

中文个人记账助手。随手记、查统计、设预算、看趋势。 本地存储,无账户、无云端、隐私安全。 当用户说"记账"、"花了多少钱"、"本月支出"、"预算提醒"时触发。 Keywords: 记账, 支出, 预算, 花费, expense, 收支, 月统计.

0· 123·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for freedompixels/cn-expense-tracker.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "个人记账助手" (freedompixels/cn-expense-tracker) from ClawHub.
Skill page: https://clawhub.ai/freedompixels/cn-expense-tracker
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install cn-expense-tracker

ClawHub CLI

Package manager switcher

npx clawhub@latest install cn-expense-tracker
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (中文个人记账助手) match the actual behavior: the code implements adding/listing/monthly reports/budget/export and stores data locally. There are no unrelated credentials, cloud APIs, or unrelated binaries requested.
Instruction Scope
SKILL.md instructs running the included Python script with CLI flags and interactive mode; the code operates on local files and standard input only. The instructions do not ask the agent to read unrelated system files, environment variables, or transmit data to external endpoints.
Install Mechanism
No install spec is present (instruction-only install) and the shipped code is pure Python using only standard-library modules. There are no downloads, package installs, or arbitrary external binaries invoked.
Credentials
The skill requests no environment variables or credentials. It does write/read to a fixed local path (~/.qclaw/workspace/expenses.json and budget.json), which is proportionate to a local expense tracker, but note that the files are stored unencrypted in a predictable location.
Persistence & Privilege
always is false and the skill does not request elevated or persistent platform privileges. It only writes its own data files and does not modify other skills or system-wide agent settings.
Assessment
This skill appears to do what it says: local expense tracking using a bundled Python script. Before installing or running it: (1) inspect the script (you already have) and confirm you are comfortable running Python code; (2) be aware data are stored as plaintext JSON/CSV at ~/.qclaw/workspace — sensitive financial data are not encrypted; consider restricting filesystem permissions or using an encrypted folder if needed; (3) run it in an isolated environment (virtualenv/container) if you want extra safety; (4) if you share the machine, the predictable path could be read by other local users/processes — treat accordingly. If you want networked backups or encryption, this skill does not provide them and would need modification.

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

Runtime requirements

💰 Clawdis
latestvk971bcv8bqsf8t81t1qwm8ez9x855fvmproductivityvk971bcv8bqsf8t81t1qwm8ez9x855fvm
123downloads
0stars
3versions
Updated 1w ago
v1.1.0
MIT-0

💰 CN Expense Tracker — 中文个人记账助手

本地记账,无账户、无云端、隐私安全。

核心功能

功能说明
随手记一句话记账:金额 + 类别 + 备注
月统计本月花了多少、各类占比
预算管理设置月度预算,超支提醒
趋势分析月度对比,涨了还是降了
导出CSV方便 Excel 分析

使用方式

# 记一笔
python3 scripts/expense.py --add "午餐" 25 --category 餐饮
python3 scripts/expense.py --add "打车" 38 --category 交通 --note "赶时间"
python3 scripts/expense.py --add "咖啡" 22 --category 饮品

# 本月统计
python3 scripts/expense.py --month

# 设置预算
python3 scripts/expense.py --budget 3000

# 月度对比
python3 scripts/expense.py --compare

# 查看所有记录
python3 scripts/expense.py --list

# 删除记录
python3 scripts/expense.py --delete 3

# 导出CSV
python3 scripts/expense.py --export

# 快速记账(交互)
python3 scripts/expense.py --interactive

类别预设

餐饮 | 交通 | 购物 | 娱乐 | 居住 | 医疗 | 教育 | 通讯 | 服饰 | 护肤 | 饮品 | 其他

数据存储

本地 JSON 文件:~/.qclaw/workspace/expenses.json

  • 无需账户
  • 无需联网
  • 随时可导出

示例输出

💰 本月支出报告(2026年4月)
━━━━━━━━━━━━━━━━━━━━━━
总支出:2,847.5 元
预算:3,000 元(已用 94.9%)

📊 分类明细:
  🍽️ 餐饮    1,200 (42%)
  🚗 交通    580   (20%)
  🛒 购物    450   (16%)
  ☕ 饮品    280   (10%)
  🎬 娱乐    337.5 (12%)

📈 对比上月(3月):
  餐饮  +15%(外卖增加)
  交通  -8%(少出差)

⚠️ 注意:饮品支出增长较快

Comments

Loading comments...