minimax-token-plan-quota

Check MiniMax Token Plan remaining quota, usage window reset time, and per-model remaining limits, especially for the China mainland Token Plan flow on minimaxi.com. Use when the user asks things like “MiniMax 还有多少额度”, “查一下 minimax 订阅剩余额度”, “看看 Token Plan 还剩多少”, or wants a compact quota table for MiniMax Token Plan.

3,891 stars

Best use case

minimax-token-plan-quota is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Check MiniMax Token Plan remaining quota, usage window reset time, and per-model remaining limits, especially for the China mainland Token Plan flow on minimaxi.com. Use when the user asks things like “MiniMax 还有多少额度”, “查一下 minimax 订阅剩余额度”, “看看 Token Plan 还剩多少”, or wants a compact quota table for MiniMax Token Plan.

Teams using minimax-token-plan-quota should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/minimax-token-plan-quota/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/alex-shen1121/minimax-token-plan-quota/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/minimax-token-plan-quota/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How minimax-token-plan-quota Compares

Feature / Agentminimax-token-plan-quotaStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Check MiniMax Token Plan remaining quota, usage window reset time, and per-model remaining limits, especially for the China mainland Token Plan flow on minimaxi.com. Use when the user asks things like “MiniMax 还有多少额度”, “查一下 minimax 订阅剩余额度”, “看看 Token Plan 还剩多少”, or wants a compact quota table for MiniMax Token Plan.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# MiniMax Token Plan Quota

Use this skill to query **MiniMax Token Plan remaining quota**.

## Default behavior

- Default to the **China mainland** endpoint on `www.minimaxi.com`
- Return a compact **table** with:
  - 项目
  - 周期
  - 总额度
  - 剩余额度
  - 重置剩余时间

## Important rule

Interpret the `/coding_plan/remains` response as **remaining quota**, not consumed quota.

The script maps:
- `current_interval_total_count` → 当前周期总额度
- `current_interval_usage_count` → 当前周期剩余额度
- `current_weekly_total_count` → 本周总额度
- `current_weekly_usage_count` → 本周剩余额度

Do not flip those meanings unless MiniMax docs change.

## Secret handling

- Prefer `MINIMAX_API_KEY` from env
- If env is absent, the bundled script will also try `~/.openclaw/.env`
- You may pass `--api-key` for one-off manual runs
- If the user pasted a key in the current conversation, use it transiently for the current task only
- Do **not** store MiniMax API keys in workspace memory, skill files, or long-term notes
- If `~/.openclaw/.env` is missing or lacks `MINIMAX_API_KEY`, guide the user to add:

```bash
mkdir -p ~/.openclaw
printf "MINIMAX_API_KEY=你的key\n" > ~/.openclaw/.env
```

## Commands

### China mainland Token Plan quota

```bash
MINIMAX_API_KEY='...' python3 scripts/check_token_plan_quota.py --region cn
```

Or rely on `~/.openclaw/.env`:

```bash
python3 scripts/check_token_plan_quota.py --region cn
```

### Global endpoint

```bash
MINIMAX_API_KEY='...' python3 scripts/check_token_plan_quota.py --region global
```

### JSON output

```bash
MINIMAX_API_KEY='...' python3 scripts/check_token_plan_quota.py --region cn --json
```

## Output style for user replies

Default to the markdown table only when the user asks for a concise result.

Example:

```markdown
| 项目 | 周期 | 总额度 | 剩余额度 | 重置剩余时间 |
|---|---|---:|---:|---|
| MiniMax-M* | 当前周期 | 1500 | 1500 | 4小时26分钟 |
```

If some models show total quota `0`, explain briefly only when needed:
- 当前套餐未开通
- 或该 key 不包含此能力

## Resource

### `scripts/check_token_plan_quota.py`

Queries the MiniMax Token Plan quota endpoint and prints either:
- a compact markdown table
- or normalized JSON

Related Skills

FP&A Command Center — Financial Planning & Analysis Engine

3891
from openclaw/skills

You are a senior FP&A professional. You build financial models, run variance analysis, produce board-ready reports, and turn raw numbers into strategic decisions. You work with whatever data the user provides — spreadsheets, CSV, pasted numbers, or verbal estimates.

Finance & Analytics

Exit Strategy & Business Valuation Planner

3891
from openclaw/skills

You are an M&A and exit planning advisor. Help founders and business owners build a structured exit strategy — whether they're planning an acquisition, IPO, management buyout, or orderly wind-down.

Business Strategy & Growth

Event Planner Pro

3891
from openclaw/skills

Plan, execute, and measure business events — conferences, webinars, workshops, product launches, networking events, trade shows, and corporate gatherings. Complete event lifecycle from concept to post-event ROI analysis.

Workflow & Productivity

IT Disaster Recovery Plan Generator

3891
from openclaw/skills

Build production-ready disaster recovery plans that actually get followed when things break.

DevOps & Infrastructure

Data Migration Planner

3891
from openclaw/skills

Plan, execute, and validate data migrations between systems. Covers schema mapping, ETL pipeline design, rollback strategies, and post-migration validation.

Workflow & Productivity

Compensation & Salary Benchmarking Planner

3891
from openclaw/skills

Build data-driven compensation structures that attract talent without overpaying. Covers base salary bands, equity/bonus frameworks, geographic differentials, and total rewards packaging.

HR & Compensation Management

Change Management Planner

3891
from openclaw/skills

Plan, communicate, and execute organizational change with structured frameworks. Covers technology rollouts, process changes, restructuring, and cultural shifts.

Workflow & Productivity

Capacity Planner

3891
from openclaw/skills

Plan team and infrastructure capacity before it becomes a crisis.

Workflow & Productivity

Business Continuity Planner

3891
from openclaw/skills

Build a complete Business Continuity Plan (BCP) and Disaster Recovery (DR) strategy for any organization.

Business Continuity & DR

Budget Planner

3891
from openclaw/skills

Plan and track budgets using your AI agent. Works for personal finance, project budgets, or department spending.

Workflow & Productivity

promotion-planning

3891
from openclaw/skills

Develop promotion strategies and discount recommendations based on historical data analysis

Sales & Marketing Strategy

bcp-plan

3891
from openclaw/skills

Comprehensive business continuity planning including emergency plans, critical alternatives, drill scripts, and recovery procedures. Covers risk assessment, continuity strategies, crisis management, and organizational resilience for operational preparedness.

Workflow & Productivity