Quickly report bugs and minor issues to GitHub Issues
Quick bug reporting tool that creates properly formatted GitHub issues.
/report-bug <description>
Examples:
/report-bug There is a padding around the login page that creates a white border around the background
/report-bug Task card hover effect not working in Safari
/report-bug API returns 500 when deleting a task that doesn't exist
When invoked, this skill will:
## Description
[User's bug description]
## Area
[Frontend/Backend/Database]
## Priority
[Severity level]
## Expected Behavior
[If provided]
/report-bug <description>bug + area + prioritymvp-blocker) - Breaks core functionality, must fix before launchcritical) - Blocks important featureshigh-priority) - Should fix soon, affects UXmedium-priority) - Default, should fix but not urgentlow-priority) - Nice to havefrontend - Angular UI, components, pages, stylesbackend - Fastify API, routes, business logicdatabase - PostgreSQL schema, migrations, queries/report-bug There is a padding around the login page that creates a white border around the background
Creates:
bug, frontend, medium-priority/report-bug API returns 500 when deleting a task that doesn't exist
User selects: Backend, Critical
Creates:
bug, backend, criticalThe skill should:
gh issue createKeep it simple and fast - the goal is to make bug reporting frictionless.
For visual bugs, capture evidence from the production site at home.st44.no:
# 1. Get tab context
tabs_context_mcp(createIfEmpty: true)
# 2. Navigate to the affected page
navigate(url: "https://home.st44.no/...", tabId: <id>)
# 3. Take screenshot
computer(action: "screenshot", tabId: <id>)
# Include screenshot ID in bug report description
# 1. Start recording
gif_creator(action: "start_recording", tabId: <id>)
computer(action: "screenshot", tabId: <id>) # Initial frame
# 2. Reproduce the bug steps
computer(action: "left_click", coordinate: [x, y], tabId: <id>)
# ... more steps ...
# 3. Capture final state
computer(action: "screenshot", tabId: <id>)
gif_creator(action: "stop_recording", tabId: <id>)
# 4. Export GIF
gif_creator(action: "export", download: true, filename: "bug-reproduction.gif", tabId: <id>)
Visual evidence helps developers understand and fix bugs faster.
.claude/skills/live-debug/SKILL.md - Full browser debugging documentation