status

status is a skill for Claude Code from Jebel-Quant/rhiza-claude. It costs 40 tokens per session (1,026 once invoked), scanned A, original, MIT.

A read-only command that reports the state of a Rhiza-managed repository, including whether its configuration is valid and which template files were synced. Rhiza is a system for sharing repository templates.

In plain words
What is it for?
Use it to inspect Rhiza status, optionally list managed files, or check for differences from the upstream template.
Why use it?
It separates the repository's intended configuration from what was actually synced, making configuration problems and missing sync history easier to see.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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 rhiza plugin — 10 skills, 1 hook shipped together

Good fit Use it to inspect Rhiza status, optionally list managed files, or check for differences from the upstream template.

Compare 6 skills from other repositories ↓
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 Jebel-Quant/rhiza-claude
Claude Code
/plugin install rhiza

Made for: Claude Code.

Or install rhiza, the plugin that ships this one along with the rest of its 10 skills, 1 hook.

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 status

README.md
[![agentmods](https://agentmods.dev/badge/skills/jebel-quant/rhiza-claude/status/github.svg)](https://agentmods.dev/skills/jebel-quant/rhiza-claude/status)
Your own site
<a href="https://agentmods.dev/skills/jebel-quant/rhiza-claude/status"><img src="https://agentmods.dev/badge/skills/jebel-quant/rhiza-claude/status/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for status

Your own site · 80×15
<a href="https://agentmods.dev/skills/jebel-quant/rhiza-claude/status"><img src="https://agentmods.dev/badge/skills/jebel-quant/rhiza-claude/status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,026 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.00040 $0.01026
Opus 5 $0.00020 $0.00513
Sonnet 5 $0.00008 $0.00205
Haiku 4.5 $0.00004 $0.00103

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

Security

Grade A, and why

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 9d 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.

plugin/skills/status/SKILL.md · 87 lines

How it starts

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

You are running /status in the current working directory's repo.

A repo's rhiza state has two halves, and this reports both:

half file question
config .rhiza/template.yml + repo structure is what we'd sync from well-formed?
sync .rhiza/template.lock what was actually synced, and when?

They can disagree in both directions, which is why reporting one without the other misleads: a freshly /init-ed repo has a valid config and no lock at all, and a long-synced repo can have a lock alongside a config someone has since broken by hand.

This command is a thin wrapper around two bundled scriptsplugin/scripts/validate.py and plugin/scripts/status.py, both deterministic and stdlib-only (no rhiza CLI, no PyYAML). Do not re-implement the parsing or gather fields yourself; run them and relay the output.

Purely descriptive: it reports; it does not score, fix, or file anything.

Argument (optional): $ARGUMENTS — a path to the repo root to inspect; default is the current directory.

1. Validate the config

${CLAUDE_PLUGIN_ROOT} resolves at runtime (keep the quotes); in a source checkout it's empty, so fall back to the repo-relative path.

uv run --python 3.12 --no-project python "${CLAUDE_PLUGIN_ROOT}/scripts/validate.py" $ARGUMENTS

It checks more than the file: that the target is a git repo, that it has the expected language-specific structure (a pyproject.toml is required for Python), that template.yml exists and parses, and that its fields are present and well-typed. It exits non-zero on any of those failing — that's its contract as a gate, so it stays usable in CI. Here, treat a failure as a finding to report, not a reason to stop: still run step 2, because a broken config alongside a good lock is exactly the situation worth surfacing. Lead the report with the validation failure.

If there's no template.yml at all, the repo isn't rhiza-managed. Say so and point at /rhiza:init; skip step 2.

Read the full file on GitHub · 87 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. 9d ago First seen · 87 lines · 40 tokens per session scan A 9eaf3ac2b321

Subscribe to this mod's changes

status is a skill published in the GitHub repository Jebel-Quant/rhiza-claude (4 stars, last pushed yesterday), licensed MIT. It adds 40 tokens to every session and 1,026 once invoked, about $0.0002 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.