start

Initiates an autonomous debugging session to analyze software bugs, generate competing hypotheses, and test solutions in isolated git branches. Coordinates investigation and synthesizes validated fixes.

Instructions

Begins an autonomous debugging session that investigates software bugs through multiple competing hypotheses. This tool launches a mother agent that analyzes errors, generates diverse hypotheses about potential causes, and spawns isolated scenario agents to test each hypothesis in separate git branches. The mother agent coordinates the investigation, evaluates scenario reports, and synthesizes a validated solution when sufficient evidence is found.

Input Schema

NameRequiredDescriptionDefault
contextNoAdditional context like code snippets, previous attempts, or relevant information
errorYesThe error message or description of the bug to investigate
filePathNoRelative path to the specific file containing the bug, if known
languageNoProgramming language of the code being debugged (e.g., 'typescript', 'python')
repoPathYesAbsolute path to the git repository containing the code to debug

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "context": { "description": "Additional context like code snippets, previous attempts, or relevant information", "type": "string" }, "error": { "description": "The error message or description of the bug to investigate", "type": "string" }, "filePath": { "description": "Relative path to the specific file containing the bug, if known", "type": "string" }, "language": { "description": "Programming language of the code being debugged (e.g., 'typescript', 'python')", "type": "string" }, "repoPath": { "description": "Absolute path to the git repository containing the code to debug", "type": "string" } }, "required": [ "error", "repoPath" ], "type": "object" }

You must be authenticated.

Other Tools from Deebo

Related Tools

ID: z7fszrff4o