ultra-debug
Analyze and resolve system issues using structured debugging workflows, AI-powered root cause analysis, and step-by-step resolution processes tailored to your debugging needs.
Instructions
Systematic debugging with step-by-step root cause analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confidence | No | Confidence level in findings | |
files | No | Relevant file paths (optional) | |
findings | No | Accumulated findings from debugging | |
hypothesis | No | Current theory about the issue | |
issue | Yes | The issue or error to debug | |
model | No | Specific model to use | |
nextStepRequired | No | Whether another step is needed | |
provider | No | AI provider to use | |
stepNumber | No | Current step in the debug workflow | |
symptoms | No | Error symptoms or behavior observed | |
totalSteps | No | Estimated total steps needed |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"confidence": {
"description": "Confidence level in findings",
"enum": [
"exploring",
"low",
"medium",
"high",
"very_high",
"almost_certain",
"certain"
],
"type": "string"
},
"files": {
"description": "Relevant file paths (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"findings": {
"default": "",
"description": "Accumulated findings from debugging",
"type": "string"
},
"hypothesis": {
"description": "Current theory about the issue",
"type": "string"
},
"issue": {
"description": "The issue or error to debug",
"type": "string"
},
"model": {
"description": "Specific model to use",
"type": "string"
},
"nextStepRequired": {
"default": true,
"description": "Whether another step is needed",
"type": "boolean"
},
"provider": {
"description": "AI provider to use",
"enum": [
"openai",
"gemini",
"azure",
"grok"
],
"type": "string"
},
"stepNumber": {
"default": 1,
"description": "Current step in the debug workflow",
"minimum": 1,
"type": "number"
},
"symptoms": {
"description": "Error symptoms or behavior observed",
"type": "string"
},
"totalSteps": {
"default": 4,
"description": "Estimated total steps needed",
"minimum": 1,
"type": "number"
}
},
"required": [
"issue"
],
"type": "object"
}