Supercharge your GDB debugging with the power of LLMs!
AgentGDB is a tool that brings natural language understanding to the GDB debugger. Describe what you want to do in plain English, and AgentGDB will translate your request into the appropriate GDB commands. Focus on solving bugs, not memorizing debugger syntax!
You can install AgentGDB using pip:
pip install agentgdbAlternatively, you can install from source:
git clone https://github.com/jjravi/AgentGDB.git
cd AgentGDB
python -m venv openai-env
source openai-env/bin/activate
pip install -e .You'll need to have GDB installed on your system.
To update AgentGDB, simply run:
pip install -U agentgdbOr if installed from source:
git pull origin main
pip install -e .To use AgentGDB, you need to configure GDB to find the AgentGDB package and its dependencies. The recommended way is to add the following to your ~/.gdbinit file:
# In ~/.gdbinit
python
import sys
import subprocess
import os
try:
env_python = "python3" # Or "python", or e.g., "/path/to/venv/bin/python"
paths_str = subprocess.check_output(
[env_python, "-c", "import sys, os; print(os.linesep.join(sys.path))"],
stderr=subprocess.PIPE
).decode("utf-8")
for p in paths_str.split(os.linesep):
if p and os.path.isdir(p) and p not in sys.path:
sys.path.append(p)
import agentgdb
gdb.execute(f"source {agentgdb.MAIN_SCRIPT_PATH}") # load config and register GDB commands.
except FileNotFoundError:
print(f"[AgentGDB] Error: Python executable '{env_python}' not found. Please check the path in your .gdbinit.")
except subprocess.CalledProcessError as e:
error_message = e.stderr.decode().strip() if e.stderr else str(e)
print(f"[AgentGDB] Error getting sys.path from '{env_python}': {error_message}")
print(f"[AgentGDB] Ensure '{env_python}' is a valid Python interpreter and has the 'agentgdb' package and its dependencies (like 'openai') installed.")
except ImportError:
print("[AgentGDB] Error: Could not import 'agentgdb' package after setting sys.path.")
print(f"[AgentGDB] This usually means 'agentgdb' is not installed in the Python environment targeted by '{env_python}'.")
except Exception as e:
print(f"[AgentGDB] An unexpected error occurred during AgentGDB setup: {e}")
endOnce your ~/.gdbinit is configured, start GDB as usual:
gdb your_programThen, you can use the natural language commands:
agent: Executes the command directlyask: Shows the suggested command and asks for confirmation before execution
Examples:
(gdb) agent show all breakpoints
(gdb) ask print the value of variable x
- Natural Language to GDB: Describe your intent, and AgentGDB figures out the command.
- Multi-stage Processing:
- Classifies your query into GDB command categories
- Gets help for relevant command class
- Selects the most appropriate command
- Gets detailed help for the selected command
- Generates the exact GDB command to accomplish your intent
- Two Interaction Modes: Direct execution with
agentor confirmation-based withask - Streaming Output: See the LLM's thought process and command generation in real time.
Contributions are welcome! Please open issues or pull requests on GitHub.
Note: AgentGDB is under active development. Feedback and suggestions are highly appreciated!