finops-status

finops-status is a command for Claude Code from glassity/agent-skills. It costs 64 tokens per session (1,121 once invoked), scanned A, original, Apache-2.0.

A read-only command that tells you where an opportunity or assignment sits in a five-step FinOps lifecycle. FinOps is the practice of managing cloud costs alongside engineering and business decisions.

In plain words
What is it for?
Use it to orient yourself on an opportunity or assignment by checking its server-side state and current stage.
Why use it?
It clarifies the current state when a record has no active stage, including work happening inside assignments or an assignment waiting for plan approval. It recommends exactly one next action without changing data.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: agent in frontmatter.

Part of the glassity plugin — 19 skills, 6 commands, 2 agents shipped together

Good fit Use it to orient yourself on an opportunity or assignment by checking its server-side state and current stage.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/glassity/agent-skills/finops-status
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/glassity/agent-skills

Made for: Claude Code.

Or install glassity, the plugin that ships this one along with the rest of its 19 skills, 6 commands, 2 agents.

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 finops-status

README.md
[![agentmods](https://agentmods.dev/badge/commands/glassity/agent-skills/finops-status.svg)](https://agentmods.dev/commands/glassity/agent-skills/finops-status)
Your own site
<a href="https://agentmods.dev/commands/glassity/agent-skills/finops-status"><img src="https://agentmods.dev/badge/commands/glassity/agent-skills/finops-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 64 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,121 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00064 $0.01121
Opus 5 $0.00032 $0.00561
Sonnet 5 $0.00013 $0.00224
Haiku 4.5 $0.00006 $0.00112

Measured 7d ago against content hash 54a6d1b497bb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

finops-status scanned grade A with 0 findings 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 7d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/finops-status.md · 100 lines

How it starts

The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/finops-status — where am I, and what unlocks next

A utility command, not one of the five steps. The lifecycle vocabulary and the stage-to-command mapping live in the glassity-five-steps skill.

Purpose

Orient the user when a record has no active stage. current_stage is nullable, and a null value is a legitimate part of the lifecycle rather than an error:

  • an opportunity while it is in discovery or execution — the work is happening inside its assignments,
  • an assignment whose organization-wide plan has not been approved and seeded yet,
  • a rejected or archived assignment, which is terminal by design.

This command is read-only. It mutates nothing and recommends exactly one next action.

Variables

Variable Source Default Meaning
TARGET first positional arg ask The record to orient on.

Tool surface

  • CLI, the authoritative state: glassity --output=json opp show <opp-id> for an opportunity, opp show-assignment <assignment-id> for an assignment. These return the server's state and current_stage.
  • Workspace environment, optional: a managed Glassity workspace exports the primary record's id as GLASSITY_ISLAND_ID. It only identifies the record — stages and states always come from the CLI re-read, never from the environment.
  • No mutation verbs. If the user asks to advance or approve from here, point them at the right step command rather than running it.
  • Binary check: run command -v glassity before the first CLI call. If it is missing, stop and tell the user to install it with brew install glassity/tap/glassity or from https://github.com/glassity/cli/releases. No account yet? Sign up at app.glassity.cloud.

Workflow

  1. Binary check; stop with the install hint if it is missing.

  2. Resolve the record.

    • Use TARGET when the user gave one. Route on the prefix, testing the longer one first: an id beginning with opportunity_assignment_ is an assignment; an id beginning with opportunity_ is an opportunity. (A bare opportunity_ test matches assignment ids too — order matters.)
    • Managed workspaces export the primary record's id as GLASSITY_ISLAND_ID; when it is set and no TARGET was given, use it, routed by the same prefix rule (opportunity_assignment_ first).
    • If neither is set, ask the user which record they mean, offering glassity --output=json opp list to pick from. Never stop merely because the environment does not identify a record.

Read the full file on GitHub · 100 lines

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. 7d ago First seen · 100 lines · 64 tokens per session scan A 54a6d1b497bb

Subscribe to this mod's changes

finops-status is a command published in the GitHub repository glassity/agent-skills (2 stars, last pushed 25d ago), licensed Apache-2.0. It adds 64 tokens to every session and 1,121 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.