{
  "schemaVersion": "1.0",
  "item": {
    "slug": "wallet-api",
    "name": "Wallet (By Budgetbakers)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/andresubri/wallet-api",
    "canonicalUrl": "https://clawhub.ai/andresubri/wallet-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/wallet-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wallet-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/wallet-api.sh",
      "references/api-reference.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",
      "slug": "wallet-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T19:25:11.806Z",
      "expiresAt": "2026-05-17T19:25:11.806Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wallet-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wallet-api",
        "contentDisposition": "attachment; filename=\"wallet-api-0.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "wallet-api"
      },
      "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/wallet-api"
    },
    "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/wallet-api",
    "agentPageUrl": "https://openagent3.xyz/skills/wallet-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wallet-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wallet-api/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": "Wallet API Skill",
        "body": "Interact with the BudgetBakers Wallet personal finance API."
      },
      {
        "title": "Prerequisites",
        "body": "Premium Wallet plan required for API access\nAPI Token from web.budgetbakers.com/settings/apiTokens\nSet WALLET_API_TOKEN environment variable"
      },
      {
        "title": "Quick Start",
        "body": "export WALLET_API_TOKEN=\"your_token_here\"\n./scripts/wallet-api.sh me"
      },
      {
        "title": "API Reference",
        "body": "See references/api-reference.md for:\n\nAuthentication details\nRate limiting (500 req/hour)\nQuery filter syntax (text and range filters)\nPagination parameters\nData synchronization behavior\nAgent hints"
      },
      {
        "title": "Available Commands",
        "body": "CommandDescriptionmeCurrent user infoaccountsList accountscategoriesList categoriesrecordsList transactionsbudgetsList budgetstemplatesList templates"
      },
      {
        "title": "Query Parameters",
        "body": "All list endpoints support:\n\nlimit (default 30, max 100)\noffset (default 0)"
      },
      {
        "title": "Filter Examples",
        "body": "Recent transactions:\n\n./wallet-api.sh records \"recordDate=gte.2025-02-01&limit=50\"\n\nAmount range:\n\n./wallet-api.sh records \"amount=gte.100&amount=lte.500\"\n\nText search:\n\n./wallet-api.sh records \"note=contains-i.grocery\"\n\nCategory + date:\n\n./wallet-api.sh records \"categoryId=eq.<id>&recordDate=gte.2025-01-01\""
      },
      {
        "title": "Filter Prefixes",
        "body": "PrefixMeaningeq.Exact matchcontains.Contains (case-sensitive)contains-i.Contains (case-insensitive)gt.Greater thangte.Greater than or equallt.Less thanlte.Less than or equal"
      },
      {
        "title": "Get Account Balances",
        "body": "./wallet-api.sh accounts"
      },
      {
        "title": "List Categories for Organization",
        "body": "./wallet-api.sh categories"
      },
      {
        "title": "Recent Spending",
        "body": "./wallet-api.sh records \"recordDate=gte.2025-02-01&limit=100\""
      },
      {
        "title": "Filter by Payee",
        "body": "./wallet-api.sh records \"payee=contains-i.amazon\""
      },
      {
        "title": "Data Sync Considerations",
        "body": "Initial sync returns 409 Conflict — wait and retry\nRecent app changes may not appear immediately\nCheck X-Last-Data-Change-At header for freshness"
      },
      {
        "title": "Rate Limit Handling",
        "body": "Watch for:\n\n429 Too Many Requests when exceeding 500/hour\nX-RateLimit-Remaining header\nAdd agentHints=true for rate limit warnings"
      }
    ],
    "body": "Wallet API Skill\n\nInteract with the BudgetBakers Wallet personal finance API.\n\nPrerequisites\nPremium Wallet plan required for API access\nAPI Token from web.budgetbakers.com/settings/apiTokens\nSet WALLET_API_TOKEN environment variable\nQuick Start\nexport WALLET_API_TOKEN=\"your_token_here\"\n./scripts/wallet-api.sh me\n\nAPI Reference\n\nSee references/api-reference.md for:\n\nAuthentication details\nRate limiting (500 req/hour)\nQuery filter syntax (text and range filters)\nPagination parameters\nData synchronization behavior\nAgent hints\nAvailable Commands\nCommand\tDescription\nme\tCurrent user info\naccounts\tList accounts\ncategories\tList categories\nrecords\tList transactions\nbudgets\tList budgets\ntemplates\tList templates\nQuery Parameters\n\nAll list endpoints support:\n\nlimit (default 30, max 100)\noffset (default 0)\nFilter Examples\n\nRecent transactions:\n\n./wallet-api.sh records \"recordDate=gte.2025-02-01&limit=50\"\n\n\nAmount range:\n\n./wallet-api.sh records \"amount=gte.100&amount=lte.500\"\n\n\nText search:\n\n./wallet-api.sh records \"note=contains-i.grocery\"\n\n\nCategory + date:\n\n./wallet-api.sh records \"categoryId=eq.<id>&recordDate=gte.2025-01-01\"\n\nFilter Prefixes\nPrefix\tMeaning\neq.\tExact match\ncontains.\tContains (case-sensitive)\ncontains-i.\tContains (case-insensitive)\ngt.\tGreater than\ngte.\tGreater than or equal\nlt.\tLess than\nlte.\tLess than or equal\nCommon Workflows\nGet Account Balances\n./wallet-api.sh accounts\n\nList Categories for Organization\n./wallet-api.sh categories\n\nRecent Spending\n./wallet-api.sh records \"recordDate=gte.2025-02-01&limit=100\"\n\nFilter by Payee\n./wallet-api.sh records \"payee=contains-i.amazon\"\n\nData Sync Considerations\nInitial sync returns 409 Conflict — wait and retry\nRecent app changes may not appear immediately\nCheck X-Last-Data-Change-At header for freshness\nRate Limit Handling\n\nWatch for:\n\n429 Too Many Requests when exceeding 500/hour\nX-RateLimit-Remaining header\nAdd agentHints=true for rate limit warnings"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/andresubri/wallet-api",
    "publisherUrl": "https://clawhub.ai/andresubri/wallet-api",
    "owner": "andresubri",
    "version": "0.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/wallet-api",
    "downloadUrl": "https://openagent3.xyz/downloads/wallet-api",
    "agentUrl": "https://openagent3.xyz/skills/wallet-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wallet-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wallet-api/agent.md"
  }
}