Report a bug in the devbench plugin
Report bugs in the devbench plugin with structured information for GitHub issues. Use this when you encounter agent, command, skill, or MCP server issues to help the maintainer diagnose and fix problems.
/plugin marketplace add SiTaggart/claude-devbench/plugin install sitaggart-devbench-plugins-devbench@SiTaggart/claude-devbench[optional: brief description of the bug]Report bugs encountered while using the devbench plugin. This command gathers structured information and creates a GitHub issue for the maintainer.
Use the AskUserQuestion tool to collect the following information:
Question 1: Bug Category
Question 2: Specific Component
Question 3: What Happened (Actual Behavior)
Question 4: What Should Have Happened (Expected Behavior)
Question 5: Steps to Reproduce
Question 6: Error Messages
Automatically gather:
# Get plugin version
cat ~/.claude/plugins/installed_plugins.json 2>/dev/null | grep -A5 "devbench" | head -10 || echo "Plugin info not found"
# Get Claude Code version
claude --version 2>/dev/null || echo "Claude CLI version unknown"
# Get OS info
uname -a
Create a well-structured bug report with:
## Bug Description
**Component:** [Type] - [Name]
**Summary:** [Brief description from argument or collected info]
## Environment
- **Plugin Version:** [from installed_plugins.json]
- **Claude Code Version:** [from claude --version]
- **OS:** [from uname]
## What Happened
[Actual behavior description]
## Expected Behavior
[Expected behavior description]
## Steps to Reproduce
1. [Step 1]
2. [Step 2]
3. [Step 3]
## Error Messages
[Any error output]
## Additional Context
[Any other relevant information]
---
*Reported via `/report-bug` command*
Use the GitHub CLI to create the issue:
gh issue create \
--repo SiTaggart/claude-devbench \
--title "[devbench] Bug: [Brief description]" \
--body "[Formatted bug report from Step 3]" \
--label "bug,devbench"
Note: If labels don't exist, create without labels:
gh issue create \
--repo SiTaggart/claude-devbench \
--title "[devbench] Bug: [Brief description]" \
--body "[Formatted bug report]"
After the issue is created:
✅ Bug report submitted successfully!
Issue: https://github.com/SiTaggart/claude-devbench/issues/[NUMBER]
Title: [devbench] Bug: [description]
Thank you for helping improve the devbench plugin!
The maintainer will review your report and respond as soon as possible.
gh CLI is not authenticated: Prompt user to run gh auth login firstThis command does NOT collect:
Only technical information about the bug is included in the report.