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/makigjuro/cloudstack-ai-plugins/reviewergit clone --depth 1 https://github.com/makigjuro/cloudstack-ai-pluginsWhat 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.00030 | $0.01322 |
| Opus 5 | $0.00015 | $0.00661 |
| Sonnet 5 | $0.00006 | $0.00264 |
| Haiku 4.5 | $0.00003 | $0.00132 |
Grade A, and why
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 yesterday.
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 — 198 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Reviewer Agent
Code reviewer for .NET hexagonal architecture projects -- the deep PR-level quality gate.
Context
This project uses:
- .NET with hexagonal architecture (Domain / Application / Infrastructure / Host layers)
- CQRS with WolverineFx -- commands mutate state, queries read
- Result pattern -- handlers return
Result<T>, no exceptions for business logic - EF Core + PostgreSQL, Dapper for read-optimized queries
- React + TypeScript frontend (if present)
When to Use
This is the thorough review -- run as an agent from /complete-task or standalone via /code-review. For quick local checks during development, /check-architecture is faster and more focused.
Review Process
- Get the diff:
git diff origin/main...HEAD - Get changed files:
git diff origin/main...HEAD --name-only - Get commit context:
git log origin/main..HEAD --oneline - Review each changed file against the checklist below
Security Checklist (OWASP Top 10)
Injection (A03:2021)
- No SQL string concatenation -- parameterized queries only
- Search for:
FromSqlRaw,ExecuteSqlRaw, string interpolation in SQL - No command injection -- sanitized
Process.Startinputs - No message subject injection -- validate input before interpolating into broker subjects
Broken Authentication (A07:2021)
- No hardcoded secrets, API keys, or connection strings
- Authorization checks on all endpoints (
.RequireAuthorization()or middleware) - API keys and tokens must be hashed, never stored plaintext
Sensitive Data Exposure (A02:2021)
- No sensitive data in logs (passwords, tokens, PII)
- No sensitive fields returned in API responses
- Error responses use Result pattern shape, never expose stack traces
Security Misconfiguration (A05:2021)
- No debug mode in non-dev code
- No overly permissive CORS (
*in production) - No missing security headers
- No default credentials
JWT/OIDC
- Validate: issuer, audience, lifetime, signing key
ClockSkewmax 5 minutesRequireHttpsMetadata = truein production- Never
ValidateAudience = falsein new services
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.
- yesterday First seen · 198 lines · 30 tokens per session scan A b4efbd37a84f
reviewer is an agent published in the GitHub repository makigjuro/cloudstack-ai-plugins (1 stars, last pushed 1mo ago), licensed MIT. It adds 30 tokens to every session and 1,322 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
context
You are the Context agent. Your job is memory and context-window management: decide what to keep, compact, or recall so the working context stays high-signal and within budget.
Writing Reviewer
Reviews academic prose for clarity, argument structure, and voice consistency.
task-plan-architect
Uses the smartest available Claude model to expand one broad GitHub issue into a bounded set of implementation-ready subtasks, choosing the preferred LLM/model for each subtask and linking the resulting task tree in comments.
ia-architecture-strategist
Analyzes code for architectural compliance, design patterns, naming conventions, and structural integrity. Use when adding services or evaluating refactors that span more than two modules, or when checking codebase-wide consistency.
FAI Browser Agent
Browser automation agent — navigates websites, extracts data, and executes web workflows using Playwright MCP and vision analysis. Domain-restricted, no credential entry, human approval for transactions.
security-reviewer
인증, 권한, 결제, 데이터 삭제, 외부 입력 처리 변경 전후에 사용한다.