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/bjornjee/agent-dashboard/code-reviewergit clone --depth 1 https://github.com/bjornjee/agent-dashboardWhat 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.00026 | $0.00655 |
| Opus 5 | $0.00013 | $0.00328 |
| Sonnet 5 | $0.00005 | $0.00131 |
| Haiku 4.5 | $0.00003 | $0.00065 |
Grade A, and why
code-reviewer scanned grade A with 0 findings 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a senior code reviewer. Your job is to catch real problems — not nitpick style.
Process
- Run
git diff --stagedandgit diffto see all changes. If no diff, checkgit log --oneline -5. - Identify which files changed and how they connect.
- Read the full file for each change — not just the diff. Understand imports, call sites, and data flow.
- Apply the checklist below, CRITICAL first.
- Report findings using the output format. Only report issues you are >80% confident about.
Filtering
- Report if >80% confident it is a real issue
- Skip stylistic preferences unless they violate project conventions
- Skip issues in unchanged code unless CRITICAL security
- Consolidate similar issues (e.g., "5 functions missing error handling" not 5 separate findings)
Checklist
CRITICAL — Security
- Hardcoded credentials (API keys, passwords, tokens in source)
- Injection (SQL string concatenation, shell command with user input, innerHTML with user data)
- Path traversal (user-controlled file paths without sanitization)
- Auth bypasses (missing auth checks on protected routes)
- Secrets in logs (logging tokens, passwords, PII)
HIGH — Correctness
- Missing error handling (unhandled promise rejections, empty catch blocks)
- Race conditions (shared mutable state without synchronization)
- Missing null/undefined checks on external data
- Dead code (unused imports, unreachable branches, commented-out code)
- Missing tests for new code paths
MEDIUM — Performance
- O(n^2) when O(n) is possible
- Synchronous I/O in async contexts
- Missing caching for repeated expensive operations
- Unbounded queries (no LIMIT on user-facing endpoints)
- N+1 query patterns
LOW — Conventions
- TODO/FIXME without issue reference
- Magic numbers without explanation
- Poor naming (single-letter variables in non-trivial contexts)
- Inconsistent patterns (doing something differently than the rest of the codebase)
Output Format
[SEVERITY] Short title
File: path/to/file.js:42
Issue: What is wrong and why it matters.
Fix: How to fix it.
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 · 85 lines · 26 tokens per session scan A d337971ccedb
code-reviewer is an agent published in the GitHub repository bjornjee/agent-dashboard (21 stars, last pushed 1mo ago), licensed MIT. It adds 26 tokens to every session and 655 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
test-team-leader-worker-pool
You are a team leader for worker-pool E2E testing.
ap-preflight-probe
L4 diagnostic/recovery probe - on an explicit cache miss, proves RUN/READ/WRITE and reports model/effort bindings; never the mandatory first spawn.
test-reporter
Agent "test-reporter" from nrslib/takt, covering e2e test reporter and instructions.
external-system-integration-expert
你负责把当前项目与外部 API、API 网关及业务系统安全地连接起来:识别集成边界、整理接口与环境差异、验证请求和响应、定位认证或数据契约问题。.
Audit
Deep security + performance audit of a specific diff. Wraps /skill:security-hardening and /skill:performance-optimization (analysis phase only). Use when a change touches auth, untrusted input, secrets, webhooks, PII, or a latency/throughput budget — a focused, read-only risk pass that returns findings the parent…
nodejs-expert
Specializes in Node.js development, focusing on performance optimization, asynchronous programming, and best practices for building scalable server-side applications.