{
  "schemaVersion": "1.0",
  "item": {
    "slug": "minimax-usage-2",
    "name": "Minimax Usage",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/khaney64/minimax-usage-2",
    "canonicalUrl": "https://clawhub.ai/khaney64/minimax-usage-2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/minimax-usage-2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-usage-2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/minimax-usage.sh"
    ],
    "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": "minimax-usage-2",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T16:00:35.036Z",
      "expiresAt": "2026-05-12T16:00:35.036Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-usage-2",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=minimax-usage-2",
        "contentDisposition": "attachment; filename=\"minimax-usage-2-0.1.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "minimax-usage-2"
      },
      "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/minimax-usage-2"
    },
    "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/minimax-usage-2",
    "agentPageUrl": "https://openagent3.xyz/skills/minimax-usage-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/minimax-usage-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/minimax-usage-2/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": "MiniMax Usage",
        "body": "Check your MiniMax coding plan credits remaining."
      },
      {
        "title": "Usage",
        "body": "# Check remaining credits\nminimax-usage.sh\n\n# Only alert when remaining drops below 20%\nminimax-usage.sh --threshold 20"
      },
      {
        "title": "Options",
        "body": "FlagDescription--threshold <percent>Only output when remaining % is below this value. If omitted, always outputs."
      },
      {
        "title": "Output",
        "body": "Returns a Discord-formatted message:\n\nTitle with model name (warning icon when below threshold)\nRemaining requests out of total with percentage\nReset time in Eastern Time\nTime left in H:MM:SS"
      },
      {
        "title": "Example: Below threshold alert",
        "body": "When remaining usage falls below the configured threshold:\n\n⚠️ MiniMax Usage Alert — MiniMax-M1\nRemaining: 42 of 500 requests (8.4%)\nResets: Feb 17, 2026 12:00 AM ET\nTime left: 7:23:15\n\nWhen above the threshold, the command produces no output and exits with code 0."
      },
      {
        "title": "Cron Job",
        "body": "The --threshold flag makes this ideal for a cron job that runs periodically and only sends an alert when available credits drop below a percentage:\n\n# Check every 30 minutes, alert if below 20%\n# Requires MINIMAX_API_KEY to be set in the cron environment\n*/30 * * * * minimax-usage.sh --threshold 20 | discord-webhook\n\nNo output is produced when usage is above the threshold, so downstream commands (e.g. a webhook) are only triggered when credits are running low."
      }
    ],
    "body": "MiniMax Usage\n\nCheck your MiniMax coding plan credits remaining.\n\nUsage\n# Check remaining credits\nminimax-usage.sh\n\n# Only alert when remaining drops below 20%\nminimax-usage.sh --threshold 20\n\nOptions\nFlag\tDescription\n--threshold <percent>\tOnly output when remaining % is below this value. If omitted, always outputs.\nOutput\n\nReturns a Discord-formatted message:\n\nTitle with model name (warning icon when below threshold)\nRemaining requests out of total with percentage\nReset time in Eastern Time\nTime left in H:MM:SS\nExample: Below threshold alert\n\nWhen remaining usage falls below the configured threshold:\n\n⚠️ MiniMax Usage Alert — MiniMax-M1\nRemaining: 42 of 500 requests (8.4%)\nResets: Feb 17, 2026 12:00 AM ET\nTime left: 7:23:15\n\n\nWhen above the threshold, the command produces no output and exits with code 0.\n\nCron Job\n\nThe --threshold flag makes this ideal for a cron job that runs periodically and only sends an alert when available credits drop below a percentage:\n\n# Check every 30 minutes, alert if below 20%\n# Requires MINIMAX_API_KEY to be set in the cron environment\n*/30 * * * * minimax-usage.sh --threshold 20 | discord-webhook\n\n\nNo output is produced when usage is above the threshold, so downstream commands (e.g. a webhook) are only triggered when credits are running low."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/khaney64/minimax-usage-2",
    "publisherUrl": "https://clawhub.ai/khaney64/minimax-usage-2",
    "owner": "khaney64",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/minimax-usage-2",
    "downloadUrl": "https://openagent3.xyz/downloads/minimax-usage-2",
    "agentUrl": "https://openagent3.xyz/skills/minimax-usage-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/minimax-usage-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/minimax-usage-2/agent.md"
  }
}