status

status is a command for Claude Code from dork-labs/dorkos. It costs 9 tokens per session (567 once invoked), scanned B, original, MIT.

A command that reports whether notification sounds are enabled for your user account and the current project. It also shows the sound file when one is configured.

In plain words
What is it for?
Use it to inspect notification sound settings in the user configuration and the project's configuration.
Why use it?
It avoids checking configuration files by hand at two different levels. This helps explain why notification sounds are or are not playing.

Command for Claude Code

Part of the flow plugin — 17 skills, 37 commands, 5 agents shipped together

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.

agentmods
npx agentmods add commands/dork-labs/dorkos/status
Clone the repo
git clone --depth 1 https://github.com/dork-labs/dorkos

Made for: Claude Code.

Or install flow, the plugin that ships this one along with the rest of its 17 skills, 37 commands, 5 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 status

README.md
[![agentmods](https://agentmods.dev/badge/commands/dork-labs/dorkos/status.svg)](https://agentmods.dev/commands/dork-labs/dorkos/status)
Your own site
<a href="https://agentmods.dev/commands/dork-labs/dorkos/status"><img src="https://agentmods.dev/badge/commands/dork-labs/dorkos/status.svg" alt="Measured on agentmods" height="20"></a>
Per session 9 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 567 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 $0.00009 $0.00567
Opus 5 $0.00005 $0.00283
Sonnet 5 $0.00002 $0.00113
Haiku 4.5 $0.00001 $0.00057

Measured 4d ago against content hash 72ee6c50d13e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

status 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 4d 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.

if grep -q "afplay" ~/.claude/settings.json 2>/dev/null; then
.claude/commands/cc/notify/status.md · 70 lines

What it actually says

Notification Sound Status

Check the notification sound configuration at both user and project levels.

Check Status

Run the following to check both levels:

echo "╔══════════════════════════════════════════════════════════════╗"
echo "║              Notification Sound Status                       ║"
echo "╠══════════════════════════════════════════════════════════════╣"

# Check user level
echo "║"
echo "║  User Level (~/.claude/settings.json)"
if [ -f ~/.claude/settings.json ]; then
  if grep -q "afplay" ~/.claude/settings.json 2>/dev/null; then
    echo "║  Status: ✓ ENABLED"
    # Extract the sound file being used
    SOUND=$(grep -o 'afplay [^"]*' ~/.claude/settings.json 2>/dev/null | head -1 | sed 's/afplay //')
    echo "║  Sound:  $SOUND"
  else
    echo "║  Status: ✗ DISABLED"
  fi
else
  echo "║  Status: ✗ DISABLED (no settings file)"
fi

echo "║"
echo "╠══════════════════════════════════════════════════════════════╣"
echo "║"

# Check project level
echo "║  Project Level (.claude/settings.json)"
if [ -f .claude/settings.json ]; then
  if grep -q "afplay" .claude/settings.json 2>/dev/null; then
    echo "║  Status: ✓ ENABLED"
    # Extract the sound file being used
    SOUND=$(grep -o 'afplay [^"]*' .claude/settings.json 2>/dev/null | head -1 | sed 's/afplay //')
    echo "║  Sound:  $SOUND"
  else
    echo "║  Status: ✗ DISABLED"
  fi
else
  echo "║  Status: ✗ DISABLED (no settings file)"
fi

echo "║"
echo "╠══════════════════════════════════════════════════════════════╣"
echo "║"
echo "║  Commands:"
echo "║    /cc:notify:on   - Enable notification sound"
echo "║    /cc:notify:off  - Disable notification sound"
echo "║"
echo "╚══════════════════════════════════════════════════════════════╝"

Notes

  • User level applies to all Claude Code sessions
  • Project level applies only to this project
  • Project-level settings override user-level settings
  • Restart Claude Code after changes for them to take effect
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. 4d ago First seen · 70 lines · 9 tokens per session scan B 72ee6c50d13e

Subscribe to this mod's changes

status is a command published in the GitHub repository dork-labs/dorkos (9 stars, last pushed today), licensed MIT. It adds 9 tokens to every session and 567 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.