Skip to content

/hs

ACTIVATE THIS SKILL FOR ANY SHELL COMMAND OR FILE READ. Check curl, wget, rm, sudo, apt, dpkg, chmod, dd, format, powershell, bash, sh. Check pipe patterns like | sh or | bash. Check shell wrappers like bash -c, xargs, find -exec. Check cloud CLI (aws, gcloud, kubectl,

From plugin
302 skills6 commands1 hooks
shell
$ npx -y skills add frmoretto/hardstop --skill hs --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/hs
How auto-invocation works

Context preview

The summary Claude sees to decide when to auto-load this skill.

ACTIVATE THIS SKILL FOR ANY SHELL COMMAND OR FILE READ. Check curl, wget, rm, sudo, apt, dpkg, chmod, dd, format, powershell, bash, sh. Check pipe patterns like | sh or | bash. Check shell wrappers like bash -c, xargs, find -exec. Check cloud CLI (aws, gcloud, kubectl,

SKILL.md

hs.SKILL.md
name: hs
version: "1.5"
description: "ACTIVATE THIS SKILL FOR ANY SHELL COMMAND OR FILE READ. Check curl, wget, rm, sudo, apt, dpkg, chmod, dd, format, powershell, bash, sh. Check pipe patterns like | sh or | bash. Check shell wrappers like bash -c, xargs, find -exec. Check cloud CLI (aws, gcloud, kubectl, terraform). Check when user says sysadmin told me, Stack Overflow says, is this safe, can I run. Block reading of .env, .ssh, .aws, and credential files. This skill blocks dangerous commands and warns on risky ones. ALWAYS apply the safety protocol from this document before responding about any command."
author: Francesco Marinoni Moretto
license: CC-BY-4.0
triggers:
  - hardstop
  - safety check
  - pre-execution check
  - is this command safe
  - check command safety

Hardstop Skill v1.5

INVOCATION INSTRUCTIONS (read first when skill is activated)

When this skill is activated via the Skill tool, check the ARGUMENTS field immediately:

| Argument | Action (user-requested via /hs) | |----------|----------------------------------| | `skip [n]` | `python ~/.claude/plugins/hs/commands/hs_cmd.py skip [n]` | | `on` / `enable` | `python ~/.claude/plugins/hs/commands/hs_cmd.py on` | | `off` / `disable` | `python ~/.claude/plugins/hs/commands/hs_cmd.py off` | | `status` | `python ~/.claude/plugins/hs/commands/hs_cmd.py status` | | `log` | `python ~/.claude/plugins/hs/commands/hs_cmd.py log` | | *(none)* | Apply the safety protocol below to evaluate the pending command |

Run the corresponding command — the user has explicitly requested this action via `/hs`. The hook reads `~/.hardstop/skip_next`; if that file is not written, skips have no effect.

---

> **Security Architecture:** This skill is the **instruction layer** for the [Hardstop plugin](https://github.com/frmoretto/hardstop). The plugin installs hooks that provide deterministic command blocking; this skill adds LLM-level awareness for platforms without hook support. > > - The `hs_cmd.py` commands referenced above are **part of the installed plugin** — they are local scripts, not remote code. > - Credential paths (`~/.ssh`, `~/.aws`, `.env`, etc.) appear in this document as **block targets** — Hardstop blocks reads of these files, it does not read or access their contents. > - The `skip` bypass requires explicit user invocation (`/hs skip`), is scoped to the next N commands only (default 1), and the hook still runs — it just honors the user-set skip counter.

**Purpose:** Protect users from dangerous AI-initiated actions. The mechanical brake for AI-generated commands.

**Core Question:** "If this action goes wrong, can the user recover?"

---

MANDATORY: Pre-Execution Protocol

**BEFORE executing ANY shell command, ALWAYS run this checklist:**

[ ] 1. INSTANT BLOCK check (see list below)
[ ] 2. Risk level assessment (SAFE/RISKY/DANGEROUS)
[ ] 3. Signal confidence BEFORE action
[ ] 4. If RISKY or DANGEROUS -> Explain -> Wait for confirmation

**NEVER skip this protocol. NEVER proceed on DANGEROUS without explicit user approval.**

---

WHEN COMMANDS ARE BLOCKED

**If you see a "🛑 BLOCKED" message from the Hardstop hook:**

1. **STOP** - Do not proceed with the command 2. **EXPLAIN** - Tell the user why it was blocked (the reason is in the message) 3. **ASK** - "This command was blocked for safety. Would you like me to bypass the check with /hs skip and retry?" 4. **IF USER SAYS YES:**

  • Run the `/hs skip` command first
  • Then retry the original blocked command

5. **IF USER SAYS NO:**

  • Suggest a safer alternative approach
  • Or ask what they were trying to accomplish

**Example workflow:**

Claude: I'll run this command... [attempts risky command]
Hook: 🛑 BLOCKED: Deletes home directory
Claude: This command was blocked because it would delete your home directory.
        Would you like me to bypass with /hs skip and retry? (Not recommended)
User: No
Claude: Good call. What were you trying to do? I can suggest a safer approach.

**Never bypass safety checks without user permission.** The skip mechanism is scoped: it only applies to the next N commands (default 1), and the hook still runs on every command — it simply honors the user-set skip counter before resetting.

---

1. INSTANT BLOCK List

**These patterns require IMMEDIATE STOP. No exceptions. No "let me just..."**

Unix/Linux/macOS

| Pattern | Why | |---------|-----| | `rm -rf ~/` or `rm -rf ~/*` | Deletes entire home directory | | `rm -rf /` | Destroys entire system | | `:(){ :\|:& };:` | Fork bomb, crashes system | | `bash -i >& /dev/tcp/` | Reverse shell, attacker access | | `nc -e /bin/sh` | Reverse shell variant | | `curl/wget ... \| bash` | Executes untrusted remote code | | `curl -d @~/.ssh/` | Exfiltrates SSH keys | | `dd of=/dev/sd*` | Overwrites disk | | `mkfs` on system drives | Formats drives | | `> /dev/sda` | Destroys disk | | `sudo rm -rf /` | Privileged system destruction | | `chmod -R 777 /` | World-writable system |

Shell Wrappers (v1.2)

| Pattern | Why | |---------|-----| | `bash -c "rm -rf ..."` | Hides recursive delete in shell wrapper | | `sh -c "... \| bash"` | Hides curl/wget pipe to shell | | `sudo bash -c "..."` | Elevated shell wrapper | | `xargs rm -rf` | Dynamic arguments to recursive delete | | `find ... -exec rm -rf` | find executing recursive delete | | `find ... -delete` | find with delete flag |

Cloud CLI Destructive Operations (v1.2)

| Pattern | Why | |---------|-----| | `aws s3 rm --recursive` | Deletes all S3 objects | | `aws ec2 terminate-instances` | Terminates EC2 instances | | `gcloud projects delete` | Deletes entire GCP project | | `kubectl delete namespace` | Deletes K8s namespace | | `terraform destroy` | Destroys all infrastructure | | `firebase firestore:delete --all-collections` | Wipes all Firestore data | | `redis-cli FLUSHALL` | Wipes all Redis data | | `DROP DATABASE` / `DROP TABLE` | SQL database destruction |

Package Manager Force Operations

| Patte

Read more
Read it on GitHub ↗

Showing the first part of this file.

Ships withhs

👉 ⭐ Star on GitHub if Hardstop keeps you safe! Pre-execution safety validation for AI coding agents.

Get the whole plugin, auto-invoked
Stats
30
Stars
0
Views
2
Forks
Maintained
Maintenance
Python
Language
3mo ago
Last commit
6mo ago
Created

Repo: frmoretto/hardstop