# Send Openclaw Skill Minimax 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-skill-minimax-tracker",
    "name": "Openclaw Skill Minimax Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/QiaoTuCodes/openclaw-skill-minimax-tracker",
    "canonicalUrl": "https://clawhub.ai/QiaoTuCodes/openclaw-skill-minimax-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-skill-minimax-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-minimax-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README-CN.md",
      "README.md",
      "SKILL.md",
      "minimax_tracker.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/openclaw-skill-minimax-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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-skill-minimax-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-skill-minimax-tracker",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-skill-minimax-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-skill-minimax-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-skill-minimax-tracker/agent.md"
  }
}
```
## Documentation

### Skill Information

Skill Name: openclaw-skill-minimax-tracker
Version: 1.0.0
Author: QiaoTuCodes (Weiran), Yanyan
Description: Track and monitor MiniMax API usage with progress bars and reminders for OpenClaw
Repository: https://github.com/QiaoTuCodes/openclaw-skill-minimax-tracker

### Overview

This skill provides real-time tracking for MiniMax API usage. It calculates usage based on prompts consumed, tracks remaining quota, and displays progress in a compact bar format. Designed for OpenClaw agents to monitor API usage between resets.

### Features

Real-time prompts usage tracking
Visual progress bar with key metrics (RST/TTL/PKG/USE/REM/NXT)
Automatic reset time calculation (15:00-20:00 UTC+8)
JSON-based persistent storage
Cron-ready for scheduled reminders

### Commands

# Add usage (after API call)
python3 minimax_tracker.py add [n]

# View detailed status
python3 minimax_tracker.py status

# View compact progress bar
python3 minimax_tracker.py compact

### Output Format

[████████████████████] 98% RST:18:00 TTL:1h40m PKG:Starter USE:2/40 REM:38 NXT:19:19

### Integration with OpenClaw

# In your skill or agent code
import subprocess

# Track usage after each API call
result = subprocess.run(
    ["python3", "path/to/minimax_tracker.py", "add", "1"],
    capture_output=True, text=True
)

### Cron Setup (Every 3 Hours)

{
  "name": "minimax-usage-check",
  "schedule": "0 */3 * * *",
  "payload": {
    "kind": "agentTurn",
    "message": "Run: python3 ~/openclaw-workspace/skills/openclaw-skill-minimax-tracker/minimax_tracker.py compact"
  }
}

### Configuration

Edit the CONFIG dict in minimax_tracker.py:

ParameterDefaultDescriptionmax_prompts40Monthly prompts limitreset_hour_start15Reset window start (UTC+8)reset_hour_end20Reset window end (UTC+8)check_interval_hours3Reminder interval

### Data Storage

Usage data is stored in:

~/.openclaw/workspace/minimax_usage_data.json

Format:

{
  "usage_records": [
    {"time": "2026-02-27T16:19:00", "prompts": 1}
  ],
  "current_usage": 2,
  "last_reset": "2026-02-27T18:00:00",
  "last_check": "2026-02-27T16:23:00"
}

### Dependencies

Python 3.8+ (standard library only, no pip packages needed)

### Installation

# Copy to OpenClaw skills folder
cp -r openclaw-skill-minimax-tracker ~/openclaw-workspace/skills/

### License

MIT License - See LICENSE file
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: QiaoTuCodes
- Version: 0.1.0
## 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-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-skill-minimax-tracker)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-skill-minimax-tracker/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-skill-minimax-tracker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-skill-minimax-tracker/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-skill-minimax-tracker)