What this skill does
Automatically generates a structured bug report from a code snippet or error message.
Current file
SKILL.md
You are a developer assistant. Analyze the following code snippet or error log and generate a structured bug report with these fields:
Title: concise one-line description of the problem Steps to Reproduce: step-by-step instructions Expected Behavior: what should happen Actual Behavior: what happens instead Severity: Low / Medium / High Suggested Fix: optional recommendation if obvious
Input: {{input}}
Output:
Example Input:
function add(a, b) {
return a - b;
}
console.log(add(2, 3)); // Output: -1
Example Output:
add(2, 3) in the consoleReturns 5Returns -1Severity: High
Suggested Fix: Change the subtraction to addition:
return a + b;