# Send Arc Budget Tracker to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "arc-budget-tracker",
    "name": "Arc Budget Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/Trypto1019/arc-budget-tracker",
    "canonicalUrl": "https://clawhub.ai/Trypto1019/arc-budget-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/arc-budget-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-budget-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/budget.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "arc-budget-tracker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:28:54.612Z",
      "expiresAt": "2026-05-06T03:28:54.612Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-budget-tracker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-budget-tracker",
        "contentDisposition": "attachment; filename=\"arc-budget-tracker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "arc-budget-tracker"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/arc-budget-tracker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/arc-budget-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/arc-budget-tracker",
    "agentUrl": "https://openagent3.xyz/skills/arc-budget-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/arc-budget-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/arc-budget-tracker/agent.md"
  }
}
```
## Documentation

### 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.

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Trypto1019
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T03:28:54.612Z
- Expires at: 2026-05-06T03:28:54.612Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/arc-budget-tracker)
- [Send to Agent page](https://openagent3.xyz/skills/arc-budget-tracker/agent)
- [JSON manifest](https://openagent3.xyz/skills/arc-budget-tracker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/arc-budget-tracker/agent.md)
- [Download page](https://openagent3.xyz/downloads/arc-budget-tracker)