Add Bug Branch

VerifiedCaution

Creates a new bug branch from an existing project branch by guiding the user through adding a single debugging challenge. Helps generate debugging exercises with a run.sh script that reproduces the failure.

Sby Skills Guide Bot
DevelopmentIntermediate
1306/2/2026
Claude Code
#git#debugging#bug-challenge#automation

Recommended for

Our review

Creates a bug branch from an existing project branch with a single debugging challenge.

Strengths

  • Automates the creation of sequentially numbered bug branches.
  • Guides the user through adding a bug and creating a run script to reproduce the failure.
  • Verifies repository state and ensures all changes are committed before finishing.

Limitations

  • Requires the user to manually introduce the bug (no automatic bug generation).
  • Does not handle complex multi-file bugs – intended for a single, simple bug.
When to use it

When you want to create a structured debugging challenge with a dedicated branch, reproduction script, and clear numbering.

When not to use it

If you need to automatically generate a bug or handle complex bugs with multiple dependencies.

Security analysis

Caution
Quality score90/100

The skill uses git and bash to create branches and run user-specified commands. While not inherently malicious, it allows the user to supply any command that will be executed, posing a risk if the user provides dangerous input. No input sanitization is mentioned.

Findings
  • The skill instructs the execution of user-provided shell commands (via run.sh and uv run), which could be arbitrary and potentially destructive. It also uses git operations that modify the repository state.

Examples

Basic usage
/add-bug
Specifying project name
/add-bug
Project name: tinydb
Providing description upfront
/add-bug
Project name: quixbugs-challenge
Description: Add off-by-one error in loop condition

name: add-bug description: Create a new bug branch from an existing project branch with a single debugging challenge

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:

  1. 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)
  2. 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
  3. Create the bug branch:

    git checkout <project-name>
    git checkout -b <project-name>-bug<N>
    
  4. 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)
  5. Help create the run script:

    • Ask the user what command reproduces the bug (e.g., pytest tests/test_foo.py::test_bar)
    • Create run.sh with the appropriate command:
      #!/bin/bash
      uv run <command>
      
    • Make it executable: chmod +x run.sh
  6. Commit the bug:

    git add .
    git commit -m "[<project-name>] Add bug <N>: <description>"
    
  7. Verify the setup:

    • Test that ./run.sh reproduces the failure
    • Confirm all changes are committed
  8. 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

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.sh script 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:

  1. Changes to a conditional path (adding a predicate to a branch, adding/removing a branch, adding an early exit branch)
  2. 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.

Related skills