一键导入
ollama-cloud-usage
Check your Ollama Cloud Pro/Max subscription usage — session and weekly limits, plan tier, and reset timers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check your Ollama Cloud Pro/Max subscription usage — session and weekly limits, plan tier, and reset timers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | ollama-cloud-usage |
| description | Check your Ollama Cloud Pro/Max subscription usage — session and weekly limits, plan tier, and reset timers. |
| version | 2.1.0 |
| author | Rabil |
| license | MIT |
| metadata | {"hermes":{"tags":["ollama","cloud","usage","monitor"],"related_skills":[]}} |
Check your Ollama Cloud Pro/Max subscription usage directly from Hermes.
Since Ollama Cloud has no public usage API (see ollama/ollama#12532), this skill scrapes the dashboard at https://ollama.com/settings using your authenticated session cookie.
Requires the OLLAMA_CLOUD_COOKIE environment variable in your Hermes env config.
ollama.com as a single string (e.g. auth=xxx; other=yyy).env file in the Hermes data directory):
OLLAMA_CLOUD_COOKIE="auth=xxx; other=yyy"
/reset if mid-sessionIf the cookie expires, repeat steps 2–4.
The Python script checks these paths in order:
OLLAMA_CLOUD_COOKIE env var (if exported to subprocess)/opt/data/.env (Hermes Docker container mount, primary)~/.hermes/.env (local bare-metal fallback)IMPORTANT: Use terminal with python3 -c "..." — NOT execute_code. execute_code does NOT inherit Hermes env vars, so OLLAMA_CLOUD_COOKIE is always empty there. The terminal tool DOES inherit the environment and the cookie is found via os.environ.
python3 /opt/data/skills/ollama-cloud-usage/scripts/ollama_cloud_usage.py
Format the JSON output for the user in a readable way, e.g.:
If session_models or weekly_models are present, show the model-wise breakdown:
Session models:
Weekly models:
execute_code does not inherit env vars. Always use terminal for this skill — execute_code runs in an isolated subprocess that won't have OLLAMA_CLOUD_COOKIE.os.environ directly (available in terminal). If missing, ensure the env var is set in the Hermes .env file.width: CSS values as usage percentages. The usage-meter__fill width matches the total, but usage-meter__segment widths (per-model breakdowns like 99.8% for one model) are NOT the total usage. Always parse from aria-label attributes or the "X% used" text labels instead.