How this command is triggered — by the user, by Claude, or both
Slash command
/host-terminal:shell <command to execute>The summary Claude sees in its command listing — used to decide when to auto-load this command
# Shell Command Execution Execute terminal commands on the host machine with permission controls. ## Workflow 1. **Parse the command** from user input 2. **Check permissions** against the configured allowlist 3. **Execute** if allowed, or request approval if in "ask" mode 4. **Return results** with stdout, stderr, and exit code ## Usage ## Examples ### List files ### Check git status ### Search for files ### View file contents ## Permission Handling Commands are checked against the permission configuration: - **Allowed commands**: Execute immediately - **Blocked commands**...
Execute terminal commands on the host machine with permission controls.
/shell <command>
/shell ls -la ~/projects
/shell git status
/shell find . -name "*.js" -type f | head -20
/shell cat package.json
Commands are checked against the permission configuration:
sudo, rm -rf /)allowlist mode: Rejectedask mode: Prompt for approvalallow_all mode: Execute (use with caution!)npx claudepluginhub ankitaa186/host-terminal-mcp --plugin host-terminal/simpleExecutes simple shell commands, file reads, git operations, or npm runs directly via standard Claude Code, bypassing RLM orchestration.
/guardActivates safety guardrails that block destructive Bash commands (rm -rf), SQL drops (DROP TABLE), git force-pushes, and optionally restrict file edits to a directory. Explains each block.
/shellProvides shell configuration guide for bash/zsh covering startup files, environment variables, and options based on query like bash, zsh, startup.
/cliSelects and executes optimal CLI tools for a given task using terminal-native expert patterns, with optional preference like 'modern' or 'standard'.
/yoloToggles YOLO mode to auto-allow all warden-prompted commands for the current session. Supports full-session, timed durations like 5m, or immediate deactivation with 'off'.
/validate-skillsValidates bash/shell code blocks in plugin markdown command/skill files or specified paths/directories using static analysis (bash -n, shellcheck), safety tiering, safe execution for green-tier, and AI review. Outputs report or JSON with --json.