بنقرة واحدة
token-panel-ultimate
Multi-provider usage tracking for AI agents. Claude Max, Gemini, and Manus in one dashboard.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Multi-provider usage tracking for AI agents. Claude Max, Gemini, and Manus in one dashboard.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Fetch and rank Jable latest-update videos by likes within a recent time window (default 48h). Use when asked to pull Jable recent updates, sort by likes/popularity, and return top N links in a formatted list.
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
Modern web design engineering skills including design tokens, advanced UI/UX methodologies, accessibility, and game-specific UI patterns. Use for building commercial-grade, performant, and accessible web interfaces.
Best practices for Stripe payment integration. Use when implementing payments, subscriptions, checkout flows, or any monetization feature in games or web apps. Covers CheckoutSessions, Payment Element, subscriptions, and Connect.
Test web applications and games using Playwright on MiniPC. Use when verifying frontend functionality, debugging UI behavior, capturing screenshots, or QA testing games. Supports headless browser automation via nodes.run or browser.proxy.
Blender 양방향 소켓 통신 스킬. TCP 소켓 서버로 실시간 씬 조작, 상태 조회, Poly Haven/Sketchfab 에셋 통합. 기존 blender-pipeline (배치 처리)와 상호보완 — 복잡한 씬 구축, 반복 조작, 실시간 피드백에 사용. 트리거: Blender 실시간 조작, 씬 상태 확인, Poly Haven 에셋, Sketchfab 모델, 양방향 Blender 통신.
| 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.