x64dbg-commands-agent

star 5

Use when implementing or mapping x64dbg command skills/agents, wrapping command execution safely, or translating documented x64dbg commands into MCP tool usage and safe workflows.

Hortus-Edenensis By Hortus-Edenensis schedule Updated 2/2/2026

name: x64dbg-commands-agent description: Use when implementing or mapping x64dbg command skills/agents, wrapping command execution safely, or translating documented x64dbg commands into MCP tool usage and safe workflows.

x64dbg Commands Agent

Scope

Use this skill to turn x64dbg command documentation into concrete MCP workflows. Prioritize safety wrappers (pause/confirm/rollback) and prefer explicit VA expressions.

References

  • Read references/commands.md for command lists, syntax, and wrapper guidance.

Workflow

  1. Identify the command category and exact command name from the reference.
  2. Decide if the operation is write/destructive; if yes, require pause + confirmation.
  3. Prefer CommandRun (Python wrapper) for safe execution with optional snapshots.
  4. For reads, prefer detailed APIs (e.g., MemoryReadDetailed) when partial reads matter.
  5. For pause/step: call DebugPause(wait=true, timeoutMs=30000) and use DebugStep* with auto_pause=true to avoid “Debugger running” errors.
  6. For run‑to‑user: call Debug/RunUntilUserCode(wait=true, timeoutMs=30000, pauseFirst=true) or ExecCommand("RunToUserCode"); re‑check RIP via DisasmGetInstructionAtRIP.

Safety defaults

  • Pause before writes (register/memory/flags/breakpoints).
  • Use confirm=true for write endpoints in safe mode (register/memory/flags/cmdline/stack/asm/stop).
  • Use dry_run or require_confirm when risky.
  • Capture before/after state if values may need rollback.

Notes

  • Keep SKILL.md lean; load references/commands.md only when needed.
Install via CLI
npx skills add https://github.com/Hortus-Edenensis/x64dbgMCP --skill x64dbg-commands-agent
Repository Details
star Stars 5
call_split Forks 1
navigation Branch main
article Path SKILL.md
More from Creator
Hortus-Edenensis
Hortus-Edenensis Explore all skills →