{
  "schemaVersion": "1.0",
  "item": {
    "slug": "beeminder",
    "name": "Beeminder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ruigomeseu/beeminder",
    "canonicalUrl": "https://clawhub.ai/ruigomeseu/beeminder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/beeminder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=beeminder",
    "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",
      "slug": "beeminder",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T12:17:13.411Z",
      "expiresAt": "2026-05-07T12:17:13.411Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=beeminder",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=beeminder",
        "contentDisposition": "attachment; filename=\"beeminder-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "beeminder"
      },
      "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/beeminder"
    },
    "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/beeminder",
    "agentPageUrl": "https://openagent3.xyz/skills/beeminder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/beeminder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/beeminder/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": "Beeminder API",
        "body": "Direct REST API access to Beeminder. No CLI dependencies."
      },
      {
        "title": "Setup",
        "body": "Set two env vars:\n\nBEEMINDER_USERNAME - Beeminder username\nBEEMINDER_AUTH_TOKEN - personal auth token from https://www.beeminder.com/api/v1/auth_token.json (requires login)\n\nAll examples use:\n\nBASE=\"https://www.beeminder.com/api/v1/users/$BEEMINDER_USERNAME\""
      },
      {
        "title": "List all goals",
        "body": "curl -s \"$BASE/goals.json?auth_token=$BEEMINDER_AUTH_TOKEN\" | jq '[.[] | {slug, safebuf, baremin, limsum}]'"
      },
      {
        "title": "Get single goal",
        "body": "curl -s \"$BASE/goals/GOAL.json?auth_token=$BEEMINDER_AUTH_TOKEN\"\n\nKey fields:\n\nslug - goal identifier\nsafebuf - days of safety buffer (0 = due today, negative = in the red)\nbaremin - minimum needed today to stay on track\nlimsum - human-readable summary (e.g. \"+1 due in 2 days\")\nlosedate - unix timestamp of derail date\nrate - commitment rate\nrunits - rate units (d/w/m/y)\nheadsum - summary of current status\ngoalval - end goal value (null if no end goal)\ngunits - goal units (e.g. \"hours\", \"pages\")"
      },
      {
        "title": "Goals due today",
        "body": "curl -s \"$BASE/goals.json?auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  | jq '[.[] | select(.safebuf <= 0)] | sort_by(.losedate) | .[] | {slug, baremin, limsum}'"
      },
      {
        "title": "Goals due within N days",
        "body": "curl -s \"$BASE/goals.json?auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  | jq --arg cutoff \"$(date -d '+2 days' +%s)\" \\\n    '[.[] | select(.losedate <= ($cutoff | tonumber))] | sort_by(.losedate) | .[] | {slug, baremin, limsum}'"
      },
      {
        "title": "Add datapoint",
        "body": "curl -s -X POST \"$BASE/goals/GOAL/datapoints.json\" \\\n  -d \"auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  -d \"value=N\" \\\n  -d \"comment=TEXT\"\n\nOptional: -d \"requestid=UNIQUE_ID\" for idempotent retries (safe to repeat without duplicating)."
      },
      {
        "title": "Get recent datapoints",
        "body": "curl -s \"$BASE/goals/GOAL/datapoints.json?auth_token=$BEEMINDER_AUTH_TOKEN&count=5&sort=daystamp\""
      },
      {
        "title": "Update datapoint",
        "body": "curl -s -X PUT \"$BASE/goals/GOAL/datapoints/DATAPOINT_ID.json\" \\\n  -d \"auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  -d \"value=N\" \\\n  -d \"comment=TEXT\""
      },
      {
        "title": "Delete datapoint",
        "body": "curl -s -X DELETE \"$BASE/goals/GOAL/datapoints/DATAPOINT_ID.json?auth_token=$BEEMINDER_AUTH_TOKEN\""
      },
      {
        "title": "Check and report what's due",
        "body": "curl -s \"$BASE/goals.json?auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  | jq '[.[] | select(.safebuf <= 1)] | sort_by(.safebuf) | .[] | {slug, baremin, limsum, safebuf}'"
      },
      {
        "title": "Add with idempotent retry",
        "body": "curl -s -X POST \"$BASE/goals/GOAL/datapoints.json\" \\\n  -d \"auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  -d \"value=1\" \\\n  -d \"comment=done\" \\\n  -d \"requestid=GOAL-$(date +%Y%m%d)\""
      },
      {
        "title": "Notes",
        "body": "Base URL must be exactly https://www.beeminder.com/api/v1/ (https, www required)\nAll responses are JSON\nUse jq to parse responses\nDaystamps use YYYYMMDD format\nTimestamps are unix epoch seconds"
      }
    ],
    "body": "Beeminder API\n\nDirect REST API access to Beeminder. No CLI dependencies.\n\nSetup\n\nSet two env vars:\n\nBEEMINDER_USERNAME - Beeminder username\nBEEMINDER_AUTH_TOKEN - personal auth token from https://www.beeminder.com/api/v1/auth_token.json (requires login)\n\nAll examples use:\n\nBASE=\"https://www.beeminder.com/api/v1/users/$BEEMINDER_USERNAME\"\n\nGoals\nList all goals\ncurl -s \"$BASE/goals.json?auth_token=$BEEMINDER_AUTH_TOKEN\" | jq '[.[] | {slug, safebuf, baremin, limsum}]'\n\nGet single goal\ncurl -s \"$BASE/goals/GOAL.json?auth_token=$BEEMINDER_AUTH_TOKEN\"\n\n\nKey fields:\n\nslug - goal identifier\nsafebuf - days of safety buffer (0 = due today, negative = in the red)\nbaremin - minimum needed today to stay on track\nlimsum - human-readable summary (e.g. \"+1 due in 2 days\")\nlosedate - unix timestamp of derail date\nrate - commitment rate\nrunits - rate units (d/w/m/y)\nheadsum - summary of current status\ngoalval - end goal value (null if no end goal)\ngunits - goal units (e.g. \"hours\", \"pages\")\nGoals due today\ncurl -s \"$BASE/goals.json?auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  | jq '[.[] | select(.safebuf <= 0)] | sort_by(.losedate) | .[] | {slug, baremin, limsum}'\n\nGoals due within N days\ncurl -s \"$BASE/goals.json?auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  | jq --arg cutoff \"$(date -d '+2 days' +%s)\" \\\n    '[.[] | select(.losedate <= ($cutoff | tonumber))] | sort_by(.losedate) | .[] | {slug, baremin, limsum}'\n\nDatapoints\nAdd datapoint\ncurl -s -X POST \"$BASE/goals/GOAL/datapoints.json\" \\\n  -d \"auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  -d \"value=N\" \\\n  -d \"comment=TEXT\"\n\n\nOptional: -d \"requestid=UNIQUE_ID\" for idempotent retries (safe to repeat without duplicating).\n\nGet recent datapoints\ncurl -s \"$BASE/goals/GOAL/datapoints.json?auth_token=$BEEMINDER_AUTH_TOKEN&count=5&sort=daystamp\"\n\nUpdate datapoint\ncurl -s -X PUT \"$BASE/goals/GOAL/datapoints/DATAPOINT_ID.json\" \\\n  -d \"auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  -d \"value=N\" \\\n  -d \"comment=TEXT\"\n\nDelete datapoint\ncurl -s -X DELETE \"$BASE/goals/GOAL/datapoints/DATAPOINT_ID.json?auth_token=$BEEMINDER_AUTH_TOKEN\"\n\nCommon Patterns\nCheck and report what's due\ncurl -s \"$BASE/goals.json?auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  | jq '[.[] | select(.safebuf <= 1)] | sort_by(.safebuf) | .[] | {slug, baremin, limsum, safebuf}'\n\nAdd with idempotent retry\ncurl -s -X POST \"$BASE/goals/GOAL/datapoints.json\" \\\n  -d \"auth_token=$BEEMINDER_AUTH_TOKEN\" \\\n  -d \"value=1\" \\\n  -d \"comment=done\" \\\n  -d \"requestid=GOAL-$(date +%Y%m%d)\"\n\nNotes\nBase URL must be exactly https://www.beeminder.com/api/v1/ (https, www required)\nAll responses are JSON\nUse jq to parse responses\nDaystamps use YYYYMMDD format\nTimestamps are unix epoch seconds"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ruigomeseu/beeminder",
    "publisherUrl": "https://clawhub.ai/ruigomeseu/beeminder",
    "owner": "ruigomeseu",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/beeminder",
    "downloadUrl": "https://openagent3.xyz/downloads/beeminder",
    "agentUrl": "https://openagent3.xyz/skills/beeminder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/beeminder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/beeminder/agent.md"
  }
}