status

status is a command for Claude Code from Marcel-Bich/marcel-bich-claude-marketplace. It costs 12 tokens per session (605 once invoked), scanned A, original, MIT.

A Git worktree status command that reports branches, file changes, recent commits, and how far each branch is ahead of or behind main. A worktree is a separate directory where another branch can be checked out at the same time.

In plain words
What is it for?
Use it to inspect one worktree in detail or review the status of all worktrees.
Why use it?
It gives one place to see whether parallel work is clean, what changed, and whether branches need synchronising.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/user/project.

Part of the hydra plugin — 9 commands shipped together

Good fit Use it to inspect one worktree in detail or review the status of all worktrees.

Compare 6 commands 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 Marcel-Bich/marcel-bich-claude-marketplace
Claude Code
/plugin install hydra

Made for: Claude Code.

Or install hydra, the plugin that ships this one along with the rest of its 9 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 status

README.md
[![agentmods](https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/status/github.svg)](https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/status)
Your own site
<a href="https://agentmods.dev/commands/marcel-bich/marcel-bich-claude-marketplace/status"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/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/commands/marcel-bich/marcel-bich-claude-marketplace/status"><img src="https://agentmods.dev/badge/commands/marcel-bich/marcel-bich-claude-marketplace/status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 605 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.00012 $0.00605
Opus 5 $0.00006 $0.00302
Sonnet 5 $0.00002 $0.00121
Haiku 4.5 $0.00001 $0.00060

Measured 7d ago against content hash 6496a8335203, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 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.

plugins/hydra/commands/status.md · 109 lines

What it actually says

Worktree Status

You are executing the /hydra:status command. Show detailed status of one or all worktrees.

Arguments

  • $ARGUMENTS - Optional: Name of a specific worktree

Process

1. Get Worktree List

git worktree list --porcelain

2. For Each Worktree (or Only Specified)

Switch to the worktree directory and gather info:

# Status
git -C {worktree-path} status --short

# Last commit
git -C {worktree-path} log -1 --oneline

# Ahead/behind main
git -C {worktree-path} rev-list --left-right --count main...HEAD 2>/dev/null

3. Format Output

All worktrees:

Worktree Status:

[main] /home/user/project
  Branch: main
  Status: clean
  Commit: a1b2c3d - Initial commit (2h ago)

[feature-a] /home/user/project-worktrees/feature-a
  Branch: hydra/feature-a
  Status: 2 modified, 1 untracked
  Commit: d4e5f6g - Add feature A (30m ago)
  Ahead: 3 commits | Behind: 0

[feature-b] /home/user/project-worktrees/feature-b
  Branch: hydra/feature-b
  Status: clean
  Commit: h7i8j9k - Implement B (1h ago)
  Ahead: 5 commits | Behind: 2

Single worktree (detailed):

Worktree: feature-a
Path: /home/user/project-worktrees/feature-a
Branch: hydra/feature-a

Status:
  M  src/feature.ts
  M  tests/feature.test.ts
  ?? src/new-file.ts

Last Commit:
  d4e5f6g - Add feature A
  Author: User <[email protected]>
  Date: 30 minutes ago

Comparison to main:
  Ahead: 3 commits
  Behind: 0 commits

4. Error Handling

If worktree not found:

Worktree '{name}' not found.

Available worktrees:
  - main (Main)
  - feature-a
  - feature-b

Show all with: /hydra:list

Notes

  • Without argument, all worktrees are shown
  • With argument, only the specific one (more detailed)
  • "Behind" shows if main has new commits not in the worktree
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 · 109 lines · 12 tokens per session scan A 6496a8335203

Subscribe to this mod's changes

status is a command published in the GitHub repository Marcel-Bich/marcel-bich-claude-marketplace (13 stars, last pushed yesterday), licensed MIT. It adds 12 tokens to every session and 605 once invoked, about $0.0001 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-09-03.