hide

hide is a command for Claude Code from paulpreibisch/AgentVibes. It costs 16 tokens per session (629 once invoked), scanned A, original, Apache-2.0.

A command for hiding most AgentVibes slash commands from the command list while keeping the hide and show commands available. It does not disable AgentVibes' underlying tools.

In plain words
What is it for?
Use it to hide AgentVibes commands temporarily and bring them back later with the show command.
Why use it?
It reduces clutter in the command menu without removing the voice system itself. The hidden commands are backed up so they can be restored.

Command for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Claude Code.

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/paulpreibisch/agentvibes/hide
Clone the repo
git clone --depth 1 https://github.com/paulpreibisch/AgentVibes

Made for: Claude Code.

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 hide

README.md
[![agentmods](https://agentmods.dev/badge/commands/paulpreibisch/agentvibes/hide.svg)](https://agentmods.dev/commands/paulpreibisch/agentvibes/hide)
Your own site
<a href="https://agentmods.dev/commands/paulpreibisch/agentvibes/hide"><img src="https://agentmods.dev/badge/commands/paulpreibisch/agentvibes/hide.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 629 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00016 $0.00629
Opus 5 $0.00008 $0.00315
Sonnet 5 $0.00003 $0.00126
Haiku 4.5 $0.00002 $0.00063

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

Security

Grade A, and why

hide 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 2d 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.

.claude/commands/agent-vibes/hide.md · 92 lines

What it actually says

You are about to hide all AgentVibes slash commands from the Claude Code interface.

What this does:

  • Moves all AgentVibes commands from .claude/commands/agent-vibes/ to .claude/.agentvibes-backup/
  • Keeps only the show.md and hide.md commands visible
  • Creates a flag file to track hidden state
  • Does NOT affect MCP functionality - you can still use AgentVibes through MCP tools

IMPORTANT IMPLEMENTATION STEPS:

  1. Check if already hidden:

    • Check if .claude/.agentvibes-hidden.flag exists
    • If it exists, respond: "⚠️ AgentVibes commands are already hidden. Use /agent-vibes:show to restore them."
    • Stop execution
  2. Create backup directory:

    mkdir -p .claude/.agentvibes-backup
    
  3. Move all command files EXCEPT hide.md and show.md:

    cd .claude/commands/agent-vibes
    
    # Move all files except hide.md and show.md
    for file in *.md *.json; do
      if [ "$file" != "hide.md" ] && [ "$file" != "show.md" ]; then
        mv "$file" ../../.agentvibes-backup/
      fi
    done
    
  4. Create the hidden state flag:

    touch .claude/.agentvibes-hidden.flag
    
  5. Display success message:

    ✅ AgentVibes commands hidden successfully!
    
    📦 Backed up to: `.claude/.agentvibes-backup/`
    
    🔄 Please reload Claude Code to see changes:
       Press Ctrl+Shift+P → "Developer: Reload Window"
    
    💡 To restore commands, use: /agent-vibes:show
    
    ℹ️  MCP functionality is unaffected - AgentVibes MCP tools still work normally.
    

Files that will be hidden:

  • add.md
  • agent-vibes.md
  • agent.md
  • agent-health-coach.md
  • agent-motivator.md
  • agent-negotiator.md
  • bmad.md
  • get.md
  • language.md
  • learn.md
  • list.md
  • personality.md
  • preview.md
  • provider.md
  • replay-target.md
  • replay.md
  • sample.md
  • sentiment.md
  • set-favorite-voice.md
  • set-language.md
  • set-pretext.md
  • set-speed.md
  • switch.md
  • target-voice.md
  • target.md
  • update.md
  • version.md
  • whoami.md
  • commands.json

Files that will remain visible:

  • hide.md (this command)
  • show.md (to restore commands)

Now execute the hiding process following the steps above.

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. 2d ago First seen · 92 lines · 16 tokens per session scan A 80ac0970d257

Subscribe to this mod's changes

hide is a command published in the GitHub repository paulpreibisch/AgentVibes (153 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 16 tokens to every session and 629 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.