CLI Command Explainer
@zmwaiworld
cmd-explain
Know what every shell command does โ before you approve it.
MCP server for AI coding agents ยท Works with Kiro, Cursor, VS Code, Windsurf, Claude Code
Quick Start ยท How It Works ยท Supported IDEs ยท Local AI
The Problem
AI coding agents run shell commands on your machine. They show an approval dialog, but you're left guessing:
Agent wants to run: curl -sL https://raw.githubusercontent.com/some-tool/install.sh | sudo bash
[ Approve ] [ Deny ]
Is that safe? What does -sL mean? Why sudo? Most people either blindly approve (dangerous) or Google it (slow, breaks flow).
The Fix
cmd-explain intercepts every shell command before it runs and shows you a plain-English explanation with a risk rating:
๐ด Transfer data from or to a URL (silent, follow redirects),
then GNU Bourne-Again SHell
Risk: high ยท Source: built-in
Agent wants to run: curl -sL https://raw.githubusercontent.com/some-tool/install.sh | sudo bash
[ Approve ] [ Deny ]
Now you know: it silently downloads a script and pipes it to bash with root privileges. That's a one-line rootkit vector. Easy deny โ or at least worth inspecting first.
More Examples
Commands that agents actually suggest โ and that you'd probably approve without thinking:
๐ด chmod -R 777 .
Change file permissions (recursive)
Risk: high ยท Source: built-in
โ Makes every file in your project world-writable
๐ก curl -sL https://install.example.com | bash
Transfer data from or to a URL (silent, follow redirects),
then GNU Bourne-Again SHell
Risk: medium ยท Source: built-in
โ Downloads and executes a remote script. Classic supply chain risk.
๐ด git push origin main --force
Upload local commits to a remote (force push, set upstream)
Risk: high ยท Source: built-in
โ Overwrites remote history. Other people's commits may be lost.
๐ด rm -rf node_modules dist .next .cache && npm ci
Remove files or directories (recursive, force without confirmation),
then clean install from lockfile
Risk: high ยท Source: built-in
๐ก npx prisma db push --accept-data-loss
Run a command from a local or remote npm package without installing
Risk: medium ยท Source: built-in
โ That --accept-data-loss flag means exactly what it says.
๐ด kubectl exec -it prod-db-0 -- psql -c "DROP TABLE users"
Execute a command in a container
Risk: high ยท Source: built-in
โ Running SQL directly on a production pod.
Every explanation includes:
- What it does in plain English, including flags and shell patterns (
2>&1,|| true,>/dev/null) - Risk level โ low (read-only), medium (state-changing), high (destructive), or unknown
- Source โ
built-in(241-command dictionary),system(man pages), orai-generated(LLM)
Quick Start
npx cmd-explain setup
That's it. Auto-detects your IDE, installs the MCP server, creates the pre-command hook. Restart your IDE and you're protected.
Requirements: Node.js 18+. No API keys, no Ollama, no config files to edit.
How It Works
cmd-explain is an MCP server with one tool: explain_command. When your agent is about to run a shell command, a pre-command hook calls this tool automatically.
Explanations come from three tiers, checked in order:
| Tier | Source | Speed | Coverage | Needs Setup? |
|---|---|---|---|---|
| 1 | Built-in dictionary โ 240+ programs with 440+ command explanations (git, docker, npm, kubectl, terraform, aws, brew, cargo, and more) | <1ms | ~90% of agent commands | No |
| 2 | System man pages โ parses whatis output for any installed CLI tool | ~50ms | Most installed tools | No |
| 3 | Local AI โ Ollama, OpenAI, or Anthropic for anything tiers 1โ2 miss | ~1s | Everything | Optional |
Tiers 1 and 2 are fully offline with zero dependencies. Tier 3 is opt-in.
Shell Pattern Detection
cmd-explain understands shell syntax that agents commonly use:
| Pattern | Annotation |
|---|---|
2>&1 | redirect stderr to stdout |
>/dev/null 2>&1 | suppress all output |
2>/dev/null | suppress error output |
|| true | ignore exit code |
set -e | exit on error |
set -x | print commands before execution |
set -o pipefail | fail on any pipe segment error |
$(...) | command substitution |
These are appended to the explanation so you always know what the full command is doing.
Risk Classification
| Level | Meaning | Examples |
|---|---|---|
| ๐ข low | Read-only, no side effects | ls, cat, grep, git status, curl GET |
| ๐ก medium | State-changing but reversible | git commit, npm install, mkdir, docker build |
| ๐ด high | Destructive or irreversible | rm -rf, docker rm -f, terraform destroy, find -delete |
| โช unknown | Not recognized | Custom/proprietary CLIs |
Supported IDEs
One setup command handles everything. Each IDE gets the right hook format automatically.
| IDE | Hook Event | Shell Coverage |
|---|---|---|
| Kiro | preToolUse | โ All shell commands |
| VS Code Copilot | PreToolUse | โ All shell commands |
| Cursor | beforeShellExecution | โ Dedicated shell hook |
| Windsurf | pre_run_command | โ Dedicated shell hook |
| Claude Code | PreToolUse | โ Via matcher |
npx cmd-explain setup # Auto-detect all IDEs
npx cmd-explain setup --ide kiro # Target one IDE
npx cmd-explain setup --no-hooks # MCP server only
Optional: Local AI
For commands not in the dictionary or man pages, enable local AI explanations powered by Ollama (~1GB one-time download):
brew install ollama
brew services start ollama
ollama pull qwen2.5-coder:1.5b
npx cmd-explain setup --ollama qwen2.5-coder:1.5b
The setup command validates each step โ if Ollama isn't installed or the model isn't pulled, it tells you exactly what to run.
Cloud APIs also work:
npx cmd-explain setup --openai-key sk-...
Supported providers: Ollama, OpenAI (OPENAI_API_KEY), Anthropic (ANTHROPIC_API_KEY).
Manual Install
Add to your IDE's MCP config:
{
"mcpServers": {
"cmd-explain": {
"command": "npx",
"args": ["-y", "cmd-explain"]
}
}
}
Config locations:
- Kiro:
.kiro/settings/mcp.json - VS Code:
.vscode/mcp.json - Cursor:
.cursor/mcp.json - Windsurf:
~/.codeium/windsurf/mcp_config.json - Claude Code:
~/.claude/settings.json
Uninstall
npx cmd-explain uninstall
Removes the MCP config and hook files from all detected IDEs. Clean removal, nothing left behind.
Platform Support
| macOS | Linux | Windows | |
|---|---|---|---|
| Dictionary (Tier 1) | โ | โ | โ |
| Man pages (Tier 2) | โ | โ | โ ๏ธ --help only |
| Local AI (Tier 3) | โ | โ | โ |
| Setup CLI | โ | โ | โ |
License
MIT
Server Config
{
"mcpServers": {
"cmd-explain": {
"command": "npx",
"args": [
"-y",
"cmd-explain"
]
}
}
}