From hs
Manages Hardstop pre-execution safety layer for shell commands: enable/disable, skip checks, show status/audit logs. Supports on|off|skip|status|log|help.
How this command is triggered — by the user, by Claude, or both
Slash command
/hs:hs on|off|skip|status|log|helpThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Hardstop Command Hardstop is a pre-execution safety layer that blocks dangerous shell commands using pattern matching + LLM analysis. ## Context - State directory: `~/.hardstop/` - State file: `~/.hardstop/state.json` - Skip flag: `~/.hardstop/skip_next` - Audit log: `~/.hardstop/audit.log` ## Your Task Based on the argument provided (`$ARGUMENTS`), perform the appropriate action: ### If no argument or "help" or "status": Run this command to show current status: ### If argument is "on" or "enable": Use `/on` command instead, or run: ### If argument is "off" or "disable": Use `/o...
Hardstop is a pre-execution safety layer that blocks dangerous shell commands using pattern matching + LLM analysis.
~/.hardstop/~/.hardstop/state.json~/.hardstop/skip_next~/.hardstop/audit.logBased on the argument provided ($ARGUMENTS), perform the appropriate action:
Run this command to show current status:
python "${CLAUDE_PLUGIN_ROOT}/commands/hs_cmd.py" status
Use /on command instead, or run:
python "${CLAUDE_PLUGIN_ROOT}/commands/hs_cmd.py" on
Use /off command instead, or run:
python "${CLAUDE_PLUGIN_ROOT}/commands/hs_cmd.py" off
Use /skip command instead, or run:
python "${CLAUDE_PLUGIN_ROOT}/commands/hs_cmd.py" $ARGUMENTS
Use /log command instead, or run:
python "${CLAUDE_PLUGIN_ROOT}/commands/hs_cmd.py" log
/hs or /hs status - Show current status/hs on - Enable protection/hs off - Disable protection temporarily/hs skip - Skip safety check for next command only/hs log - Show recent audit log entries/hs help - Show this helpOr use the shorthand commands directly:
/on - Enable protection/off - Disable protection/skip - Skip next command/status - Show status/log - Show audit lognpx claudepluginhub anotherifmg/hardstop2plugins reuse this command
First indexed Feb 17, 2026
/install-guardrailsInstalls an opt-in PreToolUse guardrail that blocks dangerous git/shell commands (git push, reset --hard, rm -rf /) before Bash runs them. Copies a matcher script into project or user settings.
/safe-modePrevents destructive operations by intercepting risky Bash commands (cautious mode) or restricting file edits to a specified directory (lockdown mode). Also supports clearing all restrictions.
/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'.
/carefulActivates a safety net that prompts for confirmation before executing destructive commands like rm -rf, DROP TABLE, git push --force, and kubectl delete.