{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/arc-budget-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=arc-budget-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/budget.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/arc-budget-tracker",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Budget Tracker",
        "body": "Track every cent your agent spends. Set hard limits. Get alerts before you blow your budget."
      },
      {
        "title": "Why This Exists",
        "body": "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."
      },
      {
        "title": "Log a transaction",
        "body": "python3 {baseDir}/scripts/budget.py log --amount 10.00 --merchant \"Namecheap\" --category \"domain\" --note \"arcself.com registration\""
      },
      {
        "title": "Check balance",
        "body": "python3 {baseDir}/scripts/budget.py balance"
      },
      {
        "title": "View spending summary",
        "body": "python3 {baseDir}/scripts/budget.py summary"
      },
      {
        "title": "View recent transactions",
        "body": "python3 {baseDir}/scripts/budget.py history --limit 10"
      },
      {
        "title": "Set budget limit",
        "body": "python3 {baseDir}/scripts/budget.py set-budget --total 200.00"
      },
      {
        "title": "Set alert threshold (warn when balance drops below this)",
        "body": "python3 {baseDir}/scripts/budget.py set-alert --threshold 50.00"
      },
      {
        "title": "Check if a purchase is safe",
        "body": "python3 {baseDir}/scripts/budget.py check --amount 25.00"
      },
      {
        "title": "Export to CSV",
        "body": "python3 {baseDir}/scripts/budget.py export --format csv"
      },
      {
        "title": "Data Storage",
        "body": "Budget data is stored in ~/.openclaw/budget-tracker/budget.json by default. Override with --data-dir /path/to/dir.\n\nThe JSON structure:\n\n{\n  \"budget\": {\"total\": 200.00, \"alert_threshold\": 50.00},\n  \"transactions\": [\n    {\n      \"id\": \"txn_001\",\n      \"timestamp\": \"2026-02-15T14:00:00Z\",\n      \"amount\": 10.00,\n      \"merchant\": \"Namecheap\",\n      \"category\": \"domain\",\n      \"note\": \"arcself.com\"\n    }\n  ]\n}"
      },
      {
        "title": "Categories",
        "body": "Use consistent categories: domain, hosting, api, tool, subscription, marketing, other."
      },
      {
        "title": "Alerts",
        "body": "When balance drops below the alert threshold, the skill outputs a warning. When a purchase would exceed the remaining budget, it blocks and warns."
      },
      {
        "title": "Tips",
        "body": "Log transactions immediately after spending — don't batch them\nUse check before any purchase to verify budget safety\nRun summary at the start of each day for awareness\nSet --alert-threshold to 25% of your total budget"
      }
    ],
    "body": "Budget Tracker\n\nTrack every cent your agent spends. Set hard limits. Get alerts before you blow your budget.\n\nWhy This Exists\n\nAutonomous 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.\n\nCommands\nLog a transaction\npython3 {baseDir}/scripts/budget.py log --amount 10.00 --merchant \"Namecheap\" --category \"domain\" --note \"arcself.com registration\"\n\nCheck balance\npython3 {baseDir}/scripts/budget.py balance\n\nView spending summary\npython3 {baseDir}/scripts/budget.py summary\n\nView recent transactions\npython3 {baseDir}/scripts/budget.py history --limit 10\n\nSet budget limit\npython3 {baseDir}/scripts/budget.py set-budget --total 200.00\n\nSet alert threshold (warn when balance drops below this)\npython3 {baseDir}/scripts/budget.py set-alert --threshold 50.00\n\nCheck if a purchase is safe\npython3 {baseDir}/scripts/budget.py check --amount 25.00\n\nExport to CSV\npython3 {baseDir}/scripts/budget.py export --format csv\n\nData Storage\n\nBudget data is stored in ~/.openclaw/budget-tracker/budget.json by default. Override with --data-dir /path/to/dir.\n\nThe JSON structure:\n\n{\n  \"budget\": {\"total\": 200.00, \"alert_threshold\": 50.00},\n  \"transactions\": [\n    {\n      \"id\": \"txn_001\",\n      \"timestamp\": \"2026-02-15T14:00:00Z\",\n      \"amount\": 10.00,\n      \"merchant\": \"Namecheap\",\n      \"category\": \"domain\",\n      \"note\": \"arcself.com\"\n    }\n  ]\n}\n\nCategories\n\nUse consistent categories: domain, hosting, api, tool, subscription, marketing, other.\n\nAlerts\n\nWhen balance drops below the alert threshold, the skill outputs a warning. When a purchase would exceed the remaining budget, it blocks and warns.\n\nTips\nLog transactions immediately after spending — don't batch them\nUse check before any purchase to verify budget safety\nRun summary at the start of each day for awareness\nSet --alert-threshold to 25% of your total budget"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Trypto1019/arc-budget-tracker",
    "publisherUrl": "https://clawhub.ai/Trypto1019/arc-budget-tracker",
    "owner": "Trypto1019",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}