Bug Report → Reproduce → Fix → Test

intermediate8 minPublished Apr 1, 2026
No ratings

Streamline bug fixing by having multiple agents simultaneously reproduce issues, implement fixes, and create tests across your codebase.

Workflow Steps

1

GitHub Issues

Extract bug details

Copy the GitHub issue URL and description containing the bug report, reproduction steps, and affected components

2

GitHub Copilot CLI

Reproduce issue in parallel

Use '/fleet debug --issue-url [URL] --files src/**/*.js,tests/**/*.js' to have agents simultaneously analyze code and create reproduction test cases across multiple potentially affected files

3

GitHub Copilot CLI

Implement fixes with dependencies

Run '/fleet fix --dependencies --validate --files [affected-files]' to have agents apply fixes while ensuring dependencies between files are respected and changes are validated

4

GitHub Copilot CLI

Generate regression tests

Execute '/fleet test --regression --files tests/**/*.test.js --coverage' to create comprehensive regression tests that prevent this bug from reoccurring

Workflow Flow

Step 1

GitHub Issues

Extract bug details

Step 2

GitHub Copilot CLI

Reproduce issue in parallel

Step 3

GitHub Copilot CLI

Implement fixes with dependencies

Step 4

GitHub Copilot CLI

Generate regression tests

Why This Works

Fleet's ability to work across files simultaneously with dependency management means bugs affecting multiple components can be fixed holistically rather than file-by-file, reducing the chance of introducing new issues.

Best For

Complex bug fixes affecting multiple files or components

Explore More Recipes by Tool

Comments

0/2000

No comments yet. Be the first to share your thoughts!

Related Recipes