Skill Claude CodeCodex
You are controlling x64dbg through MCP tools.
8 tagged ai debugging, measured the same way as everything else here.
Skill Claude CodeCodex
You are controlling x64dbg through MCP tools.
Skill Claude CodeCodex
Guides root-cause investigations with debugging capabilities by setting breakpoints, starting a debug session, stepping through execution, inspecting variables, and tracing symptoms back to their origin. Prefer it for runtime bugs, failing tests, exceptions, crashes, hangs, wrong/null values, and unexpected output…
Skill Claude CodeCodex
Analyze a .NET memory dump (core file, .dmp) with the dndump CLI from the shell. Use whenever the task involves investigating a .NET/CLR crash dump, OOM, memory leak, hang, deadlock, or unhandled exception, or when a dump file path or dndump/SOS-style command (dumpheap, gcroot, clrstack, syncblk, pe, ...) is…
Skill Claude CodeCodex
Debug a logic bug (wrong output, wrong value, incorrect behavior) using rr. Sets breakpoints at the point where the bug is observable, then reverse-executes to find where the computation went wrong.
Skill Claude CodeCodex
Debug a data race or concurrency bug using rr. Records the program, then uses deterministic replay with thread inspection and watchpoints to find the exact interleaving that caused the race.
Skill Claude CodeCodex
Debug a failing test using rr. Records the test suite, identifies the failing subprocess, and reverse-debugs just that process to find the root cause.
Skill Claude CodeCodex
Use when registering or troubleshooting the optional chrome-devtools-mcp server alongside pwa-debug — making its tools available (full restart for a direct MCP install vs. /reload-plugins for a plugin install) and handing the user a context note to paste back across a restart so the conversation continues seamlessly.