argent-native-profiler
software-mansion/argent
Native profiling for iOS and Android: CPU hotspots, UI hangs, memory leaks via xctrace and Perfetto.
What is argent-native-profiler?
Diagnose native-level performance issues on iOS (via xctrace) and Android (via Perfetto). Captures CPU hotspots, UI hangs, and memory leaks, then drills into call stacks and thread breakdowns to pinpoint root causes. Use when app performance degrades at the native layer.
- Start and stop native profiling on booted iOS or Android devices
- Export trace data to structured XML and analyze bottlenecks by severity (RED/YELLOW)
- Query parsed traces to inspect hang stacks, function callers, thread breakdown, and leak details
- Reload and re-investigate previous trace sessions from disk
- Compare before/after profiling runs to validate performance fixes
How to install argent-native-profiler
npx skills add https://github.com/software-mansion/argent --skill argent-native-profiler- Xcode command-line tools installed and on PATH (iOS only)
- Target app running on a booted simulator or connected device
- Android app must be debuggable or include `<profileable android:shell="true"/>` in manifest for callstack capture
How to use argent-native-profiler
- 1.Ensure the target app is running on the device (or launch it with `launch-app`)
- 2.Call `native-profiler-start` with device_id to begin recording
- 3.Interact with the app to reproduce the performance issue
- 4.Call `native-profiler-stop` with device_id to export trace data
- 5.Call `native-profiler-analyze` with device_id to generate a bottleneck report
- 6.Review findings and decide whether to drill deeper, implement fixes, or stop
- 7.Use `profiler-stack-query` to investigate specific hangs, hotspots, or leaks by mode (hang_stacks, function_callers, thread_breakdown, leak_stacks)
- 8.After applying fixes, call `profiler-load` to reload previous sessions and compare metrics
Use cases
- Identify CPU-intensive functions consuming >15% of total time in production scenarios
- Diagnose main-thread UI hangs and jank with full native call chains
- Detect memory leaks and attribute them to responsible frames and libraries
- Measure impact of performance fixes by re-profiling the same interaction sequence
- Investigate per-thread CPU distribution to find lock contention or imbalanced work
- iOS and Android native developers
- Performance engineers optimizing app responsiveness
- QA engineers reproducing and validating performance regressions
argent-native-profiler FAQ
RED indicates CPU functions >15% of total time, all UI hangs, and attributed memory leaks (with resolved responsible frame). YELLOW indicates CPU functions 3–15% of total time and unattributed leaks (no stack or library). RED requires immediate attention; YELLOW is worth investigating but may be acceptable.
xctrace attaches without malloc-stack history, so simulator leaks often show `<Call stack limit reached>` with no library. These are low-confidence YELLOW summaries dominated by benign system allocations. For attributed stacks, enable malloc stack logging at launch or profile on a real device.
Record the interaction sequence as a flow using `argent-create-flow` before the first profiling run. Replay with `flow-execute` on subsequent runs to eliminate interaction variance, then use `profiler-load` to reload previous sessions and compare metrics directly.
If JSLexer, JSONEmitter, or Hermes runtime internals dominate the JS thread in CPU hotspot results, those reflect xctrace instrumentation overhead, not app work. Discount those entries when evaluating findings.
No. `native-profiler-start` auto-detects the running app on the device. Only pass `app_process` if the tool reports multiple running user apps and you need to disambiguate.
Full instructions (SKILL.md)
Source of truth, from software-mansion/argent.
name: argent-native-profiler description: Native profiling for CPU hotspots, UI hangs, memory issues. iOS via xctrace; Android via Perfetto. Use when diagnosing native-level performance issues.
1. Tools
native-profiler-start— start profiling on a booted device. iOS: xctrace recording for CPU, hangs, and leaks.native-profiler-stop— stop the profiler and export trace data to timestamped XML files.native-profiler-analyze— parse exported trace data and return a structured bottleneck payload.profiler-stack-query— drill into parsed data: hang stacks, function callers, thread breakdown, leak details.profiler-load— list and reload previous trace sessions from disk for re-investigation.
2. Platform Support
- iOS: Backend: Xcode Instruments via
xctraceon a booted simulator or connected device. Requires Xcode command-line tools on PATH. Surfaces CPU hotspots, UI hangs, and memory leaks (instrumentsLeakstable). - Android: Backend: Perfetto via
adb shell perfetto+ an in-process WASM trace-processor engine. Surfaces CPU hotspots and UI hangs, with per-hang jank reason codes, a main-thread state breakdown withblocked_functionattribution, and a GC overlap annotation. Also reports an RSS-growth signal for memory pressure; treat it as a hint to confirm manually, not a confirmed leak. The target app must be debuggable or include<profileable android:shell="true"/>in its manifest forperf_samplecallstacks to be captured.
3. Investigation Patterns
After native-profiler-analyze surfaces findings, use profiler-stack-query to drill into root causes:
- Hang detected →
profiler-stack-querymode=hang_stacksfor full native call chains → mode=function_callersfor the suspected function → read native source. - CPU hotspot →
profiler-stack-querymode=thread_breakdownfor per-thread distribution → mode=function_callersfor the dominant function. - Memory leak →
profiler-stack-querymode=leak_stacksfiltered byobject_typefor responsible frames and libraries.
After presenting findings, ask the user whether to investigate further, implement fixes, or stop. After applying fixes, always re-profile the same scenario and compare with profiler-load. Report honestly whether the target metric improved, regressed, or stayed flat. If the fix showed no net benefit or introduced regressions elsewhere, say so and reconsider.
Tip: For reproducible before/after comparisons, record the interaction sequence as a flow using the argent-create-flow skill before the first profiling run. Replay with flow-execute on subsequent runs to eliminate interaction variance.
Note: The
argent-react-native-profilerinstructs to start native profiling automatically alongside React profiling. This skill's workflow and investigation patterns apply in both cases.
4. Workflow
Complete all steps in order — do not break mid-flow.
Step 0: Ensure the target app is running
The native-profiler-start tool auto-detects the running app on the device.
You do not need to derive app_process manually — just make sure the app is launched.
- If the app is already running on the device, skip to Step 1 (do not pass
app_process). - If the app is not running, use
launch-appwith the correct bundle ID first. - Only pass
app_processexplicitly if the tool reports multiple running user apps and you need to disambiguate.
Note: If multiple build flavors are installed (dev, staging, prod), the tool will detect whichever one is currently running. If both are running, it will ask you to specify.
Step 1: Start recording
Call native-profiler-start with device_id (iOS UDID or Android serial). The tool auto-detects the running app and saves the trace to /tmp/argent-profiler-cwd/ with a timestamped filename.
Let the user interact with the app or drive interaction via simulator tools (see argent-device-interact skill).
Step 2: Stop and export
Call native-profiler-stop with device_id. iOS sends SIGINT to xctrace, waits for trace packaging, and exports CPU, hangs, and leaks data to XML — check exportDiagnostics for any export warnings. Android sends SIGTERM to the on-device perfetto daemon, polls /proc/<pid> until it exits, then adb pulls the .pftrace to the host.
Step 3: Analyze
Call native-profiler-analyze with device_id. Returns a markdown report with bottlenecks categorized as CPU hotspots, UI hangs, or memory leaks, sorted by severity.
Step 4: Present findings and ask about next steps
Present a concise summary of the key findings. Then follow the "After analysis" guideline — ask whether to investigate further with query tools, implement fixes, or stop.
Step 5: Drill-down investigation
Use profiler-stack-query to investigate specific findings. See §3 Investigation Patterns for chaining guidance.
Step 6: Reload previous sessions
To revisit a previous trace:
- Call
profiler-loadmode=listto see available sessions. - Call
profiler-loadmode=load_nativesession_id=<timestamp>device_id=<UDID>to re-parse the XML files. - Use
profiler-stack-queryto investigate the reloaded data.
5. Understanding Results
Bottlenecks are categorized by severity:
- RED: CPU functions taking >15% of total time, all UI hangs, and attributed memory leaks (those with a resolved responsible frame). These require immediate attention.
- YELLOW: CPU functions taking 3-15% of total time, and unattributed memory leaks (
<Call stack limit reached>, no library — see the memory-leaks caveat below). Worth investigating but may be acceptable.
Each bottleneck type indicates a different class of problem:
- CPU hotspots: Native functions consuming excessive CPU time. Look for tight loops, expensive computations, or redundant work.
- UI hangs: Main thread blocked long enough to cause visible jank or unresponsiveness. Often caused by synchronous I/O, heavy layout passes, or lock contention.
- Memory leaks: Objects allocated but never freed. Common causes include retain cycles, unclosed resources, or forgotten observers. Argent records via
xctrace --attach, which has no malloc-stack history, so on the simulator most leaks come back unattributed (<Call stack limit reached>, no library) and are dominated by benign system allocations — these are reported as a low-confidence YELLOW summary, not confirmed RED leaks. For attributed stacks, capture with malloc stack logging enabled at launch.
6. Important Caveats
- Simulator vs device: Simulator profiling reflects host Mac performance, not real device hardware. Use device profiling for accurate CPU timings and memory behavior.
- xctrace availability (iOS): Requires Xcode command-line tools installed. Verify with
xcrun xctrace version. - Profiler overhead: xctrace instrumentation adds CPU load. If
JSLexer,JSONEmitter, or Hermes runtime internals dominate the JS thread in CPU hotspot results, those reflect profiler overhead — not app work. Discount those entries when evaluating findings. - Run-to-run variance: Small fluctuations in CPU percentages between runs are normal. Treat only consistent directional changes (across 2+ runs or >15% delta) as actionable signal.
- Live data variability: If the app fetches live API data, different responses between runs change rendering workload independently of code changes. Note when data-dependent screens show variance.
Related skills
More from software-mansion/argent and the wider catalog.
argent-android-emulator-setup
Set up and boot Android emulators, connect via adb, and prepare for UI automation.
argent-device-interact
Interact with iOS simulators, Android emulators, and Chromium apps using unified gesture and UI automation tools.
argent-react-native-app-workflow
Step-by-step workflows for developing and debugging React Native apps on iOS and Android emulators.
argent-ios-simulator-setup
Set up and connect to iOS simulators using argent MCP tools for automated testing and interaction.
argent-test-ui-flow
Autonomously test iOS/Android app UI flows with interact-screenshot-verify loops using argent MCP tools.
argent-react-native-profiler
Profile React Native Hermes apps to measure re-render and CPU performance with argent profiler tools.