Add Bug Branch
Creates a new bug branch from an existing project branch with a single debugging challenge.
Usage
/add-bug
Instructions
When this command is invoked:
- •
Ask the user for required information:
- •Project name (the base project branch, e.g.,
tinydb,quixbugs-challenge) - •Bug number (or auto-detect next available number)
- •Brief description of what bug they want to add (optional, for commit message)
- •Project name (the base project branch, e.g.,
- •
Verify current state:
- •Confirm the project branch exists
- •Check for uncommitted changes (warn if any exist)
- •Find the next available bug number by checking for existing
<project-name>-bug*branches
- •
Create the bug branch:
bashgit checkout <project-name> git checkout -b <project-name>-bug<N>
- •
Guide the user through adding the bug:
- •Explain that they should now: a. Modify the code to introduce the bug b. Verify the bug causes a test failure or observable issue
- •Wait for the user to make their changes (don't make code changes automatically)
- •
Help create the run script:
- •Ask the user what command reproduces the bug (e.g.,
pytest tests/test_foo.py::test_bar) - •Create
run.shwith the appropriate command:bash#!/bin/bash uv run <command>
- •Make it executable:
chmod +x run.sh
- •Ask the user what command reproduces the bug (e.g.,
- •
Commit the bug:
bashgit add . git commit -m "[<project-name>] Add bug <N>: <description>"
- •
Verify the setup:
- •Test that
./run.shreproduces the failure - •Confirm all changes are committed
- •Test that
- •
Provide next steps:
- •Suggest pushing the branch:
git push -u origin <project-name>-bug<N> - •Remind that this branch is now a complete debugging challenge
- •Suggest pushing the branch:
Context
Bug branches are the actual debugging challenges given to participants. Each bug branch should:
- •Contain exactly ONE bug (not multiple bugs)
- •Have a
run.shscript that demonstrates the failure - •Be small enough to debug within 30 minutes
- •Have bugs that aren't obvious from simple code inspection
- •Include clear test failures or observable incorrect behavior
Types of Bugs
According to academic software engineering research, the majority of all bug fixes are one of two kinds:
- •Changes to a conditional path (adding a predicate to a branch, adding/removing a branch, adding an early exit branch)
- •Changing a method call by changing the expression passed to the method or changing the shape of the method call
Thus, bugs that we add should prefer to have solutions that are one of these types of fixes.
Guidelines for Good Bugs
A good 30-minute debugging challenge should:
- •✅ Require executing code to understand the failure
- •✅ Have bugs that aren't obvious from simple inspection
- •✅ Be small enough to debug within the time limit
- •✅ Have clear test cases that show failures
- •✅ Test realistic debugging scenarios
- •❌ Not be solvable by just reading the code for 5 minutes
- •❌ Not be so complex that understanding the code takes most of the time
Bug Numbering
Bug numbers should be sequential per project. If tinydb-bug1 and tinydb-bug2 exist, the next bug should be tinydb-bug3.
The skill should auto-detect the next available number, but allow the user to override if needed.