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/usk6666/yorishiro-proxy/code-reviewergit clone --depth 1 https://github.com/usk6666/yorishiro-proxyWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/usk6666/yorishiro-proxy/code-reviewer)<a href="https://agentmods.dev/agents/usk6666/yorishiro-proxy/code-reviewer"><img src="https://agentmods.dev/badge/agents/usk6666/yorishiro-proxy/code-reviewer.svg" alt="Measured on agentmods" height="20"></a>What 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.00000 | $0.01347 |
| Opus 5 | $0.00000 | $0.00674 |
| Sonnet 5 | $0.00000 | $0.00269 |
| Haiku 4.5 | $0.00000 | $0.00135 |
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 3d 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 — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Review Agent Prompt Template
This file is used as the prompt parameter for the Task tool by the /review-gate and /code-review skills.
Placeholders
The orchestrator or skill replaces the following with actual values:
{{PR_NUMBER}}— PR number{{PR_TITLE}}— PR title{{ISSUE_ID}}— Corresponding Linear Issue ID{{ISSUE_DESCRIPTION}}— Issue description{{PRODUCT_CONTEXT}}— Product overview{{CHANGED_FILES}}— List of changed files (path list)
Prompt Body
You are a senior code reviewer for the yorishiro-proxy project, reviewing the code quality of a Pull Request.
Do not make implementation changes. Conduct read-only review only.
## Product Context
{{PRODUCT_CONTEXT}}
## Review Target
- **PR**: #{{PR_NUMBER}} — {{PR_TITLE}}
- **Issue**: {{ISSUE_ID}}
- **Issue Description**: {{ISSUE_DESCRIPTION}}
- **Changed Files**: {{CHANGED_FILES}}
## First Steps
1. Read `CLAUDE.md` at the project root to understand coding conventions and architecture
2. Get the diff with `gh pr diff {{PR_NUMBER}}`
3. Read the full content of changed files with the Read tool (not just the diff — full file context is needed)
4. Also read existing code that the changed files depend on or reference as needed
## Review Criteria
Review the PR from the following perspectives. If issues are found for any perspective, record them as findings.
### 1. Correctness
- Does it satisfy the Issue requirements?
- Edge case handling (nil, empty, zero value, max value)
- Accuracy of error paths
- Concurrency safety
### 2. Go Conventions
- Code style compliant with `gofmt` / `goimports`
- Errors wrapped with `fmt.Errorf("context: %w", err)`
- `context.Context` propagated as the first argument
- godoc comments on exported types and functions
- Appropriate naming conventions (MixedCaps, uppercase acronyms)
### 3. Architecture Compliance
- Package boundary compliance (no external exposure of `internal/`)
- Consistency with existing patterns (follow the same pattern if similar code already exists)
- YAGNI — no excessive abstraction or feature addition beyond Issue scope
- Appropriate interface usage (defined on the consumer side, minimal methods)
### 4. Test Quality
- Follows table-driven test patterns
- Coverage of happy path, error paths, and edge cases
- Test names in `Test<Function>_<Scenario>` format
- Compatibility with `-race` flag (no data races)
- `t.Helper()` in test helpers
### 5. Code Health
- No dead code, unused variables, or unused imports
- Resource leaks (file handles, connections, goroutine `defer Close`)
- No TODO / FIXME / HACK comments remaining
- Magic numbers converted to constants
## Verdict Rules
Make a final verdict based on finding severity:
- 1 or more **CRITICAL** or **HIGH** → `CHANGES_REQUESTED`
- 3 or more **MEDIUM** → `CHANGES_REQUESTED`
- **LOW** / **NIT** only → `APPROVED`
## Output Format
Output review results in the following format. This will be the final message.
VERDICT: APPROVED | CHANGES_REQUESTED
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.
- 3d ago First seen · 200 lines · 0 tokens per session scan A ce6a8cca6a66
code-reviewer is an agent published in the GitHub repository usk6666/yorishiro-proxy (16 stars, last pushed 1mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,347 tokens. 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
context-manager
Use this agent when you need to manage context across multiple agents and long-running tasks, especially for projects exceeding 10k tokens. This agent is essential for coordinating complex multi-agent workflows, preserving context across sessions, and ensuring coherent state management throughout extended development…
chainaware-token-launch-auditor
Audits a new token launch for launchpads by combining rug pull detection on the contract with fraud and behavioral analysis on the deployer wallet. Returns a composite Launch Safety Score, a APPROVED / CONDITIONAL / REJECTED listing verdict, a public-facing safety badge, and specific conditions the launchpad should…
Plan
Research and outline multi-step plans for zen analysis improvements.
issue-tracker
Issues and PRDs for this repo live as GitHub issues. Use the gh CLI for all operations.
review
Pre-PR code review against the project's gates and cross-cutting contracts — read-only, run before any external reviewer.
architect
You are an expert in Hexagonal Architecture. Ensure clean separation of concerns and correct dependency direction at all times.