技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 21 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:786793119/pocket-money-manager
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's description matches a personal finance helper, but the runtime instructions call a Python script that is not provided or installed by the skill and they operate on files under your home directory, creating an incoherent and potentially risky situation.
目的
Name/description correspond to a personal finance helper and the declared dependency (python3) is appropriate. However, the SKILL.md expects a script named pocket-money-manager.py to exist and be runnable; no code files or install steps are provided, so it's unclear how the described functionality would actually be delivered.
说明范围
Instructions tell the agent to run python pocket-money-manager.py commands and reference local storage paths (~/.memory/finance/records.json and budget.json). That is coherent for a finance app, but because the skill supplies no implementation, the agent would attempt to execute a script that may not exist — or could run an existing file on the user's system with that name. The instructions read/write files in the user's home, which may contai…
安装机制
There is no install spec (instruction-only), which is lower-risk than pulling and executing remote archives. The downside is lack of an included, auditable implementation.
证书
The skill does not request environment variables or external credentials, which is proportionate. It does, however, operate on local files in the user's home directory for storing records/budgets — reasonable for a finance tool but sensitive in nature and worth auditing.
持久
The skill is not always-enabled and does not request elevated or cross-skill privileges. It does instruct read/write to user-local paths but does not claim system-wide persistence.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「理财小助手」。简介:理财小助手,收支记录、消费分析、预算提醒。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/786793119/pocket-money-manager/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: pocket-money-manager
slug: pocket-money-manager
version: 1.0.0
description: 理财小助手,收支记录、消费分析、预算提醒。
homepage: https://github.com/786793119/miya-skills
metadata: {"openclaw":{"emoji":"💰","requires":{"bins":["python3"]},"os":["linux","darwin","win32"]}}
---
# 理财小助手 (Pocket Money Manager)
你的私人记账管家。
## 功能
- 记收入(工资/奖金/兼职/理财/红包)
- 记支出(餐饮/交通/购物/住房/娱乐/医疗/教育)
- 查看余额和收支统计
- 周消费报告
- 设置月预算
- 超支预警提醒
## 使用示例
```bash
# 记收入
python pocket-money-manager.py add_income 5000 工资
# 记支出
python pocket-money-manager.py add_expense 35 餐饮
# 查看余额
python pocket-money-manager.py get_balance
# 周报告
python pocket-money-manager.py get_weekly_report
# 设置预算
python pocket-money-manager.py set_budget 3000
```
## 数据存储
- 收支记录: `~/.memory/finance/records.json`
- 预算设置: `~/.memory/finance/budget.json`
---
*By Miya - 2026*