用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kbarbel640-del/skills --skill token-panel-ultimate命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
DeFi intelligence powered by Silverback — market data, swap quotes, technical analysis, yield opportunities, token audits, whale tracking, and AI chat via 11 real-time tools on Base chain
AI image, video, and music generation + editing. Flux, Veo 3.1, Suno V5.
Check balances, send money, and share receive details via Wise
正在显示 SKILL.md
基于 SOC 职业分类
| name | token-panel-ultimate |
| version | 1.0.4 |
| description | Multi-provider usage tracking for AI agents. Claude Max, Gemini, and Manus in one dashboard. |
| homepage | https://clawhub.com/skills/token-panel-ultimate |
| metadata | {"openclaw":{"emoji":"🎛️","requires":{"bins":["python3"]}}} |
🎛️ Know your limits. Stay within them. Maximize your capacity.
Real-time usage tracking for Claude Max, Gemini, and Manus — all in one place.
| Provider | What It Tracks |
|---|---|
| Claude Max | 5-hour window, 7-day window, reset times |
| Gemini | RPD/RPM/TPM per model, bottleneck detection |
| Manus | Daily refresh, monthly credits, addon balance |
Plus a webchat widget that shows it all at a glance.
Track your Claude Max subscription usage in real-time.
# Pretty print current usage
python3 {baseDir}/scripts/claude-usage-fetch.py
# Update JSON file for the widget
python3 {baseDir}/scripts/claude-usage-fetch.py --update
# Raw JSON output
python3 {baseDir}/scripts/claude-usage-fetch.py --json
claude /login)# Add to crontab for automatic updates every 5 minutes
*/5 * * * * python3 {baseDir}/scripts/claude-usage-fetch.py --update
Track the bottleneck metric (highest % among RPD, RPM, TPM) for each model.
| Model | RPM | TPM | RPD |
|---|---|---|---|
| gemini-3-pro | 25 | 1M | 250 |
| gemini-2.5-pro | 25 | 1M | 250 |
| gemini-2.5-flash | 2000 | 4M | ∞ |
| gemini-3-flash | 1000 | 1M | 10K |
| gemini-2.0-flash | 2000 | 4M | ∞ |
gemini-3-pro → gemini-2.5-pro → gemini-2.5-flash(∞) → gemini-3-flash → gemini-2.0-flash(∞)
Most capable first, unlimited RPD models as safety nets.
Store in memory/gemini-usage.json:
{
"models": {
"gemini-3-pro": {
"limits": { "rpm": 25, "tpm": 1000000, "rpd": 250 },
"usage": { "rpm": 17, "tpm": 1380000, "rpd": 251 },
"status": "exceeded"
}
}
}
Store in memory/manus-usage.json:
{
"credits": {
"breakdown": {
"monthly": { "used": 62, "limit": 4000 },
"addon": 7296
},
"daily_refresh": { "current": 0, "limit": 300 }
}
}
Add to your SOUL.md:
## Resource Awareness
**Behavior by budget level:**
| Budget | Behavior |
|--------|----------|
| 🟢 >50% | Normal operations |
| 🟡 30-50% | Be concise |
| 🟠 10-30% | Defer non-essential tasks |
| 🔴 <10% | Minimal responses only |
import json
from pathlib import Path
def get_claude_usage():
path = Path.home() / ".openclaw/workspace/memory/claude-usage.json"
if path.exists():
data = json.loads(path.read_text())
return data.get("limits", {}).get("five_hour", {}).get("utilization", 0)
return 0
A Tampermonkey userscript that displays real-time usage in OpenClaw webchat.
| Browser | Link |
|---|---|
| Chrome | Chrome Web Store |
| Firefox | Firefox Add-ons |
| Edge | Edge Add-ons |
| Safari | Mac App Store |
{baseDir}/scripts/budget-panel-widget.user.jsGo to http://localhost:18789 and refresh. Panel appears bottom-left.
claude-usage-fetch.py --update firstopenclaw gateway stop && openclaw gateway starttoken-panel-ultimate/
├── SKILL.md
├── package.json
└── scripts/
├── claude-usage-fetch.py # Claude Max usage fetcher
└── budget-panel-widget.user.js # Webchat widget
For full integration, the budget-panel gateway plugin is available in our OpenClaw fork:
Repository: github.com/globalcaos/clawdbot-moltbot-openclaw
The plugin provides:
budget.usage gateway method for real-time dataInstall the plugin at extensions/budget-panel/ in your OpenClaw installation.
Created by Oscar Serra with the help of Claude (Anthropic).
Built during a late-night hacking session, February 2026.