Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

minimax-token-plan-tool极小极大代币计划工具

Agent Skill

minimax-token-plan-tool 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

27,989

周安装

1,190

GitHub Stars

公开资料未说明

下载量

9,806
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:minimax-token-plan-tool(极小极大代币计划工具)
来源仓库:https://github.com/yorch233/minimax-token-plan-tool
安装命令:
openclaw skills install minimax-token-plan-tool
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install minimax-token-plan-tool

简介

轻量级 JavaScript 实现的 MiniMax Token Plan 直接调用工具。

  • 无需外部 MCP 服务器即可独立完成 API 交互操作。
  • 适用于快速集成与调试场景下的最小化依赖方案。
  • 所有逻辑均在客户端执行,降低服务端复杂度。minimax-token-plan-tool 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前请确保 Node.js 环境满足最低版本要求。

SKILL.md

name
minimax-token-plan-tool
description
A lightweight MiniMax Token Plan Tool skill that directly calls official MCP APIs using pure JavaScript. No external MCP servers. No subprocess invocation. Designed for minimal overhead and fast integration within OpenClaw.
metadata
{"openclaw":{"emoji":"\�\�","requires":{"bins":["node"],"env":["MINIMAX_API_KEY", "MINIMAX_API_HOST"]},"primaryEnv":"MINIMAX_API_KEY"}}

MiniMax Token Plan Tool

Requires a Token Plan API Key Subscribe at: MInimax Token Plan (China Mainland) or MInimax Token Plan (Global)

A lightweight MiniMax Token Plan Tool skill that directly calls official APIs using pure JavaScript. No external MCP servers.

Designed for minimal overhead and fast integration within OpenClaw.


Features

This skill provides three native capabilities of MiniMax Token Plan:

1. minimax_web_search

Web search powered by MiniMax Token Plan API.

2. minimax_understand_image

Vision-language image understanding via MiniMax VLM.

3. minimax_token_plan_remains

Query remaining Token Plan usage and quota information.


Architecture

  • Pure JavaScript implementation
  • Direct HTTPS API calls
  • No MCP server runtime required
  • No external tool dependency
  • Minimal resource usage

Configuration

Default recommendation: put MINIMAX_API_KEY and MINIMAX_API_HOST in ~/.openclaw/.env.

# ~/.openclaw/.env
MINIMAX_API_KEY="sk-your-key"

# China Mainland
MINIMAX_API_HOST="https://api.minimaxi.com"

# or Global
MINIMAX_API_HOST="https://api.minimax.io"

OpenClaw can load these values as the default environment for this Skill. If you update ~/.openclaw/.env, restart OpenClaw or the gateway process if the new values are not picked up immediately. Only these two official hosts are supported.

Use a matching Token Plan key for the selected host:

Optional API Host

# China Mainland
export MINIMAX_API_HOST="https://api.minimaxi.com"

# or Global
export MINIMAX_API_HOST="https://api.minimax.io"

Only https://api.minimaxi.com and https://api.minimax.io are accepted. If MINIMAX_API_HOST is not set, the script defaults to https://api.minimaxi.com.


Tool Discovery

Execute minimax_token_plan_tool.js with environment variable MINIMAX_API_KEY and optional MINIMAX_API_HOST to dynamically register these tools:

node minimax_token_plan_tool.js tools

Output format:

{
  "tools": [
    {
      "name": "minimax_web_search",
      "description": "...",
      "inputSchema": { ... }
    },
    {
      "name": "minimax_understand_image",
      "description": "...",
      "inputSchema": { ... }
    },
    {
      "name": "minimax_token_plan_remains",
      "description": "...",
      "inputSchema": { ... }
    }
  ]
}

Tool 1 - minimax_web_search

Purpose

Real-time web search using MiniMax Token Plan search API.

CLI Invocation

node minimax_token_plan_tool.js web_search "<query>"

Example:

node minimax_token_plan_tool.js web_search "OpenAI GPT-5 release date"

Input Schema

{
  "query": "string"
}

Output Format

Success:

{
  "success": true,
  "query": "...",
  "results": [
    {
      "title": "...",
      "link": "...",
      "snippet": "...",
      "date": "..."
    }
  ],
  "related_searches": []
}

Error:

{
  "error": "error message"
}

Tool 2 - minimax_understand_image

Purpose

Image understanding using MiniMax Token Plan VLM API. Only mainstream image formats are supported (for example: JPEG/JPG, PNG, WebP, and GIF).

Supports:

  • HTTP / HTTPS image URLs
  • Local file paths
  • @localfile.jpg shorthand

Local files are automatically converted to base64 data URLs. Remote image URLs are fetched by this tool and then converted to data URLs before being sent to the MiniMax API. Remote image fetching is restricted to public HTTP/HTTPS targets and rejects localhost, private-network addresses, unsupported ports, and excessive redirects.

Security Notice

This tool requires outbound network access. If a local image is provided, its content is transmitted to the remote MiniMax API for processing, which introduces a potential risk of local image data leakage. Do not submit sensitive, private, or regulated images unless you fully accept this risk.

CLI Invocation

node minimax_token_plan_tool.js understand_image <image_source> "<prompt>"

Examples:

Remote image:

node minimax_token_plan_tool.js understand_image https://example.com/image.jpg "Describe this image"

Local image:

node minimax_token_plan_tool.js understand_image ./photo.png "What objects are visible?"

With @ prefix:

node minimax_token_plan_tool.js understand_image @photo.png "Summarize the scene"

Input Schema

{
  "image_source": "string",
  "prompt": "string"
}

Output Format

Success:

{
  "success": true,
  "prompt": "...",
  "image_source": "...",
  "analysis": "model response"
}

Error:

{
  "error": "error message"
}

Tool 3 - minimax_token_plan_remains

Purpose

Query remaining Token Plan usage through the MiniMax open platform remains endpoint.

CLI Invocation

node minimax_token_plan_tool.js remains

Input Schema

{}

Output Format

Success:

{
  "success": true,
  "remains": {
    "...": "provider response"
  }
}

Error:

{
  "error": "error message"
}

Note:

  • All times are in UTC+0. Convert them based on the user's local region.
  • For all models, MiniMax-M* uses a 5-hour period. Other generative models use a 1-day period.
  • remains_time and weekly_remains_time are formatted as DD:HH:MM:SS.
  • *_quota = 0 means the current Token Plan subscription does not include that model.

Official Recommendation

This Skill is a lightweight JavaScript implementation built on top of the official MiniMax APIs. For best compatibility and long-term support, the official MCP is recommended: MiniMax-Coding-Plan-MCP.

For speech synthesis, image generation, and video generation, the official Skill is recommended: Minimax-Multimodal-Toolkit.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.91%
按下载量换算7,051

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills