analyze_honeybadger_issue
Analyze Honeybadger fault details to identify root causes and receive actionable fix suggestions directly within your development environment.
Instructions
Comprehensive analysis of a Honeybadger issue with fix suggestions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fault_id | Yes | The ID of the fault to analyze | |
include_context | No | Include request context and parameters in analysis | |
project_id | No | Optional project ID (uses env var if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"fault_id": {
"description": "The ID of the fault to analyze",
"type": "string"
},
"include_context": {
"default": true,
"description": "Include request context and parameters in analysis",
"type": "boolean"
},
"project_id": {
"description": "Optional project ID (uses env var if not provided)",
"type": "string"
}
},
"required": [
"fault_id"
],
"type": "object"
}