Debug tests or application
/plugin marketplace add IvanTorresEdge/molcajete.ai/plugin install ivantorresedge-go-tech-stacks-go@IvanTorresEdge/molcajete.ai# Debug Tests or Application Debug failing tests or runtime issues. Use the Task tool to launch the **debugger** agent with instructions: 1. Ask user what to debug (tests, specific function, runtime issue) 2. If tests: - Run with verbose output: `go test -v` - Run with race detector if concurrent: `go test -race -v` - Run specific test: `go test -v -run TestName` 3. Analyze error messages and stack traces 4. Check for common issues: - Race conditions - Nil pointer dereferences - Goroutine leaks - Deadlocks 5. Provide diagnosis and specific fix recommendations **Debu...
`/project:debug <TASK_DESCRIPTION>`
`/project:debug <TASK_DESCRIPTION>`
Systematic four-phase debugging framework for finding root causes
Apply expert debugging methodology to investigate a specific issue
Systematically diagnose and resolve bugs through conversational investigation and root cause analysis