React Native Agents
БесплатноПоддерживается25 expert React Native agents — upgrades and New Architecture migration, debugging, animation and gestures, performance, security, offline sync, navigation and
Описание
25 expert React Native agents — upgrades and New Architecture migration, debugging, animation and gestures, performance, security, offline sync, navigation and deep linking, push notifications, permissions, iOS/Android parity, state management, accessibil
README
React Native Agents
25 expert AI agents for React Native — upgrades, debugging, animation, performance, security, offline, navigation, push, permissions, platform parity, state, accessibility, testing, native modules, observability, release, store submission, payments, background execution, and monorepos.
Works with Claude Code, Cursor, Windsurf, GitHub Copilot, Codex, Zed, Aider, MCP clients, and GitHub Actions.
React Native Agents gives your AI coding tool specialist React Native guidance instead of generic React advice. The agents inspect the project context first, use deep references on demand, and explain findings with practical fixes and verification steps.
Quick start
npx @maheshwarimrinal/react-native-agents install
Or install for one tool:
npx @maheshwarimrinal/react-native-agents install --tool cursor
npx @maheshwarimrinal/react-native-agents install --tool claude-code
npx @maheshwarimrinal/react-native-agents install --tool windsurf
Then ask your assistant a normal React Native question. You do not name the agent — the right specialist is selected from how you describe the problem:
The catalogue stutters when I scroll on Android. → Performance
Deep links open the home screen when the app is killed. → Navigation
Push works when the app is open but not when it's shut. → Push
The Allow Camera button does nothing. → Permissions
App Store rejected us for the privacy manifest. → Store Submission
Should we use Zustand or Redux Toolkit? → State
Upgrade us from 0.81 to 0.87. → Upgrade
We inherited this codebase and there are no docs. → Onboard
Or invoke one directly with the tool's supported command or chat mode — /rn-perf, /rn-nav, /rn-debug, and so on. The full list is in the agents guide.
Automate pull-request reviews
The GitHub Action reviews changed files using the relevant specialists and posts findings to the pull request.
- name: React Native audit
uses: maheshwarimrinal/react-native-agents@v1
with:
provider: anthropic
model: claude-sonnet-5
api-key: ${{ secrets.ANTHROPIC_API_KEY }}
budget-usd: '1.50'
fail-on: never
OpenAI is also supported:
- name: React Native audit
uses: maheshwarimrinal/react-native-agents@v1
with:
provider: openai
model: gpt-5
api-key: ${{ secrets.OPENAI_API_KEY }}
@v1 tracks the latest v1 release. To pin exactly, use a full tag (@v1.3.0) or a commit SHA — the SHA is the strictest option and what supply-chain-sensitive setups should prefer.
Store API keys as GitHub Actions repository secrets. Do not commit them to workflow files.
A failed run fails the check. If an agent errors — an invalid key, no credits left, a provider
outage — the audit exits non-zero rather than reporting a pass with zero findings. A green check
that means "we did not actually look" is worse than a red one. Set fail-on-error: false if you
would rather accept partial coverage.
Run the audit locally, for free
The audit speaks the OpenAI wire format, so any local server that does too — Ollama, LM Studio, llama.cpp — can drive it. No API key, no per-review cost.
ollama serve
ollama pull qwen2.5-coder:14b
npm run audit:local # your uncommitted changes
npm run audit:local -- --base main # this branch vs main
npm run audit:local -- --repo ~/my-app --base main
npm run audit:local -- --model qwen2.5-coder:32b
Set the context window before you trust the result. Ollama defaults
num_ctx to 4096 for most models no matter what the model supports, and on
overflow it does not error — it silently drops the oldest tokens, which are the
agent's instructions. You get a confident, well-formatted review of nothing, and
a green "Passed" that means nothing. Start the server with a real window:
OLLAMA_CONTEXT_LENGTH=32768 ollama serve
audit:local measures the prompt against the window and refuses to run rather
than hand you a review it cannot stand behind.
A 14B model finds the obvious defects and misses subtle ones — treat a local pass as a smoke test, not as the gate. The hosted providers remain the reference configuration for CI.
The agents
Day to day — these respond to a question, an error log, or a request:
| Agent | Focus | Command |
|---|---|---|
| 🩺 Doctor | Gradle, CocoaPods, Metro, Xcode, and environment failures — diagnosed from your actual error output | /rn-doctor |
| 🏗️ Build | New screens, components, forms, and lists that already handle safe areas, accessibility, states, and keyboard | /rn-new |
| 🔍 Debug | Builds fine but behaves wrong — render loops, state that will not update, release-only bugs, post-Flipper tooling | /rn-debug |
| 📦 Dependencies | Should we add this library — New Arch support, maintenance, native cost, lighter alternatives | /rn-deps |
| 🗺️ Onboard | Orienting in an inherited codebase — architecture map, conventions, landmines, what to read first | /rn-onboard |
| 🏪 Store Submission | Rejection triage, privacy manifests, Data Safety, ATT, target API deadlines | /rn-submit |
| 🗂️ Monorepo | Metro resolution across packages, hoisting, duplicate React, autolinking from a nested app | /rn-monorepo |
Review — these run on a diff, and on pull requests:
| Agent | Focus | Command |
|---|---|---|
| 🎬 Animation | Reanimated worklets, gestures, layout animations | /rn-animate |
| ⚡ Performance | Lists, rendering, startup, memory, bundles | /rn-perf |
| 🔒 Security | Secrets, storage, auth, TLS, WebViews, deep links, supply chain | /rn-security |
| 🧹 Code Quality | Architecture, TypeScript, hooks, state, errors, RN idioms | /rn-review |
| 🎨 UI & Accessibility | Layout, safe areas, screen readers, contrast, RTL, theming | /rn-ui |
| 🧪 Testing | Jest, RNTL, mocking, Maestro, Detox, CI | /rn-test |
| 🔧 Native Modules | TurboModules, Fabric, JSI, codegen, Swift/Kotlin, packaging, bridge migration | /rn-native |
| 🔭 Observability | Crash reporting that silently doesn't work, symbolication, breadcrumbs, tracing, PII in telemetry | /rn-observe |
| 🚀 Release | EAS, signing, OTA, stores, rollout, rollback | /rn-release |
| ⬆️ Upgrade | Version matrix, New Architecture migration, scope moves, and the regressions that compile cleanly | /rn-upgrade |
| 🧭 Navigation | Deep links, cold-start routing, auth guards, nested navigators, typed params | /rn-nav |
| 🔔 Push | APNs and FCM setup, token lifecycle, background handlers, tap routing | /rn-push |
| 🔐 Permissions | Denial and blocked states, purpose strings, rationale flows, partial grants | /rn-permissions |
| 📱 Platform Parity | iOS/Android divergence — keyboard, safe areas, hardware back, shadows, pickers | /rn-parity |
| 📴 Offline | Durable mutation queues, idempotency, optimistic rollback, conflicts, sync | /rn-offline |
| 🗃️ State | Server vs client state, selectors and re-renders, persistence and hydration | /rn-state |
| 💳 Payments | IAP and subscriptions, server-side receipt validation, restore, refunds, grace periods | /rn-pay |
| 🌙 Background | Background fetch, headless JS, location, and designing for the task not running | /rn-background |
| 🔎 Audit | Runs and consolidates every review specialist | /rn-audit |
Seven agents are deliberately excluded from pull-request routing — Doctor, Build, Debug, Dependencies, Onboard, Store Submission, and Monorepo. They need something brought to them: an error log, a question, a rejection notice. Firing them at a diff would spend tokens to say nothing.
Routing is narrow on purpose. A typical UI change reaches about three agents, not twenty-four — signals are scoped so that adding specialists does not raise the cost of an ordinary pull request.
25 playbooks and 133 reference documents. Knowledge is verified through React Native 0.87 and Expo SDK 57; always verify version-specific advice against your project.
Bundle size, measured
rn-size analyses your production bundle from its source map. It is deterministic — no model call, no API key, no cost, so it can run on every pull request for free.
npx @maheshwarimrinal/react-native-agents size
npx @maheshwarimrinal/react-native-agents size --base main --budget-delta 100kb
📦 Bundle size 📈 +332.0 KB
2.00 MB → 2.33 MB (+16.2%)
❌ Budget exceeded — increase 332.0 KB exceeds budget 100.0 KB
| moment 🆕 | +207.0 KB | 207.0 KB |
→ date-fns or dayjs (Hermes ships Intl, so formatting may need no library at all)
Bytes are attributed per source-map segment, so a package's number is measured rather than estimated. Budgets accept 250kb, 1.5mb, or a raw byte count; an invalid value is an error rather than a silently skipped check.
Telemetry
Off by default. Nothing is sent unless you turn it on.
npx @maheshwarimrinal/react-native-agents telemetry # status
npx @maheshwarimrinal/react-native-agents telemetry enable # opt in
npx @maheshwarimrinal/react-native-agents telemetry disable # opt back out
When enabled it sends anonymous adoption data only — package version, Node major, OS, and which
editor you installed for. Never paths, repository names, project names, code, findings, or IP
address. DO_NOT_TRACK=1 and RN_AGENTS_TELEMETRY=0 are honoured and override an opt-in.
Every field that can ever be transmitted is listed in TELEMETRY.md, and a test fails the build if that document falls out of sync with the code.
For download counts you do not need telemetry at all:
npx @maheshwarimrinal/react-native-agents stats
That reads the public npm registry — every download rather than a consenting sample, retroactive across every release, and it collects nothing from anyone.
Documentation
- Project page — overview of the agents, the bundle-size analyzer, and the design decisions behind them
- Real-world demo — intentionally flawed React Native project with a PR audit workflow
- Installation by tool — Claude Code, Cursor, Windsurf, Copilot, Codex, and MCP
- GitHub Action guide — providers, secrets, inputs, outputs, routing, and severity gates
- Agents guide — what each specialist catches and when to use it
- Usage guide — prompts, commands, MCP, full audits, severity, and finding format
- Architecture — source files, generator, generated targets, and design decisions
- Development guide — build, test, evals, freshness checks, and extending the project
- FAQ — versions, Expo, API keys, customization, npm, and troubleshooting
- Telemetry — every field collected, verbatim, and how to turn it off
- Contributing
- Security policy
Supported targets
| Target | Generated output |
|---|---|
| Claude Code | Plugin, marketplace entry, subagents, slash commands |
| Cursor | .cursor/rules/*.mdc |
| Windsurf | Trigger-scoped .windsurf/rules/*.md |
| GitHub Copilot | Instructions, path-scoped rules, chat modes |
| Codex, Zed, Aider | AGENTS.md and .agents/react-native/ |
| MCP clients | Zero-dependency stdio MCP server |
License
MIT — see LICENSE.
Support the project
If React Native Agents saves you time, you can support its ongoing maintenance. The agents are MIT and stay that way — sponsorship pays for the upkeep behind them: tracking React Native releases, refreshing the knowledge base, and adding specialists.
Recurring support goes through GitHub Sponsors. For a one-off, there is coffee:
Установить React Native Agents в Claude Desktop, Claude Code, Cursor
unyly install react-native-agentsСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add react-native-agents --env OLLAMA_CONTEXT_LENGTH="" -- npx -y @maheshwarimrinal/react-native-agentsПошаговые гайды: как установить React Native Agents
FAQ
React Native Agents MCP бесплатный?
Да, React Native Agents MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для React Native Agents?
Да, требуются переменные окружения: OLLAMA_CONTEXT_LENGTH. Unyly подставит их в конфиг при установке.
React Native Agents — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить React Native Agents в Claude Desktop, Claude Code или Cursor?
Открой React Native Agents на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
автор: duxiaohuiSupabase
Database, auth and storage
автор: SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare React Native Agents with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
