debug_issue
Resolve React Native bugs by identifying and fixing issues across crashes, performance, UI layout, navigation, state management, network, and platform-specific errors. Supports iOS and Android platforms.
Instructions
Get debugging guidance for React Native issues
Input Schema
Name | Required | Description | Default |
---|---|---|---|
error_message | No | Error message if available | |
issue_type | Yes | Type of issue to debug | |
platform | No | Platform where issue occurs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"error_message": {
"description": "Error message if available",
"type": "string"
},
"issue_type": {
"description": "Type of issue to debug",
"enum": [
"crash",
"performance",
"ui_layout",
"navigation",
"state_management",
"network",
"platform_specific"
],
"type": "string"
},
"platform": {
"description": "Platform where issue occurs",
"enum": [
"ios",
"android",
"both"
],
"type": "string"
}
},
"required": [
"issue_type"
],
"type": "object"
}