# Send Beaver Habit 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": "beaverhabits",
    "name": "Beaver Habit Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/daya0576/beaverhabits",
    "canonicalUrl": "https://clawhub.ai/daya0576/beaverhabits",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/beaverhabits",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=beaverhabits",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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/beaverhabits"
    },
    "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/beaverhabits",
    "downloadUrl": "https://openagent3.xyz/downloads/beaverhabits",
    "agentUrl": "https://openagent3.xyz/skills/beaverhabits/agent",
    "manifestUrl": "https://openagent3.xyz/skills/beaverhabits/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/beaverhabits/agent.md"
  }
}
```
## Documentation

### Beaver Habit Tracker

Track and manage your daily habits using the Beaver Habit Tracker API.

API documentation: https://beaverhabits.com/docs

### Environment Variables

VariableRequiredDefaultDescriptionBEAVERHABITS_API_KEYYes—Your permanent API token from the Beaver Habits settings pageSERVER_URLNohttps://beaverhabits.comYour Beaver Habits server URL (for self-hosted instances)

### Getting Your API Key

Log in to your Beaver Habits instance
Open the menu → Tools → API Tokens
Click "Generate API Token"
Copy the token and set it as BEAVERHABITS_API_KEY

### list_habits (overview)

List all habits and show a weekly ASCII overview. This is the default response for any habit-related query.

Step 1 — Get all habits:

curl -s -H "Authorization: Bearer $BEAVERHABITS_API_KEY" \\
  "${SERVER_URL:-https://beaverhabits.com}/api/v1/habits"

Step 2 — For each habit, get completions over the last 5 days:

curl -s -H "Authorization: Bearer $BEAVERHABITS_API_KEY" \\
  "${SERVER_URL:-https://beaverhabits.com}/api/v1/habits/{habit_id}/completions?date_fmt=%25d-%25m-%25Y&date_start={start}&date_end={end}&limit=100&sort=asc"

Response format: ["16-02-2026", "18-02-2026"] (array of completed date strings)

Step 3 — Render as ASCII table:

Example output:

Mon   Tue   Wed   Thu   Fri   
Exercise       ✗     ✗     ✗     ✗     ✗     
English        ✓     ✗     ✗     ✗     ✗     
paipai         ✗     ✗     ✗     ✗     ✓     
Reading        ✗     ✗     ✗     ✗     ✗     
Table Tennis   ✗     ✗     ✗     ✗     ✗

Use ✓ for done, ✗ for not done. Default to 5 days ending today. Emoji are stripped from habit names for proper alignment.

### complete_habit

Mark a habit as done (or undone) for a specific date.

Parameters:

habit_id (resolved): Automatically resolved by calling list_habits and matching the user's habit name. Never ask the user for this value.
date (required): Date in DD-MM-YYYY format
done (optional): true to complete, false to uncomplete (default: true)

curl -s -X POST \\
  -H "Authorization: Bearer $BEAVERHABITS_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"date": "20-02-2026", "done": true, "date_fmt": "%d-%m-%Y"}' \\
  "${SERVER_URL:-https://beaverhabits.com}/api/v1/habits/{habit_id}/completions"

Response: {"day": "20-02-2026", "done": true}

### Usage Instructions

When the user asks to list, show, or check habits, always respond with the ASCII overview table (not a plain list).
After completing or uncompleting a habit, always re-render the overview table to show the updated state.
Resolve habit names → IDs via list_habits. Never ask the user for a habit_id.
Default to today's date for completions unless specified. Use date_fmt=%d-%m-%Y.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: daya0576
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/beaverhabits)
- [Send to Agent page](https://openagent3.xyz/skills/beaverhabits/agent)
- [JSON manifest](https://openagent3.xyz/skills/beaverhabits/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/beaverhabits/agent.md)
- [Download page](https://openagent3.xyz/downloads/beaverhabits)