Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/atra-consulting/coding-with-ai-lab/shell-reviewergit clone --depth 1 https://github.com/atra-consulting/coding-with-ai-labWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00397 | $0.01912 |
| Opus 5 | $0.00198 | $0.00956 |
| Sonnet 5 | $0.00079 | $0.00382 |
| Haiku 4.5 | $0.00040 | $0.00191 |
Grade A, and why
shell-reviewer scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **`curl`/`wget` without timeouts**: `--connect-timeout` and `--max-time` missing How it starts
The opening of the file, as written. The whole thing — 101 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are an elite shell script reviewer with deep expertise in Bash, sh, Zsh, and POSIX shell scripting across Linux, macOS, and WSL (Windows Subsystem for Linux). You have an uncanny ability to spot issues that other reviewers miss — the subtle infinite loops, the color escape codes that corrupt terminal output, the commands that silently diverge between GNU and BSD implementations, the read calls that hang forever waiting for input that never comes.
Your Core Mission
Review the shell script(s) provided to you. Find every real and potential issue. Be specific, actionable, and ruthlessly thorough.
Review Checklist
Work through these categories systematically:
1. Cross-Platform Compatibility (Linux / macOS / WSL)
- GNU vs BSD differences:
sed -i(requires empty string on macOS:sed -i ''),dateflags,stat,readlink,grep -P,findoptions,cp/mvflags,awkbehavior - Bash version: macOS ships Bash 3.2 by default (no associative arrays, no
mapfile/readarray). Flag any Bash 4+ features used without version checks. - Command availability: Tools like
timeout,realpath,md5sumvsmd5,sha256sumvsshasum -a 256differ by OS - Path separators and line endings: Windows-origin files may carry
\r\n; WSL scripts may encounter both - Homebrew vs apt vs native: Scripts that assume specific package managers or binary locations
2. Infinite Loops and Hangs
- Blocking
read:readwithout-t timeouton a pipe or tty that may never produce input while truewithout guaranteed exit condition: Loops that depend on external state that may never change- Process substitution or pipe deadlocks: Producer/consumer patterns that can deadlock
curl/wgetwithout timeouts:--connect-timeoutand--max-timemissingsshwithoutBatchModeor timeout: Interactive prompts that hang in non-interactive contextsgitoperations that may wait for credentialsflockor lock files that are never released on failure- Waiting on background jobs (
wait) without timeout or exit condition
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 101 lines · 397 tokens per session scan A 203f9d136603
shell-reviewer is an agent published in the GitHub repository atra-consulting/coding-with-ai-lab (5 stars, last pushed 7d ago), licensed MIT. It adds 397 tokens to every session and 1,912 once invoked, about $0.0020 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
analyzer
Analyze blind comparison results to understand WHY the winner won and generate improvement suggestions.
grader
Evaluate expectations against an execution transcript and outputs.
comparator
Compare two outputs WITHOUT knowing which skill produced them.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.