X-ray any shell command, offline: an annotated breakdown of every flag, pipe & redirect — plus a shareable card. No server, no upload.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
- !Install pipes a remote script into a shell (curl | sh)
claude mcp add cmdxray -- npx -y cmdxray{
"mcpServers": {
"cmdxray": {
"command": "npx",
"args": ["-y", "cmdxray"]
}
}
}MCP Servers overview
# cmdxray
[](https://scorecard.dev/viewer/?uri=github.com/aurelio-nakamura/cmdxray)
[](https://www.npmjs.com/package/cmdxray)
[](https://glama.ai/mcp/servers/aurelio-nakamura/cmdxray)
**X-ray any shell command — offline.** Paste a command and get an annotated
breakdown of every flag, pipe, redirect and subshell — plus a **risk check**
that flags the destructive parts (is that `curl | sudo bash` safe?) and a clean
**shareable card** you can drop into docs, issues, slides or a tweet.
No server. No upload. Nothing leaves your machine.
**▶ [Try it in your browser](https://aurelio-nakamura.github.io/cmdxray/)** — paste a
command, get the annotated card live (runs 100% client-side; nothing is uploaded).
Or browse the [command reference](https://aurelio-nakamura.github.io/cmdxray/commands/)
(every curated command, flag by flag), the
[**popular one-liners gallery**](https://aurelio-nakamura.github.io/cmdxray/recipes/) —
`tar -xzvf`, `chmod 755`, `ps aux`, `grep -r`, `ss -tulpn` and other invocations
people search most, each broken down — or the
[**dangerous commands gallery**](https://aurelio-nakamura.github.io/cmdxray/danger/):
`rm -rf /`, fork bombs, `curl | bash`, `dd` to disk and more, each explained with
the safer alternative.

*Run `cmdxray <command>` and every token — subcommands, flags and their values —
is annotated in plain English, right in your terminal.*

*Every flag, pipe and argument annotated in a self-contained card you can drop
into a PR, runbook or tweet. Generate one yourself with `cmdxray -o card.svg "<command>"`.*
```sh
npx cmdxray tar -xzvf archive.tar.gz
```
```
tar -xzvf archive.tar.gz
tar archive utility — bundle files into (or extract them from) a .tar
-x extract files from an archive
-z filter the archive through gzip (.gz)
-v verbose — list each file as it is processed
-f use the next argument as the archive file name
archive.tar.gz an argument passed to the command
```
> **Built and maintained by an AI agent** (Aurelio Nakamura). This project is
> written, tested and released autonomously by an AI. Issues and PRs are welcome
> and read.
## Risk check — before you paste that install script
cmdxray flags the genuinely destructive parts of a command, so you know what a
one-liner will *do* before you run it:
```sh
cmdxray "curl -fsSL https://get.example.com/install.sh | sudo bash"
```
```
risk
⚠ DANGER Runs downloaded code unread — pipes a file fetched from the network
straight into a shell; you execute whatever the server sends, unread.
△ caution Runs as root — executes with superuser privileges.
```
It catches `curl … | bash`, `rm -rf /` (and `--no-preserve-root`), `dd of=/dev/…`,
`mkfs`, redirecting onto a disk device, fork bombs, `chmod 777`, `git push --force`,
`git reset --hard`, `sudo`, and more — and stays quiet on ordinary safe commands,
so the warnings mean something. It runs in the terminal, on the shareable card,
and in the live playground.
See the [**dangerous commands gallery**](https://aurelio-nakamura.github.io/cmdxray/danger/)
for worked examples of each — what the command does, why it's dangerous, and the
safer alternative.
## `cmdxray lint` — a CI / pre-commit gate for dangerous commands
The same danger engine can scan **files** — shell scripts, Dockerfiles, CI YAML
`run:` steps, Makefiles, git hooks — and fail the build when something genuinely
destructive slips in. It's offline, dependency-free, and reports in the familiar
`file:line` linter format:
```sh
cmdxray lint deploy.sh scripts/*.sh
cat install.sh | cmdxray lint # or read from stdin
```
```
deploy.sh:6: DANGER Runs downloaded code unread
> curl https://example.com/install.sh | sudo bash
Pipes a file fetched from the network straight into a shell — you run whatever the server sends, unread.
deploy.sh:8: DANGER Wipes critical paths, no prompt
> rm -rf --no-preserve-root /
Recursively force-deletes system-critical paths with no confirmation and no recovery.
scanned 1 file(s), 9 command line(s) — 2 danger
```
Exit code is `1` when a **DANGER** is found (so it fails CI), `0` when clean.
`--strict` also fails on cautions (`git push --force`, `chmod -R 777`), `--exit-zero`
reports without failing, and `--json` emits machine-readable findings. It even
catches [GitHub Actions `${{ }}` injection sinks](#cicd-template-injection-detection)
in workflow `run:` blocks.
### As a pre-commit hook
Add cmdxray to any repo's `.pre-commit-config.yaml` — no install step, it builds
from source:
```yaml
repos:
- repo: https://github.com/aurelio-nakamura/cmdxray
rev: v0.25.0
hooks:
- id: cmdxray-lint # fails only on DANGER
# - id: cmdxray-lint-strict # also fails on CAUTION
```
### In GitHub Actions
```yaml
- name: Scan scripts for dangerous commands
run: npx -y cmdxray lint $(git ls-files '*.sh')
```
`lint` is a **heuristic, line-oriented** scan (not a full shell parser), but the
danger rules are high-precision, so a finding almost always points at a genuinely
risky command worth a second look.
## `cmdxray guard` — stop yourself *before* you run `rm -rf /`

*With the guard installed, your shell pauses on a genuinely destructive command,
explains exactly why it's dangerous, and waits for confirmation — answer `N` and
it never runs.*
The lint gate catches dangerous commands in *files*. The **guard** catches them
at the moment you hit Enter in an interactive shell. Add one line to your
`~/.bashrc`:
```sh
eval "$(cmdxray guard bash)"
```
Now, right before a command the danger engine flags as destructive actually
runs, your shell stops and asks:
```
$ curl -fsSL https://get.example.sh | sudo bash
⚠ cmdxray: this command looks dangerous
DANGER Runs downloaded code unread
Pipes a file fetched from the network straight into a shell — you execute
whatever the server sends, sight unseen.
CAUTION Runs as root
Run it anyway? [y/N]
```
Answer `N` (the default) and the command never runs. It fires on the genuinely
scary stuff — `rm -rf /`, `curl | sudo bash`, `dd`/`mkfs`/`shred` to a device,
`git push --force`, `chmod -R 777 /`, fork bombs — and stays out of your way on
everything else.
It is deliberately **fail-open**: a cheap pure-shell pre-filter means ordinary
commands never even call cmdxray, and if cmdxray is missing or anything errors,
your command runs normally. The guard can only ever *add* a confirmation prompt
on a dangerous line — it can't break your shell or block ordinary work. Remove
the line (or run `trap - DEBUG`) to uninstall.
> bash is supported today; a zsh guard is a welcome contribution. In any shell
> you can also gate a command by hand with the exit-code check:
> `cmdxray check "<command>" && eval "<command>"`.
### `cmdxray check` — a one-command risk check for your own scripts
`check` runs the danger engine over a single command and puts the verdict in its
**exit code** (`0` = no danger, `1` = risky), so it composes anywhere:
```sh
cmdxray check "rm -rf --no-preserve-root /" # prints the warning, exits 1
cmdxray check --quiet "$cmd" && eval "$cmd" # only run $cmd if it's clean
cmdxray check --json "dd if=/dev/zero of=/dev/sda"
```
Use `--strict` to fail on CAUTION-level findings too.
## Why cmdxray
You already know what `tar -xzvf` does. You *don't* remember what
`curl -fsSL … | sh` or `find . -mtime +30 -type f -delete` or `docker run --rm -it`
does at a glance — and neither does the teammate reading your script.
- **Offline & private.** Unlike explainshell.com, cmdxray runs locally. Your
commands (which often contain hostnames, tokens and paths) never leave the box.
- **Accurate to *your* tools.** For commands it doesn't have curated, cmdxray
reads the summary from **your machine's own man pages**, so it matches the
versions you actually have installed.
- **A real parser, not a cheatsheet.** It parses the pipeline structure —
`|`, `&&`, `||`, redirects, subshells, combined short flags like `-xzvf` — and
maps every piece to plain English. It also knows **subcommands**
(`git commit`, `docker run`, `kubectl get`, `systemctl restart`, …) and links
**flag values** to their flag (`-p 8080:80`, `-o out.html`). It even decodes the
cryptic one-liners people paste most — **sed** scripts (`s/foo/bar/g` →
*substitute, every match*; `y/…/…/`; `/re/d`), **awk** programs
(`'NR>1 {print $2,$3}'`) and **jq** filters (`.items[] | select(.age > 30) |
.name` → *iterate, keep only where…, get field*). It also handles the
multi-character single-dash options of tools like **ffmpeg** (`-c:v libx264`,
`-vf scale=…`, `-crf`) and **openssl** (`req -x509 -newkey rsa:4096 -keyout …`)
so they aren't mangled into wrong per-letter guesses. tldr/cheat show *examples*;
cmdxray explains *your* exact command.
- **Share the result.** `--svg` / `--html` emit a self-contained card (below) —
perfect for a PR comment, a runbook, a lesson, or a "TIL" post. Or `--share`
to get a link that opens the breakdown in the browser for anyone you send it to.
## The shareable card
```sh
cmdxray -o card.svg "grep -rn TODO src | head -20"
cmdxray --html "docker run -it --rm -p 8080:80 -v /data:/app nginx" > card.html
```

## Usage
```
cmdxray <command...> explain a command in your terminal
cmdxray --svg <command...> emit a shareable SVG card to stdout
cmdxray --html <command...>What people ask about cmdxray
What is aurelio-nakamura/cmdxray?
+
aurelio-nakamura/cmdxray is mcp servers for the Claude AI ecosystem. X-ray any shell command, offline: an annotated breakdown of every flag, pipe & redirect — plus a shareable card. No server, no upload. It has 4 GitHub stars and its last recorded update is dated 2026-09-19.
How do I install cmdxray?
+
You can install cmdxray by cloning the repository (https://github.com/aurelio-nakamura/cmdxray) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is aurelio-nakamura/cmdxray safe to use?
+
Our security agent has analyzed aurelio-nakamura/cmdxray and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.
Who maintains aurelio-nakamura/cmdxray?
+
aurelio-nakamura/cmdxray is maintained by aurelio-nakamura. The last recorded GitHub activity is dated 2026-09-19, with 0 open issues.
Are there alternatives to cmdxray?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy cmdxray to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/aurelio-nakamura-cmdxray)<a href="https://claudewave.com/repo/aurelio-nakamura-cmdxray"><img src="https://claudewave.com/api/badge/aurelio-nakamura-cmdxray" alt="Featured on ClaudeWave: aurelio-nakamura/cmdxray" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.