SkillVaultskills Browse all 1,000+ skills

Debugging · Version 1.1.0 · Reviewed 2026-08-02

React Native Production Debug Specialist

Diagnose React Native production incident triage and React Native root-cause isolation with evidence, explicit trade-offs, and a verification plan.

4 method steps 7 documented failure modes 5 diagnostic checks 7 quality gates

Diagnoses production failures from runtime evidence instead of symptom matching in React Native using component tree, native modules, navigation state, and release bundles and JS and UI thread timing, bridge traffic, crash reports, and startup traces, with explicit attention to chatty cross-boundary calls or lifecycle races freezing UI and losing state.

₹199 one-time

Get this skill archive

Install in your AI coding tool

SkillVault packages this skill in the open Agent Skills format for five leading coding tools.

What this skill helps you do

  • React Native production incident triage
  • React Native root-cause isolation
  • React Native fix verification

How React Native Production Debug Specialist works

You provide

Component code, field metrics, and the failing interaction

It inspects

Render triggers and layout stability for React Native production incident triage

It decides

A React Native root-cause isolation fix targeting the measured vital

You verify

Field Core Web Vitals and keyboard traversal re-checked

What it checks first

React Native Production Debug Specialist diagnoses production failures from runtime evidence instead of symptom matching in React Native using component tree, native modules, navigation state, and release bundles and JS and UI thread timing, bridge traffic, crash reports, and startup traces, with explicit attention to chatty cross-boundary calls or lifecycle races freezing UI and losing state. Use it when the work involves React Native production incident triage, React Native root-cause isolation, React Native fix verification.

  1. Whether re-renders come from changed props, changed context, or a new object identity created during render.
  2. Which Core Web Vital is failing, since LCP, INP, and CLS have completely different causes and fixes.
  3. Whether state lives at the right level, because state placed too high re-renders subtrees that never read it.
  4. Effect dependency arrays that lie, either omitting a dependency or including an unstable one.
  5. Bundle composition: whether a single dependency dominates the critical path.

Failure modes it recognizes

  • An inline object or arrow function in props defeating memoization on every render.
  • A `useEffect` that sets state derived from props, causing a double render and occasional flicker.
  • Layout shift from images and embeds without reserved dimensions, damaging CLS after content loads.
  • A long task on the main thread blocking interaction response and inflating INP.
  • Stale closure capturing an old value inside an interval or subscription callback.
  • Hydration mismatch from rendering time, randomness, or browser-only APIs during server render.
  • Focus lost after a route change, leaving keyboard and screen-reader users stranded.

Answers it will reject

  • Wrapping everything in `memo` and `useCallback`, which adds comparison cost without removing the identity churn.
  • Fixing a race by adding a timeout, which reorders the symptom instead of the cause.
  • Using `aria-label` to patch a control that should have been a native element with real semantics.
  • Measuring performance in development mode, where the framework runs extra work that does not ship.

Decision rules it applies

  • Move state down or split context before reaching for memoization.
  • Derive during render instead of synchronizing with an effect; effects are for external systems.
  • Reserve space for anything that loads asynchronously to protect layout stability.
  • Prefer native semantic elements; ARIA is a correction layer, not a foundation.

Evidence it asks for

  • Profile with the framework profiler to attribute renders to a specific trigger.
  • Collect field Core Web Vitals rather than lab scores, since lab conditions hide real-device behavior.
  • Test keyboard-only navigation and screen-reader output for any interactive change.

The method inside

  1. Reconstruct the symptom timeline and define what healthy behavior would look like for React Native production incident triage.
  2. Rank hypotheses for React Native root-cause isolation by evidence, blast radius, and ability to explain every observed symptom.
  3. Run the cheapest discriminating check for React Native fix verification; update confidence only when evidence changes.
  4. Separate immediate stabilization, confirmed cause, contributing conditions, and prevention; finish with a reproducible verification.

Deliverables

  • React Native production incident triage assessment
  • React Native root-cause isolation decision and action plan
  • React Native fix verification verification checklist

Evidence requirements

  • Exact symptoms and timestamps
  • Reproduction conditions and recent changes
  • Logs, traces, metrics, code, or configuration

Quality gates

  • Every material claim traces to supplied evidence or is labeled as a hypothesis.
  • The response follows the declared deliverable contract.
  • No execution, access, measurement, or verification is invented.
  • Secrets and personal data are redacted rather than repeated.
  • The user receives a concrete independent verification step.
  • The relevant failure modes in this domain were considered rather than only the reported symptom.
  • No listed anti-pattern was recommended as a solution.

Example task

Input

Apply the production debug specialist to our React Native system before the next production change. We can provide component tree, native modules, navigation state, and release bundles; the main concern is chatty cross-boundary calls or lifecycle races freezing UI and losing state.

Expected output

Start with JS and UI thread timing, bridge traffic, crash reports, and startup traces and split the affected population before changing configuration. The leading hypothesis is chatty cross-boundary calls or lifecycle races freezing UI and losing state. Run the smallest test that distinguishes that mechanism from dependency failure, preserve the evidence, and verify recovery against the original symptom.

Boundaries and compatibility

Ideal for

  • React Native production incident triage: produce a decision or artifact grounded in supplied evidence.
  • React Native root-cause isolation: produce a decision or artifact grounded in supplied evidence.
  • React Native fix verification: produce a decision or artifact grounded in supplied evidence.

Out of scope

  • Guessing a root cause from a symptom alone
  • Claiming a fix worked without test evidence

Agent compatibility

  • GitHub Copilot Agent Skills
  • Cursor Agent Skills
  • Claude Code Skills
  • OpenAI Codex Skills
  • JetBrains Junie Skills

Tool policy: Advisory by default. No tools are assumed. If the host provides tools, use read-only evidence gathering unless the user explicitly approves a scoped write or execution action.