원클릭으로
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.