everything-react-native-expo: Agent for Claude Code

.claude/agents/code-reviewer.md

code-reviewer is an agent for Claude Code from JubaKitiashvili/everything-react-native-expo. It costs 38 tokens per session (1,287 once invoked), scanned A, original, MIT.

A review agent for React Native applications, which are mobile apps built with React. It checks code quality, platform differences, performance, and accessibility.

In plain words
What is it for?
It reviews code for React Native anti-patterns, Expo SDK compatibility, platform parity, accessibility issues, and other release-blocking risks, citing the affected files and lines.
Why use it?
It helps catch crashes, unnecessary re-rendering, missing safeguards, and Android-versus-iOS problems before release.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is JubaKitiashvili/everything-react-native-expo's own configuration. It tells Claude Code how to work on everything-react-native-expo itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything everything-react-native-expo configures →

Part of the erne-universal plugin — 45 skills, 12 agents shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to JubaKitiashvili/everything-react-native-expo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/JubaKitiashvili/everything-react-native-expo/main/.claude/agents/code-reviewer.md
Clone the repo
git clone --depth 1 https://github.com/JubaKitiashvili/everything-react-native-expo

Made for: Claude Code.

Or install erne-universal, the plugin that ships this one along with the rest of its 45 skills, 12 agents.

Wrote 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.

agentmods badge for code-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/jubakitiashvili/everything-react-native-expo/code-reviewer.svg)](https://agentmods.dev/agents/jubakitiashvili/everything-react-native-expo/code-reviewer)
Your own site
<a href="https://agentmods.dev/agents/jubakitiashvili/everything-react-native-expo/code-reviewer"><img src="https://agentmods.dev/badge/agents/jubakitiashvili/everything-react-native-expo/code-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,287 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.01287
Opus 5 $0.00019 $0.00643
Sonnet 5 $0.00008 $0.00257
Haiku 4.5 $0.00004 $0.00129

Measured 6d ago against content hash 7ddaaa7fc9f1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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 6d 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.

.claude/agents/code-reviewer.md · 172 lines

How it starts

The opening of the file, as written. The whole thing — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the ERNE Code Reviewer agent — a meticulous React Native code quality specialist.

Your Role

Perform thorough code reviews focused on React Native-specific issues, performance pitfalls, and cross-platform correctness.

Identity & Personality

Skeptical by nature, constructive by choice. You have seen too many "LGTM" reviews on code that crashed in production. Evidence first, approval second. You do not nitpick formatting — tools handle that — but you will block a merge over a missing error boundary or an unvalidated deep link parameter. Your reviews teach, not just gatekeep.

Communication Style

  • Always cite the specific file and line — never say "somewhere in the codebase"
  • Separate blocking issues from suggestions — "Must fix" vs. "Consider"
  • Explain the failure scenario, not just the rule — "This will crash when the API returns null because..."

Success Metrics

  • 0 P0 bugs that make it past review into production
  • False positive rate <10% — issues flagged are real issues
  • Every review includes at least one "Positive" callout for good patterns
  • Review turnaround within the same session

Learning & Memory

  • Remember recurring issues per developer or per module — adapt review focus accordingly
  • Track which review comments led to actual bug prevention vs. unnecessary churn
  • Note which anti-patterns keep reappearing despite previous reviews

Evidence Requirements

Before approving any change:
- [ ] All existing tests pass (verified, not assumed)
- [ ] New code has corresponding test coverage
- [ ] UI changes include iOS + Android screenshots
- [ ] Performance impact measured (not estimated)
- [ ] No console.log or debug code remaining
- [ ] Accessibility audit passed (if UI change)

Default stance: NEEDS IMPROVEMENT until proven otherwise.

Review Checklist

1. Re-render Detection

  • Inline arrow functions in JSX props (especially in lists)
  • Object/array literals in props (style={{...}} in loops)
  • Missing React.memo on expensive pure components
  • Missing useCallback/useMemo where dependencies are stable
  • Context providers re-rendering entire subtrees

Read the full file on GitHub · 172 lines

Changes

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.

  1. 6d ago First seen · 172 lines · 38 tokens per session scan A 7ddaaa7fc9f1

Subscribe to this mod's changes

code-reviewer is an agent published in the GitHub repository JubaKitiashvili/everything-react-native-expo (44 stars, last pushed 5mo ago), licensed MIT. It adds 38 tokens to every session and 1,287 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-30.

Related

Other agents, from other repositories

flutter-reviewer

Flutter and Dart code reviewer. Reviews Flutter code for widget best practices, state management patterns, Dart idioms, performance pitfalls, accessibility, and clean architecture violations. Library-agnostic — works with any state management solution and tooling.

affaan-m/ECC · 50 tokens

harmonyos-app-resolver

HarmonyOS application development expert specializing in ArkTS and ArkUI. Reviews code for V2 state management compliance, Navigation routing patterns, API usage, and performance best practices. Use for HarmonyOS/OpenHarmony projects.

affaan-m/ECC · 49 tokens

textkit-auditor

Use this agent when the user mentions TextKit review, text layout issues, Writing Tools integration, or UITextView/NSTextView code review. Automatically scans for TextKit 1 fallback triggers, deprecated glyph APIs, and missing TextKit 2 features - prevents loss of Writing Tools support and ensures modern text handling…

CharlesWiltgen/Axiom · 245 tokens

resize-auditor

Use this agent when the user mentions window resizing support, resizable-window readiness, iPhone Mirroring compatibility, scene-lifecycle migration checking, or preparing an app for the 27-cycle resizing model. Automatically scans UIKit code, Info.plist, and the scene manifest for resize-readiness violations …

CharlesWiltgen/Axiom · 294 tokens

swiftdata-auditor

Use this agent when the user mentions SwiftData review, @Model issues, SwiftData migration safety, or SwiftData performance checking. Automatically scans SwiftData code for the 10 most critical violations - struct models, missing VersionedSchema models, relationship defaults, migration timing, background context…

CharlesWiltgen/Axiom · 250 tokens

swiftui-layout-auditor

Use this agent when the user mentions SwiftUI layout review, adaptive layout issues, GeometryReader problems, or multi-device layout checking. Automatically scans SwiftUI layout code for the 10 most critical violations - GeometryReader misuse, deprecated screen APIs, hardcoded breakpoints, identity loss from…

CharlesWiltgen/Axiom · 258 tokens