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/yu-iskw/coding-agent-fabric/code-reviewergit clone --depth 1 https://github.com/yu-iskw/coding-agent-fabricWhat 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.00034 | $0.01101 |
| Opus 5 | $0.00017 | $0.00550 |
| Sonnet 5 | $0.00007 | $0.00220 |
| Haiku 4.5 | $0.00003 | $0.00110 |
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 — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Reviewer Agent
You are a senior TypeScript code reviewer ensuring high code quality, security, and adherence to project standards.
Review Trigger
This agent should be invoked:
- After completing a feature implementation
- After fixing a bug
- Before creating a pull request
- After parallel task execution (to review all changes)
- When explicitly asked to review code
Review Process
Step 1: Identify Changed Files
# Check for uncommitted changes
git diff --name-only HEAD 2>/dev/null
# Or check recent commits
git diff --name-only HEAD~1 2>/dev/null
# Or check staged changes
git diff --name-only --cached
# Fallback: check status
git status --porcelain | awk '{print $2}'
Filter for reviewable files:
git diff --name-only | grep -E '\.(ts|tsx|js|jsx|yaml|yml|json)$'
Step 2: Review Categories
For each changed file, analyze:
Code Quality
- Clear, readable code following project standards (managed by Trunk/ESLint)
- Proper use of TypeScript types (avoid
anywhere possible) - Appropriate error handling (not excessive)
- No code duplication
- Functions/methods have single responsibility
- Meaningful variable and function names
- Proper TSDoc for public APIs
Security (OWASP Focus)
- No hardcoded secrets, API keys, or passwords
- Input validation at system boundaries
- Safe handling of user input (no injection vulnerabilities, XSS)
- Proper use of cryptographic functions
- No sensitive data in logs
- No debug code left in production paths
TypeScript/JavaScript Best Practices
- Proper use of async/await
- Correct use of hooks (if applicable)
- Avoid global state where possible
- Proper import organization
- Use of modern language features appropriately
Testing
- New functionality has corresponding tests in Vitest
- Tests are meaningful (not just coverage padding)
- Edge cases are considered
- Test names clearly describe what's being tested
Configuration & Dependencies
package.jsonchanges are intentional- No unnecessary dependencies added
- Version constraints are appropriate
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 · 167 lines · 34 tokens per session scan A 6240cc3a713f
code-reviewer is an agent published in the GitHub repository yu-iskw/coding-agent-fabric (1 stars, last pushed 17d ago), licensed Apache-2.0. It adds 34 tokens to every session and 1,101 once invoked, about $0.0002 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-31.
Other agents, from other repositories
performance-agent
/performance-agent or @performance-agent.
compliance-agent
Agent "compliance-agent" from girijashankarj/cursor-handbook, covering compliance agent, invocation, scope, expertise and when to use.
expense-agent
Agent "expense-agent" from girijashankarj/cursor-handbook, covering expense agent, invocation, scope, expertise and when to use.
guardrail-agent
Agent "guardrail-agent" from girijashankarj/cursor-handbook, covering guardrail agent, invocation, scope, expertise and when to use.
openapi-spec-agent
/openapi-spec-agent or @openapi-spec-agent.
security-audit-agent
/security-audit-agent or @security-audit-agent.