
Security News
Lovable’s OJ Rewrites Vite’s Dev Server in Rust as AI Lowers the Cost of Forking Open Source
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.
X-ray any shell command, offline: an annotated breakdown of every flag, pipe and redirect — plus a shareable card. No server, no upload.
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 — paste a
command, get the annotated card live (runs 100% client-side; nothing is uploaded).
Or browse the command reference
(every curated command, flag by flag), the
popular one-liners gallery —
tar -xzvf, chmod 755, ps aux, grep -r, ss -tulpn and other invocations
people search most, each broken down — or the
dangerous commands gallery:
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>".
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.
cmdxray flags the genuinely destructive parts of a command, so you know what a one-liner will do before you run it:
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 for worked examples of each — what the command does, why it's dangerous, and the safer alternative.
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.
|, &&, ||, 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.--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.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
cmdxray <command...> explain a command in your terminal
cmdxray --svg <command...> emit a shareable SVG card to stdout
cmdxray --html <command...> emit a standalone HTML page to stdout
cmdxray --json <command...> emit a structured JSON report to stdout
cmdxray --batch-json read a JSON array of commands from stdin, emit a JSON array
cmdxray -o out.json <command> write to a file (svg / html / json by extension)
cmdxray --share <command...> explain, then print a shareable link
cmdxray --link <command...> print ONLY the shareable link (pipe to clipboard)
echo "<cmd>" | cmdxray read the command from stdin
--no-color plain terminal output
--no-man skip local man-page lookups for unknown commands
-h, --help help
--share / --link produce a URL to the offline playground with your command
pre-loaded, e.g. cmdxray --link tar -xzvf a.tgz | pbcopy. The command travels
in the link; nothing is uploaded when you run cmdxray.
Install it if you use it a lot:
npm i -g cmdxray
Pipe cmdxray's understanding of a command into your own tooling with --json.
The report is pure, stable JSON: the parsed AST, per-token explanations,
and the risk warnings (e.g. flag a curl … | bash inside a repo scan).
cmdxray --json "curl -fsSL example.com/install.sh | sudo bash"
{
"tool": "cmdxray",
"schemaVersion": 1,
"command": "curl -fsSL example.com/install.sh | sudo bash",
"risk": "danger", // "danger" | "caution" | "none"
"tokens": [ /* flat token stream, in order */ ],
"segments": [ // the AST: simple commands split by pipes/operators
{ "command": "curl", "tokens": [ { "text": "-fsSL", "kind": "shortFlag", "bundle": ["f","s","S","L"] }, … ] },
{ "command": "sudo", "tokens": [ … ] }
],
"explanations": [ // per-token flag/operand meanings
{ "token": "-L", "gloss": "follow HTTP redirects", "source": "db", "tokenIndex": 1 }
],
"warnings": [
{ "level": "danger", "title": "Runs downloaded code unread", "detail": "Pipes a file fetched from the network straight into a shell — …" }
]
}
Consume it from any language (json.loads(subprocess.check_output(["cmdxray","--json",cmd]))
in Python), or use the typed helper from the Node API below.
Spawning a Node process per command is the bottleneck when a scanner extracts
thousands of embedded shell snippets across a repo. --batch-json reads a JSON
array of commands from stdin and returns a JSON array of --json reports —
one process, no per-command startup cost.
echo '["echo hi", "curl -fsSL https://x.sh | bash"]' | cmdxray --batch-json
[
{ "tool": "cmdxray", "command": "echo hi", "risk": "none", "warnings": [], … },
{ "tool": "cmdxray", "command": "curl -fsSL https://x.sh | bash", "risk": "danger",
"warnings": [ { "level": "danger", "title": "Runs downloaded code unread", … } ], … }
]
Each array element is the same shape as --json. Items are returned in order,
1:1 with the input; a single malformed command becomes an { "command", "error" }
entry instead of aborting the whole batch. Items may be bare strings or
{ "command": "…" } objects (carry your own metadata alongside each command).
import json, subprocess
cmds = ["echo hi", "curl -fsSL https://x.sh | bash", "rm -rf /tmp/x"]
reports = json.loads(subprocess.run(
["cmdxray", "--batch-json"], input=json.dumps(cmds),
capture_output=True, text=True).stdout)
danger = [r["command"] for r in reports if r.get("risk") == "danger"]
cmdxray flags GitHub-Actions-style ${{ … }} expressions spliced directly into a
command — the classic script-injection
vector. Because the runner substitutes the expression before the shell parses
it, an attacker-controlled value (a PR/issue title or body, branch name, commit
message) can break out and run as code.
cmdxray 'echo "Reviewing: ${{ github.event.pull_request.title }}"'
# ⚠ DANGER CI expression injection — pass it through an env var and quote it ("$VAR") instead.
Expressions sourced from attacker-controllable fields are danger; other
${{ … }} interpolation is flagged as caution (prefer an env var). Ordinary
shell variables ($HOME, ${VAR}) are never flagged.
import { explain, renderSvg, renderTerminal, toJsonReport } from "cmdxray";
const res = explain("rsync -avz --delete src/ host:/dst/");
console.log(renderTerminal(res)); // colored terminal string
const svg = renderSvg(res); // shareable SVG card
const report = toJsonReport(res); // structured JSON report (AST + explanations + risk)
AI coding agents (Claude Desktop/Code, Cursor, Cline, Windsurf, …) increasingly run shell commands they generate themselves. cmdxray ships a zero-dependency MCP server so an agent can explain and safety-check a command before executing it — fully offline, no network, no upload:
check_command_safety — returns a risk verdict (danger / caution /
none) and plain-English warnings for destructive patterns (rm -rf /,
curl | sudo bash, dd/mkfs/shred/wipefs to a disk device,
chmod -R 777 /, git push --force, truncating /etc/passwd, fork bombs,
kill -9 -1, find / -delete, …). Use it as a guard before run_terminal.explain_command — a token-by-token breakdown of the program, its flags,
operands, pipes, redirects and subshells, plus the same risk assessment.Run it with npx:
// Claude Desktop / Cursor / Cline MCP config
{
"mcpServers": {
"cmdxray": { "command": "npx", "args": ["-y", "cmdxray-mcp"] }
}
}
Or npm i -g cmdxray and point the client at the cmdxray-mcp binary, or run
the container image (docker build -t cmdxray-mcp . && docker run -i --rm cmdxray-mcp). The server speaks MCP over stdio and adds no third-party
dependencies.
$(...)).-h, -v, --help, …).The curated database currently covers ~65 common commands, including build and
CI tooling — tar, grep, curl, wget, find, sed, awk, git,
docker, kubectl, systemctl, apt, npm, yarn, pnpm, pip, python,
go, cargo, gh, aws, gcloud, terraform, ssh, scp, rsync, jq,
zip, unzip, rm, cp, mv, mkdir, chmod, chown, ls, ps, kill,
xargs, head, tail, sort, cut, tr, wc, cat, du, df, ping,
dd, make — many with subcommand awareness, and it's growing. Adding a
command (or a subcommand) is a few lines in src/db.ts — accurate,
plain-English glosses welcome.
Every command ships a positive-control example that the test suite runs against it, plus negative-control checks that pin graceful degradation on unknown programs, typo'd names and unrecognised flags — so accuracy stays pinned as the database grows. See CONTRIBUTING.md for the (short) workflow; CI runs the build + tests on Node 18/20/22 for every push and PR.
MIT.
FAQs
X-ray any shell command, offline: an annotated breakdown of every flag, pipe and redirect — plus a shareable card. No server, no upload.
The npm package cmdxray receives a total of 2,314 weekly downloads. As such, cmdxray popularity was classified as popular.
We found that cmdxray demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Lovable’s OJ rewrites Vite’s dev server in Rust, reducing memory use and preview times as AI lowers the cost of open source reimplementation.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.