{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bill-tracker",
    "name": "Bill Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/danielsimons1/bill-tracker",
    "canonicalUrl": "https://clawhub.ai/danielsimons1/bill-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bill-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bill-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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/bill-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/bill-tracker",
    "agentPageUrl": "https://openagent3.xyz/skills/bill-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bill-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bill-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": "Bill Tracker Skill",
        "body": "When the user asks about their bills, account balances, or whether they can afford something, use the bash tool to call the Bill Tracker API."
      },
      {
        "title": "Required environment",
        "body": "BILL_TRACKER_URL - Base URL (e.g. https://your-server.com or http://localhost:1337)\nBILL_TRACKER_SESSION_TOKEN - Session token for authentication (obtained once via POST /api/mcp/token)"
      },
      {
        "title": "Getting a session token",
        "body": "Bill Tracker uses magic-link auth (no passwords). Two steps:\n\nRequest a verification code (sent to email):\n\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -d '{\"email\":\"user@example.com\"}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/request-code\"\n\nExchange the code from your email for a session token:\n\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -d '{\"code\":\"123456\"}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/token\"\n\nStore the returned sessionToken in BILL_TRACKER_SESSION_TOKEN. Tokens are long-lived; no need to re-verify on every request. (Codes expire in 10 minutes.)"
      },
      {
        "title": "1. Upcoming transactions (bills and income due soon)",
        "body": "POST ${BILL_TRACKER_URL}/api/mcp/upcoming-transactions\nX-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}\nBody: { \"days\": 3 }\n\nDefault days is 3. Increase for a longer window (e.g. days=7)."
      },
      {
        "title": "2. Account balances",
        "body": "POST ${BILL_TRACKER_URL}/api/mcp/account-balances\nX-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}\n\nReturns each account with name, type, balance, and a totalBalance (cash minus debt)."
      },
      {
        "title": "3. Can I afford X?",
        "body": "POST ${BILL_TRACKER_URL}/api/mcp/can-afford\nX-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}\nBody: { \"amount\": 500, \"horizonDays\": 90 }\n\nReplace 500 with the amount in dollars. horizonDays defaults to 90.\n\nReturns either canAfford: true with the date they can afford it, or canAfford: false with a message."
      },
      {
        "title": "How to call",
        "body": "Use curl with POST. Pass X-Parse-Session-Token (or Authorization: Bearer $BILL_TRACKER_SESSION_TOKEN) for authentication. The token identifies the user—no email or password needed. Parse the JSON response and summarize clearly for the user.\n\nExample (upcoming transactions):\n\ncurl -s -X POST -H \"X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"days\": 3}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/upcoming-transactions\"\n\nExample (account balances):\n\ncurl -s -X POST -H \"X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/account-balances\"\n\nExample (can afford):\n\ncurl -s -X POST -H \"X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"amount\": 500}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/can-afford\""
      }
    ],
    "body": "Bill Tracker Skill\n\nWhen the user asks about their bills, account balances, or whether they can afford something, use the bash tool to call the Bill Tracker API.\n\nRequired environment\nBILL_TRACKER_URL - Base URL (e.g. https://your-server.com or http://localhost:1337)\nBILL_TRACKER_SESSION_TOKEN - Session token for authentication (obtained once via POST /api/mcp/token)\nGetting a session token\n\nBill Tracker uses magic-link auth (no passwords). Two steps:\n\nRequest a verification code (sent to email):\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -d '{\"email\":\"user@example.com\"}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/request-code\"\n\nExchange the code from your email for a session token:\ncurl -s -X POST -H \"Content-Type: application/json\" \\\n  -d '{\"code\":\"123456\"}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/token\"\n\n\nStore the returned sessionToken in BILL_TRACKER_SESSION_TOKEN. Tokens are long-lived; no need to re-verify on every request. (Codes expire in 10 minutes.)\n\nEndpoints\n1. Upcoming transactions (bills and income due soon)\nPOST ${BILL_TRACKER_URL}/api/mcp/upcoming-transactions\nX-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}\nBody: { \"days\": 3 }\n\n\nDefault days is 3. Increase for a longer window (e.g. days=7).\n\n2. Account balances\nPOST ${BILL_TRACKER_URL}/api/mcp/account-balances\nX-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}\n\n\nReturns each account with name, type, balance, and a totalBalance (cash minus debt).\n\n3. Can I afford X?\nPOST ${BILL_TRACKER_URL}/api/mcp/can-afford\nX-Parse-Session-Token: ${BILL_TRACKER_SESSION_TOKEN}\nBody: { \"amount\": 500, \"horizonDays\": 90 }\n\n\nReplace 500 with the amount in dollars. horizonDays defaults to 90.\n\nReturns either canAfford: true with the date they can afford it, or canAfford: false with a message.\n\nHow to call\n\nUse curl with POST. Pass X-Parse-Session-Token (or Authorization: Bearer $BILL_TRACKER_SESSION_TOKEN) for authentication. The token identifies the user—no email or password needed. Parse the JSON response and summarize clearly for the user.\n\nExample (upcoming transactions):\n\ncurl -s -X POST -H \"X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"days\": 3}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/upcoming-transactions\"\n\n\nExample (account balances):\n\ncurl -s -X POST -H \"X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/account-balances\"\n\n\nExample (can afford):\n\ncurl -s -X POST -H \"X-Parse-Session-Token: $BILL_TRACKER_SESSION_TOKEN\" -H \"Content-Type: application/json\" \\\n  -d '{\"amount\": 500}' \\\n  \"${BILL_TRACKER_URL}/api/mcp/can-afford\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/danielsimons1/bill-tracker",
    "publisherUrl": "https://clawhub.ai/danielsimons1/bill-tracker",
    "owner": "danielsimons1",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bill-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/bill-tracker",
    "agentUrl": "https://openagent3.xyz/skills/bill-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bill-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bill-tracker/agent.md"
  }
}