← 返回 Skills 市场
trypto1019

Arc Budget Tracker

作者 ArcSelf · GitHub ↗ · v1.0.0
darwinlinux ✓ 安全检测通过
813
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install arc-budget-tracker
功能描述
Track agent spending, set budgets and alerts, and prevent surprise bills. Use when the agent needs to log expenses, check remaining budget, set spending limi...
使用说明 (SKILL.md)

Budget Tracker

Track every cent your agent spends. Set hard limits. Get alerts before you blow your budget.

Why This Exists

Autonomous agents with access to APIs, domains, and services can rack up unexpected bills. This skill gives you a financial safety net — log every transaction, enforce spending limits, and always know exactly where you stand.

Commands

Log a transaction

python3 {baseDir}/scripts/budget.py log --amount 10.00 --merchant "Namecheap" --category "domain" --note "arcself.com registration"

Check balance

python3 {baseDir}/scripts/budget.py balance

View spending summary

python3 {baseDir}/scripts/budget.py summary

View recent transactions

python3 {baseDir}/scripts/budget.py history --limit 10

Set budget limit

python3 {baseDir}/scripts/budget.py set-budget --total 200.00

Set alert threshold (warn when balance drops below this)

python3 {baseDir}/scripts/budget.py set-alert --threshold 50.00

Check if a purchase is safe

python3 {baseDir}/scripts/budget.py check --amount 25.00

Export to CSV

python3 {baseDir}/scripts/budget.py export --format csv

Data Storage

Budget data is stored in ~/.openclaw/budget-tracker/budget.json by default. Override with --data-dir /path/to/dir.

The JSON structure:

{
  "budget": {"total": 200.00, "alert_threshold": 50.00},
  "transactions": [
    {
      "id": "txn_001",
      "timestamp": "2026-02-15T14:00:00Z",
      "amount": 10.00,
      "merchant": "Namecheap",
      "category": "domain",
      "note": "arcself.com"
    }
  ]
}

Categories

Use consistent categories: domain, hosting, api, tool, subscription, marketing, other.

Alerts

When balance drops below the alert threshold, the skill outputs a warning. When a purchase would exceed the remaining budget, it blocks and warns.

Tips

  • Log transactions immediately after spending — don't batch them
  • Use check before any purchase to verify budget safety
  • Run summary at the start of each day for awareness
  • Set --alert-threshold to 25% of your total budget
安全使用建议
This skill appears to do exactly what it says: a local Python CLI that logs transactions to ~/.openclaw/budget-tracker/budget.json and prints alerts. It does not request credentials or network access. Before installing, consider: (1) review the included script (it is bundled and will run with python3) and confirm you are comfortable executing bundled Python code; (2) if you run agents that can actually spend money, understand this tool only logs and blocks in-script checks — it cannot stop external payments on its own; (3) if the budget file will contain sensitive notes, consider setting --data-dir to a secured location or using filesystem encryption; (4) if you run the agent in a multi-user environment, be aware the default data path is in your home directory and could be read by other local users with access. Overall, the skill is internally consistent with its stated purpose.
功能分析
Type: OpenClaw Skill Name: arc-budget-tracker Version: 1.0.0 This OpenClaw skill provides a local budget tracking utility. The `SKILL.md` instructions are clear and directly relate to the stated purpose, showing no signs of prompt injection. The `scripts/budget.py` code performs standard file I/O operations within a designated directory (`~/.openclaw/budget-tracker/budget.json` by default) and does not engage in network communication, arbitrary code execution, or access sensitive system resources. While the `--data-dir` argument could theoretically be misused by an attacker to point to sensitive file paths, this is a common pattern for user-configurable data locations and does not indicate malicious intent within the skill itself, nor is it exposed in the `SKILL.md` in a way that encourages such misuse.
能力评估
Purpose & Capability
Name/description (budget tracking, alerts, limits) align with the included Python script and the CLI commands; required binary (python3) is appropriate and nothing else (no cloud creds or unrelated binaries).
Instruction Scope
SKILL.md instructs running the local script with explicit commands and documents the data file location. There are no instructions to read unrelated system files, environment variables, or to transmit data externally.
Install Mechanism
No install spec / no downloads. The skill is instruction-only with an included Python script (bundled code executed locally); this is a low-risk install model.
Credentials
No environment variables, credentials, or config paths are requested. The script stores data under ~/.openclaw/budget-tracker (configurable) which matches the skill's purpose.
Persistence & Privilege
always flag is false; the skill is user-invocable and may be called autonomously (platform default) but it does not request elevated privileges, modify other skills, or change system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install arc-budget-tracker
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /arc-budget-tracker 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of arc-budget-tracker. - Track all agent expenses with detailed logging and categories. - Set overall spending limits and custom alert thresholds to avoid overages. - View real-time balance, history, and summaries of spending. - Check if new purchases are allowed within the current budget. - Export transaction data to CSV and customize data storage location. - Warnings for low balance and blocked transactions over budget.
元数据
Slug arc-budget-tracker
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Arc Budget Tracker 是什么?

Track agent spending, set budgets and alerts, and prevent surprise bills. Use when the agent needs to log expenses, check remaining budget, set spending limi... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 813 次。

如何安装 Arc Budget Tracker?

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

Arc Budget Tracker 是免费的吗?

是的,Arc Budget Tracker 完全免费(开源免费),可自由下载、安装和使用。

Arc Budget Tracker 支持哪些平台?

Arc Budget Tracker 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(darwin, linux)。

谁开发了 Arc Budget Tracker?

由 ArcSelf(@trypto1019)开发并维护,当前版本 v1.0.0。

💬 留言讨论