Natural language interface for GDB
Project description
AgentGDB
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!
Contents
Installation
You can install AgentGDB using pip:
pip install agentgdb
Alternatively, 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.
Updating
To update AgentGDB, simply run:
pip install -U agentgdb
Or if installed from source:
git pull origin main
pip install -e .
Usage
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}")
end
Once your ~/.gdbinit is configured, start GDB as usual:
gdb your_program
Then, 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
Features
- 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.
Contributing
Contributions are welcome! Please open issues or pull requests on GitHub.
Note: AgentGDB is under active development. Feedback and suggestions are highly appreciated!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentgdb-0.1.5.tar.gz.
File metadata
- Download URL: agentgdb-0.1.5.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71fa37885633f8f30dec6c6f0739adfcc46ddf36ca5fb0926eecd7dded61e875
|
|
| MD5 |
db73990c4dc88f59e03382ce43b9523a
|
|
| BLAKE2b-256 |
ec0cbb7dfe783e7b0c0cb371d4fe9efeccfe2067927a3a58de4130aab94ee22c
|
File details
Details for the file agentgdb-0.1.5-py3-none-any.whl.
File metadata
- Download URL: agentgdb-0.1.5-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee6ef5716582473c946fd7934af02fc93ddd92c8e4c9a83677f9bd55809d7ac9
|
|
| MD5 |
b11ad5039a4425a5946145bccbeffc06
|
|
| BLAKE2b-256 |
df22b45747243897259fd7c4ed59b38b0d94e18edc84087c030bd66ad35ce9c6
|