vertex-stats

vertex-stats is a command for Claude Code from sivang/sivan-claude-plugins. It costs 5 tokens per session (211 once invoked), scanned B, original, MIT.

A command that reports how much Vertex AI, Google Cloud’s AI service, has been used. It can show the current session or a selected period.

In plain words
What is it for?
Use it to view statistics for today, the current week, or the month, optionally including a graph.
Why use it?
It gives you a view of recent Vertex AI usage without manually inspecting provider state or logs.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the vertex-ai-provider plugin — 5 commands shipped together

Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add sivang/sivan-claude-plugins
Claude Code
/plugin install vertex-ai-provider

Made for: Claude Code.

Or install vertex-ai-provider, the plugin that ships this one along with the rest of its 5 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vertex-stats

README.md
[![agentmods](https://agentmods.dev/badge/commands/sivang/sivan-claude-plugins/vertex-stats.svg)](https://agentmods.dev/commands/sivang/sivan-claude-plugins/vertex-stats)
Your own site
<a href="https://agentmods.dev/commands/sivang/sivan-claude-plugins/vertex-stats"><img src="https://agentmods.dev/badge/commands/sivang/sivan-claude-plugins/vertex-stats.svg" alt="Measured on agentmods" height="20"></a>
Per session 5 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 211 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00005 $0.00211
Opus 5 $0.00003 $0.00105
Sonnet 5 $0.00001 $0.00042
Haiku 4.5 $0.00001 $0.00021

Measured 5d ago against content hash 6397b29efddb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

vertex-stats scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- Current state: !`cat ~/.claude/vertex-provider/state.json 2>/dev/null || echo '{"active":false}'`
vertex-ai-provider/commands/vertex-stats.md · 34 lines

What it actually says

Context

  • Current state: !cat ~/.claude/vertex-provider/state.json 2>/dev/null || echo '{"active":false}'
  • Arguments: $ARGUMENTS

Your Task

Show usage statistics based on arguments:

No arguments (default to current session)

node "${CLAUDE_PLUGIN_ROOT}/lib/cli/stats.js"

With period (today, week, month)

node "${CLAUDE_PLUGIN_ROOT}/lib/cli/stats.js" today
node "${CLAUDE_PLUGIN_ROOT}/lib/cli/stats.js" week
node "${CLAUDE_PLUGIN_ROOT}/lib/cli/stats.js" month

With --graph flag

node "${CLAUDE_PLUGIN_ROOT}/lib/cli/stats.js" week --graph

Run the appropriate command based on the user's arguments.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 34 lines · 5 tokens per session scan B 6397b29efddb

Subscribe to this mod's changes

vertex-stats is a command published in the GitHub repository sivang/sivan-claude-plugins (1 stars, last pushed 7mo ago), licensed MIT. It adds 5 tokens to every session and 211 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other commands, from other repositories

validate

Mechanically validate the sonu plugin repo before a PR — manifest sync, YAML frontmatter, shell-fence syntax, named-source and AI-attribution scans, cross-reference integrity, skill reachability. Only meaningful inside the claude-plugins repo; in any other repo, say so and stop.

PrabhdeepSingh/claude-plugins · 60 tokens

build

Sequence decide → build → hand back for any feature or fix. Triage the change, run design-tree in plan mode (with you as the approval gate — skipped when /sonu:factory routes a ticket whose spec you already approved), build test-first under code-standards, then surface the riskiest parts before handing back to…

PrabhdeepSingh/claude-plugins · 105 tokens

release

Prepare a release of the sonu plugin — decide the semver bump, sync the version and plugin description across all five homes, run /validate, then hand to /sonu:ship. Only meaningful inside the claude-plugins repo; in any other repo, say so and stop.

PrabhdeepSingh/claude-plugins · 59 tokens

audit

Full quality audit — runs security scan, performance check, and test coverage analysis in sequence and produces a combined report.

ducpm2303/claude-java-plugins · 22 tokens

check

Run static analysis on the Java project — detects configured tools (Checkstyle, SpotBugs, PMD) and reports findings.

ducpm2303/claude-java-plugins · 25 tokens

routes

List all REST endpoints in the Spring Boot project — scans controllers and prints a route table.

ducpm2303/claude-java-plugins · 17 tokens